Paul Gierz
Paul Gierz
Hi @choldgraf, sorry for the delay; my "real job" got a bit busy for a while. I'd like to jump back into this. I can imagine writing papers would suddenly...
Intake pism is a mini-driver I wrote that basically copies the NetCDF driver from xarray and does some automatic meta-data transformation during loading (changing units in the time axis, mainly)....
Nice! Certainly some new documentation on this part would make it clearer; I'd be happy to contribute but I don't know the inner workings of intake well enough. It might...
Hi @andersy005, thanks for the example; this is close to what I'm trying to build. In our case, our simulations are all produced by the same infrastructure scripts and have...
Very cook, thanks @andersy005. I think I almost have it; but unfortunately I'm getting a `RecursionError`. Any hints? ```python class RepoExperiment(intake.catalog.base.Catalog): def __init__(self, base_dir, **kwargs): self.base_dir = base_dir if not...
Actually, that one was easy; I didn't need to define `_load`. Everything just needs to be in `__init__`. However, I'm still not getting the nested catalog correct. I guess because...
OK, that was the deciding hint, thanks! I needed to adapt the nginx rules a bit. Here is what ends up working: ``` location /intake/v1/info { proxy_pass http://localhost:5000/v1/info; proxy_set_header Upgrade...
Excellent! I'll do that then. I have another follow up question: my catalog contains NetCDF data. I checked with some debugging, and the [`open_remote`](https://github.com/intake/intake/blob/38ccec3c50d85d26a1c63ce8b1881ed3736108d0/intake/catalog/remote.py#L515) function seems to rely on a...
Nevermind the question, a simple `import intake_xarray` in my script was enough to register the container type.
Has anyone had any experience here? I also would like to add (or override) some of the icons that show up for specific file types.