Downloading ETOPO Bathymetry and Loading it into Matlab
Online Oceanographic Datasets and Data products
If the code or instructions below are helpful to you, I'd love to hear
it. Always nice to know whether it's worthwhile to put these kinds of
instructions online. (Send me an e-mail at the address above.)
Even better, if you encounter and fix a relevant data-access issue that
isn't
in the "troubleshooting" below, let me know so I can add it to the
page.
For geographically selected data (single basin) and limited time:
Download index files
From URL click III. Argo Basins Data
For each year and month of interest, right click the INDEX file and save to a data directory:
eg. ../data/labsea/argo/AtlanticIndex
Unzip files by cd'ing into that dir and calling
$ unzip *
Convert text index files to mat data with read_argotxt_write_mat.m
(function), rawm_all_scr.m (script), and parse_csvline.m (function).
These will load and parse individiual index files into data structures and variables.
Determine floats needed using select_float_data_all.m (script) which uses the index files you've extracted. This saves a matlab file of callSigns and other pertinent data for the region and time period you select. Give the output file an appropriate name. This will be loaded in the argoprof_example_scr in the next step.
Download float data
From URL click IV. Argo Floats Data
For each float number needed, right click the data file (float number) and choose "Save as.." to a data
directory
eg. ../data/labsea/argo/FloatData
For the profiles you've identified in the previous step, download the profile data then convert these netCDF format datafiles to .mat using read_nc_write_mat.m
(function) and argoprof_example_scr.m (script).