Hello,
I am currently attempting to download GOFS 3.1 reanalysis data (expt_53.X) for a single grid point, spanning the full water column profile for the entire temporal duration. At present, my script iterates through each time step individually and uses MATLAB’s ncread function to download water_u and water_v data for all valid depths at the grid point of interest. However, this method is fairly time-consuming, often taking several days to collect the full time series. Do you have any recommendations for best practices to ensure an efficient download, whether that would be changing the amount of data downloaded in each call, using a different method (NCCS vs. OPeNDAP, etc.), or using a different software altogether? Any assistance you can provide would be appreciated.
A sample call from my current process is below. As I mentioned above, the script iterates through time and downloads data for all valid depths at a specific grid point.
u = ncread(‘http://tds.hycom.org/thredds/dodsC/GLBv0.08/expt_53.X/data/2015’, ‘water_u’, [1481 1631 1 1], [1 1 9 1]);
Thanks and regards,
Drew Gustafson