Ryan May
Ryan May
@brianmapes The only help I can offer is that if you're willing to live with the time span of data available on thredds.ucar.edu, the "Full Collection (Reference / Forecast Time)...
This might depend on the version of the netCDF-C library being used. IIRC, there were some versions that got a bit more picky about some of the opendap parsing.
Well this is a weird one. So I filled in your sample code with appropriate entries for GOES-16 satellite products from our [THREDDS demonstration server](https://thredds.ucar.edu/thredds/catalog/satellite/goes/east/grb/ABI/FullDisk/Channel02/20200804/catalog.html): ```python import siphon.catalog BASE_URL =...
That's great. Let me dig in and see what I find...
Ok so I have an idea on the problem, just not quite sure what the right fix is yet. The dataset elements here look like: ```xml 11226431 2020-08-04T10:02:10Z ``` With...
I think the C library gained the interface--I just haven't been able to carve out the time to implement in Python.
@shofer16450 is the data extent 0->360? (Rather than -180 -> 180)
Well, the two requests would result in two separate netCDF `Dataset`s, so there would still be some work to put those back together. Maybe...OPeNDAP?
TDS 5 will provide a service that can handle requests across the 0 degree meridian. Some work will be needed to access that service from Siphon and return this data...
[`shutil.copyfileobj`](https://docs.python.org/3/library/shutil.html) or one of its friends may be helpful here.