Alex Leith
Alex Leith
This is just a "nice to have" feature, so that the arguments to `odc.stac.load` for geospatial intersection are the same as `pystac_client.Client.search`. I think the failing tests are unrelated to...
### Description Running the new 1.9 version of Datacube OWS that's configured using environment variables crashes if there's no config file at all. ## Steps to Reproduce 1. Configure OWS...
I have another problem loading data. May be related to #176. Here's a minimal code reproduction: ```python from affine import Affine from odc.geo.geobox import GeoBox, GeoboxTiles from odc.stac import configure_s3_access,...
A work in progress, but currently includes functions: * `odc.geo.masking.bits_to_bool`, which makes a mask using bit flags * `odc.geo.masking.enum_to_bool`, which makes a mask using `isin` lookups * `scale_and_offset`, which applies...
This a test that highlights the issue in #176 Hopefully the PR develops into a fix too!
Error captured below. Share URL is this: https://maps.digitalearthpacific.org/#share=s-se4QkfmUsarYesLIzoXr ```bash PayloadTooLargeError: request entity too large at readStream (/app/node_modules/raw-body/index.js:163:17) at getRawBody (/app/node_modules/raw-body/index.js:116:12) at read (/app/node_modules/body-parser/lib/read.js:79:3) at textParser (/app/node_modules/body-parser/lib/types/text.js:86:5) at Layer.handle [as handle_request]...
It does work when you do ISO datetimes, like `2023-01-01T00:00:00.000Z/2023-12-31T23:59:59.999Z`.
### Bug Summary I'm running the below code to load an xarray, and if I don't transpose lat/lon, then the array is flipped along a diagonal axis. Am I doing...
I'm doing a fairly simple load, like this: ```python data = dc.load( product="s2_l2a", measurements=["red", "green", "blue"], output_crs="EPSG:32750", resolution=10, time=("2025-03-01", "2025-03-14"), x=(float(bbox.left), float(bbox.right)), y=(float(bbox.bottom), float(bbox.top)), dask_chunks={}, group_by="solar_day", ) data ``` and...
The Harmomised Landsat and Sentinel-2 Collections changed their names, and I didn't realise that. Code that used to work quickly, not took 10s of minutes to perhaps not complete. Example...