Results 40 comments of Alberto Torres

It seems that copying the model beforehand did the trick, in this version it works perfectly. Thanks!

I've just wanted to provide an example of some dataset that apparently uses de DAP4 protocol. This may/may not be useful for the implementation, and also when considering whether this...

@NiklasPhabian Unfortunately I've lost the example code I was using, but it was basically something like that. I've also tried using directly `xarray` with the `pydap` backend. However, as I...

I found the example code I was using: ``` from pydap.client import open_url from pydap.cas.urs import setup_session # From: https://stackoverflow.com/questions/71485068/how-to-open-download-modis-data-in-xarray-using-opendap login_url = 'https://opendap.earthdata.nasa.gov/collections/C1996881146-POCLOUD/granules/20220531090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.ascii?latitude[0],longitude[0],time[0]' session = setup_session(username, password, check_url=login_url) url =...

@Juanlu001 I see. I will install from master and report back

@Juanlu001 Seems that installing from master fixed the issue. I'll leave here the pip install (is not obvious how to install from Github adding extras): `pip install git+https://github.com/pydap/pydap.git#egg=pydap[server,handlers.netcdf]`

It is actually very weird, I also was not able to replicate it on [https://data.nodc.noaa.gov/thredds/catalog.html](https://data.nodc.noaa.gov/thredds/catalog.html). I attach the two full `catalog.xml` files: * [catalog.txt](https://github.com/Unidata/siphon/files/5021737/catalog.txt), this is the main catalog that...

Coming from #231, I think the proposed `fire.Fire(display=None)` would be a great way to catch the return of the function. As I understand it, this file `test.py` ```{python} def fn_test(a,...

I wasn't able to make HidGuardian and XOutput work together. However, I was able to achieve the same thing with HidHide, which is the successor to HidGuardian. Check the installation...

+1. As an alternative I think `interpolate_na` from `rioxarray` supports this: https://corteva.github.io/rioxarray/html/examples/interpolate_na.html