We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace the TDSCatalog.datasets dictionary with a thin data structure that allows indexing:
TDSCatalog.datasets
cat = TDSCatalog(...) cat.datasets[0] cat.dataset['GEFS_Global_1p0deg_Ensemble_ana_20170617_0000.grib2']
This can be done in a backwards compatible manner by having the new datasets attribute (of type DatasetCollection?) inherit dict.
datasets
DatasetCollection
dict
The text was updated successfully, but these errors were encountered:
ENH: Add ability to access datasets by index (Fixes Unidata#134)
b924314
When getting an item by string, work as before. For all else, treat as an index into values. Works for catalog refs as well.
55d7e7b
fbe1df0
ad03cec
c3d0b3a
285bcce
dopplershift
No branches or pull requests
Replace the
TDSCatalog.datasets
dictionary with a thin data structure that allows indexing:This can be done in a backwards compatible manner by having the new
datasets
attribute (of typeDatasetCollection
?) inheritdict
.The text was updated successfully, but these errors were encountered: