Ryan May

Results 784 comments of Ryan May

@edwardhartnett So just to correct something here: > The issues of netcdf-java with filters remain, and must be resolved by the netcdf-java team. To summarize the outcomes suggested in this...

@Dave-Allured I agree that the focus is mostly on the read functionality; it's certainly my chief concern. The netcdf-java library has a completely independent, pure-Java implementation for reading netCDF data....

I appreciate the report. Does [this answer](https://stackoverflow.com/questions/57598304/how-to-get-siphon-to-recognize-ssl-cert-bundle) on Stack Overflow help? I *think* it should work if you pass `verify=False` to `set_session_options`. Even better, you should be able to then...

What you have is not quite valid use of Python imports. You can either do: ```Python from siphon.http_util import session_manager ... with session_manager.urlopen(endpoint_url) as f: ``` OR ```python import siphon.http_util...

Out of curiosity, why store these URLs (which I assume have no dimensionality) as global attributes instead of variables?

No problem here with netCDF4 (python) 1.4.0 and libnetcdf (C) 4.6.1 from conda-forge.

@kserradell What versions of netcdf4-python and netcdf-c do you have installed? How did you install them? The code you posted works fine for me on my mac on Python 3.7.3.

Ok, so it turns out that the PyPI wheels include their own copy of libnetcdf embedded, so you don't actually need to install netcdf from homebrew. It also looks like...

@matthew-brett I'm more concerned about for the wheels uploaded to PyPI. And just figuring out that the wheels uploaded to PyPI are linked to netCDF 4.4.1.1 took the effort I...