Sebastien Tremblay-Johnston
Sebastien Tremblay-Johnston
Not sure this is a COG specific issue ``` import logging import sys import numpy as np logging.basicConfig(stream=sys.stdout, level=logging.DEBUG) import rasterio arr = np.zeros((10, 10), dtype=np.uint8) # test.tif does not...
I've investigated a bit using a debug build of GDAL and this snippet ``` from pathlib import Path import numpy as np import rasterio arr = np.zeros((10, 10), dtype=np.uint8) with...
I'm attempting to follow the examples by @philippjfr except with `hv.RGB` and I'm running into issues. I have multiple jpeg (3 channel) images in a directory that I've loaded into...
@bitner My understanding is that the `link` object in a collection is not stored when creating a collection, and that the appropriate link such as `self`, `parent` are generated when...
In this case, I am just using the `HEIGHT_OFF` defined in the dataset RPCs as a stand-in z value in this calculation. However, because there is nuance in how to...
is it possible to avoid this code path (no retry logic in readmultirange) by specifying `GDAL_HTTP_MULTIRANGE=SERIAL` ?
Thanks for the suggestions @rouault I have tried both your suggestions previously and still experience issues. Will update if I can recreate a minimal working example.
Some more details: I modified my workflow to simply copy all the source files locally and then create a GTI file to skip vsicurl entirely. However I _also_ observed a...