Ryan May

Results 160 issues of Ryan May

XArray has added a [new backends API](https://github.com/pydata/xarray/pull/4989) ([docs PR](https://github.com/pydata/xarray/pull/4810)). We need to make CDMRemote work with this. We also need to see if there's any hope of supporting multiple versions...

Type: Maintenance
Area: CDMRemote

For the following data, the `height` column ends up incorrectly reading the height values: ```python from datetime import datetime from siphon.simplewebservice.igra2 import WyomingUpperAir df = WyomingUpperAir.request_data(datetime(2021, 1, 5, 12), '03005')...

Type: Bug
Area: Web Services
good first issue

- Update to use PyPI token--I've already changed my password, so the current config will not work. - Move to `setup.cfg` for most of what's in `setup.py` - Add `pyproject.toml`...

Type: Maintenance
Area: Infrastructure

There's a ton of things we need to clean up on Siphon: - [x] Retire Python 3.5 build and add 3.7 - [x] Update Travis to use python 3.7-dev for...

When there are no data available for a particular date range from IGRA2, it would be very helpful to the users to include the range of data that is actually...

Type: Feature
Area: Web Services
good first issue

Trying to open a dataset using CDMRemote through xarray can complain about having `_Unsigned` on a float-typed array.

Type: Bug
Area: CDMRemote

This code downloading a NIDS NST product: ```python from siphon.catalog import TDSCatalog from siphon.radarserver import RadarServer from siphon.cdmr import Dataset from datetime import datetime, timedelta cat = TDSCatalog("http://thredds.ucar.edu/thredds/radarServer/catalog.xml") url =...

Type: Bug
Area: CDMRemote

It looks like NHC will be [publishing operational JSON storm information](https://www.weather.gov/media/notification/scn20-25tropical_javascrpt.pdf). This is a [single JSON file](https://www.nhc.noaa.gov/CurrentStorms.json) that will have the information as outlined in the [sample file](https://www.nhc.noaa.gov/productexamples/NHC_JSON_Sample.json). It would...

Type: Feature
Area: Web Services

Try to include: - Code Sample, a copy-pastable example if possible - A ["Minimal, Complete and Verifiable Example"](http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) will make it much easier for maintainers to help you ```python from...

Type: Bug

Currently, this is what `urlopen` does: ```python BytesIO(create_http_session().get(url, **kwargs).content) ``` As we start to use this more, it would be good to provide an implementation that's smarter and only downloads...

Area: Infrastructure
Type: Enhancement