Jesse Anderson

Results 17 comments of Jesse Anderson

I'm seeing this error too. Same message and double-suffix behavior. I think it's due to the fact I installed a newer version of flickr_api than specified, which wants a filename...

Yes, it worked with version 0.5.

I reimplemented this using `map_blocks`. It works, but I'm not sure if I handled the coords/names the best way (it only works for a single band). ```python from functools import...

I question whether this is the best approach as my (admittedly very limited) understanding is that a dask-geopandas dataframe is chunked along an index rather than into pieces of equivalent...

I've had the same issues under the exact same conditions. However, it happens whether I use dask or not. This solution fixes it, but I agree at least a doc...

This works, as recommended in the [planetary computer documentation](https://planetarycomputer.microsoft.com/docs/quickstarts/storage/). ```python with io.BytesIO() as buffer: d.rio.to_raster(buffer, driver="COG") buffer.seek(0) ```

Oh right, now I realize the numeric types are string too. Yeah, probably a low priority

I'm seeing this too. JULIA_NUM_THREADS of 8-12 seems to be the sweet spot for large processes. Larger values (on machines with enough cores, of course) don't appear to give a...

On further real-world testing, JULIA_NUM_THREADS of 6 seems to be quicker than 8 on large (multi-day) processes

I was just looking at the changes, I believe az:// is more commonly used as a prefix than azure://, e.g. [rasterio supports az:// but not azure://](https://github.com/rasterio/rasterio/blob/725b49507e59d458846d1dc56b16766324862053/rasterio/session.py#L119). Or perhaps both could...