-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
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
Fixes for TDS 5.0 #112
Comments
Need to prioritize this given that TDS 5 is now the stable release and Unidata production servers are now using it. For instance, today running this: from siphon.catalog import TDSCatalog
cat = TDSCatalog('https://thredds.ucar.edu/thredds/catalog/grib/NCEP/RAP/CONUS_13km/catalog.xml')
ds = cat.latest
ncss = ds.subset() gives:
(cc @haileyajohnson) |
IM glad im not the only one who is getting this and it is causing my unit tests to fail because the resulting lat/lon coordinates are strings and strings cant be compared to int/float values. Is there a way around this unexpected behaviour? |
I'm sure it's a minor parsing problems with I'm unlikely to get to this in the short term. Depending on your urgency, you may want to consider submitting a pull request fixing it. |
The problem occurs because the siphon/src/siphon/ncss_dataset.py Line 340 in 198cbb4
Example: P.S. A nice improvement at this line would be to parse the Then on siphon/src/siphon/ncss_dataset.py Line 78 in 198cbb4
siphon/src/siphon/ncss_dataset.py Line 83 in 198cbb4
re.split fails producing the warning message.
If replaced with Because I'm not familiar with the code-base, I won't attempt a PR since the maintainers may have a better idea how to tackle this issue. I'm just pointing out were it fails. |
The text was updated successfully, but these errors were encountered: