Kirill Kouzoubov
Kirill Kouzoubov
Alright, so you are saying that there is no "global library convention" for pixel coordinates beyond integer indexing? Then documentation for `remap` function should state explicitly what coordinate system it...
Thank you for the links, unfortunately they too seem to lack the definition of where exactly `0,0` is relative to pixel boundaries/centre. I have established experimentally that `0,0` is the...
@sergiud, @alalek I just tried this on my machine (version 3.3.0 on a mac via python bindings) and the behaviour is as described by @gerhardneuhold. He is quite right that...
@sgillies following on https://github.com/rasterio/rasterio/issues/2339#issuecomment-1024989972 by @underchemist, looks like `_delete_dataset_if_exists` can sometimes be called outside of environment setup that captures gdal errors resulting in leaking of `ERROR 4` messages to stderr....
Images should match projection of a map, which by default is `epsg:3857` and not `espg:4326`.
@uchchwhash one can always download whatever binary and run it, so...
Use this command in the terminal to list all dask caches ``` find . -type d -name dask-worker-space ``` By default Dask creates `dask-worker-space` directory next to the notebook that...
Relevant configuration is `dask.temporary-directory` https://docs.dask.org/en/latest/configuration-reference.html#dask.temporary-directory But also we should consider tweaking spill to disk behaviour `distributed.worker.memory.{target|spill|pause|terminate}` https://docs.dask.org/en/latest/configuration-reference.html#distributed.worker.memory.target https://docs.dask.org/en/latest/configuration-reference.html#distributed.worker.memory.spill https://docs.dask.org/en/latest/configuration-reference.html#distributed.worker.memory.pause https://docs.dask.org/en/latest/configuration-reference.html#distributed.worker.memory.terminate
@whatnick main issue is not so much detecting interactive vs non-interactive mode, one can always use environment variable to detect "running in unit test mode" for example. Issue is how...
Needed changes look something like this https://github.com/GeoscienceAustralia/dea-notebooks/commit/39c0532eebf1928a4e4cebe2c34210522ffc2783, except that there are more places ``` Scripts/notebookapp_miningrehab.py:85: ds_resampled.attrs["crs"] = dataset_fc.crs Scripts/notebookapp_changefilmstrips.py:214: ds_geomedian.attrs['crs'] = ds.crs Frequently_used_code/Contour_extraction.ipynb:738: "Another way to get around this issue...