Closed JackLidge closed 2 months ago
probably due to this issue: #957
I agree with Kirill. Datasets that span -180 to 180 longitude in native coordinates are problematic. You can hack around it by manually changing to something like -179.99999 to 180. It's a bit ugly, but it works.
I'll give it a go with that hack!
Expected behaviour
I'm trying to load in a long timeseries with dask to compute the mean values for the area over time. Here's a code trace for loading in the data and computing the mean without using dask:
and
rainfall_list
, returns:Actual behaviour
When I load the data using dask and then running compute, it returns all nans, for both
rainfall_list
and then just selecting one individual timestep.this returns:
Steps to reproduce the behaviour
I've loaded a Sentinel-2 image for the same area using dask and time period and that loads correctly, so either I am doing something wrong when using dask to calculate a 2D mean or the images themselves are registered weirdly.
The product yaml for
cmorph_rainfall
is:and one of the dataset yamls looks as follows:
I used eodatasets3 to generate the yamls (both data and yamls are in the same s3 bucket), with the following script being used to create the yamls.
Environment information
datacube version: 1.8.12
Any pointers on this greatly appreciated!