Scott Henderson
Scott Henderson
Just came across this as I was surprised to hit the following error via mybinder.org ``` Building conda environment for python=3.12 Error during build: Python version 3.12 on linux-64 is...
Interestingly this was fixed upstream according to the linked issue above, but the behavior persists in Xarray: ```python ds.interp(time=ds.time) # array([[nan, nan, 1.]]) # (unexpected) ds.interpolate_na(time=ds.time) # array([nan, 0., 1.])...
It does look like the WarpedVRT construction behind the scenes results in many GET requests to the full-resolution data rather than using an overview, a simple test is to check...
This would be really useful! Is there currently a recommended approach to go from earthaccess search results to a geodataframe? For example: ```python gf = gpd.GeoDataFrame.from_features(results.geojson(), crs='EPSG:4326') ``` Note: `results.to_dict()`...
> There is a STAC sprint next week and it might be a good opportunity to tidy things up Nice (https://cloudnativegeo.org/blog/2023/07/stac-sprint-8)! A lot of intake-stac development definitely happened at previous...
Thanks for pointing this out. The missing link is referring to the next subchapter in that section https://tutorial.xarray.dev/fundamentals/01.1_creating_data_structures.html PR's welcome!
closed by #246
@betolink that notebook is looking really fantastic! I think it would be an excellent addition, perhaps slot in into a 'section' for Remote Access Patterns with the exiting CMIP6 notebook...
@betolink should we close this for now, or would you like to leave it open to follow up on further additions (open_mfdataset, chunking)?
fixed by #256