Ryan May

Results 160 issues of Ryan May

Some ideas for improving walking through the catalog: - Implement `walk()` that would allow blowing through the nest hierarchy, e.g. `cat.walk('Channel02/current')` - Another option is to follow `pathlib` with something...

Type: Enhancement
Area: Catalog

Make sure we can handle the catalogs hosted by pydap (added in pydap/pydap#138). Might also be good to see if we can use pydap as another option for opendap.

In the supplementary file, `hourly_high_wind_direction` can have a value of `//`—no idea what that’s supposed to be.

Type: Bug
Area: Web Services

It would simplify some things by including a list/dictionary of various public/government thredds servers: - Unidata - NOMADS - NDBC - ESRL Others?

Type: Feature

So this code: ```python from datetime import datetime from siphon.catalog import TDSCatalog metar_cat_url = ('http://thredds-test.unidata.ucar.edu/thredds/catalog/' 'irma/metar/catalog.xml?dataset=irma/metar/Metar_Station_Data_-_IRMA_fc.cdmr') catalog = TDSCatalog(metar_cat_url) metar_dataset = catalog.datasets['Feature Collection'] ncss = metar_dataset.subset() query = ncss.query() query.lonlat_box(north=34,...

Type: Maintenance
Area: NCSS

Would be good to be able to build a query for McFetch. https://mcfetch.ssec.wisc.edu/

Type: Feature

1. Document VCRpy and how to write tests in the contributor guide 2. Move `test_wyoming.py` and `test_acis.py` into a `tests/` folder within `simplewebservice` to follow our typical convention of test...

Area: Docs
Type: Enhancement
Area: Tests

`Dataset` should have attributes for: - `latest` - `best` - `collection` (for full collection on Grib or point feature collection) These should raise a useful error message for datasets that...

Type: Enhancement
Area: Catalog

If I have to write code to figure out what the name of a dimension is one more time, I'm going to strangle someone (or maybe myself). Would be really...

Area: Infrastructure
Type: Enhancement

It would be helpful to make authenticating to restricted TDS instances (like from ESGF) simpler. This could be used to try to script up access to CMIP5 data: > I...

Type: Enhancement