Skip to content

Commit 868fe50

Browse files
authored
Merge pull request #69 from andrewdelman/subset_download
Corrections to header in subset download function
2 parents 1c5a95a + a3b620c commit 868fe50

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ECCO-ACCESS/Downloading_ECCO_datasets_from_PODAAC/Tutorial_Python3_Downloading_ECCO_Subsets.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@
108108
" where 0 is the first index and end is not included).\n",
109109
" Note: only index ranges with consistent spacing can be downloaded \n",
110110
" (e.g., downloading tiles 0,1,3,4 would need to be done either with\n",
111-
" tile_ind=[0,5,1] or as two separate downloads [0,2,1] and [3,5,1]).\n",
111+
" tile_isel=[0,5,1] or as two separate downloads [0,2,1] and [3,5,1]).\n",
112112
" Defaults to the full range of each dimension.\n",
113113
" If indices are specified but the dimension does not exist in the files \n",
114-
" (e.g., tile_ind is specified but the ShortName is for a lat/lon regridded\n",
114+
" (e.g., tile_isel is specified but the ShortName is for a lat/lon regridded\n",
115115
" dataset), the index specification is ignored.\n",
116116
" \n",
117117
" netcdf4: bool, indicates whether to download files as NetCDF4 or (classic) NetCDF3 files.\n",

ECCO-ACCESS/Downloading_ECCO_datasets_from_PODAAC/ecco_download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,10 @@ def ecco_podaac_download_subset(ShortName,StartDate=None,EndDate=None,\
369369
where 0 is the first index and end is not included).
370370
Note: only index ranges with consistent spacing can be downloaded
371371
(e.g., downloading tiles 0,1,3,4 would need to be done either with
372-
tile_ind=[0,5,1] or as two separate downloads [0,2,1] and [3,5,1]).
372+
tile_isel=[0,5,1] or as two separate downloads [0,2,1] and [3,5,1]).
373373
Defaults to the full range of each dimension.
374374
If indices are specified but the dimension does not exist in the files
375-
(e.g., tile_ind is specified but the ShortName is for a lat/lon regridded
375+
(e.g., tile_isel is specified but the ShortName is for a lat/lon regridded
376376
dataset), the index specification is ignored.
377377
378378
netcdf4: bool, indicates whether to download files as NetCDF4 or (classic) NetCDF3 files.

0 commit comments

Comments
 (0)