You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
came up when trying to compile a small poc for cross-backend processing (Open-EO/openeo-aggregator#115): merge_cubes only seems to consider the spatial extent of the first cube, ignoring the second.
Result only covers {"west": 3.00, "south": 51.00, "east": 3.10, "north": 51.10} and does not extend to {..., "east": 3.15, "north": 51.15}
When switching both cubes (cube2.merge_cubes(cube1, overlap_resolver="max"), the result only covers {"west": 3.05, "south": 51.05, "east": 3.15, "north": 51.15}
(not sure yet if this is an issue in openeo-geopyspark-driver or openeo-python-driver, just reporting here for now)
The text was updated successfully, but these errors were encountered:
came up when trying to compile a small poc for cross-backend processing (Open-EO/openeo-aggregator#115):
merge_cubes
only seems to consider the spatial extent of the first cube, ignoring the second.e.g.
Result only covers
{"west": 3.00, "south": 51.00, "east": 3.10, "north": 51.10}
and does not extend to{..., "east": 3.15, "north": 51.15}
When switching both cubes (
cube2.merge_cubes(cube1, overlap_resolver="max")
, the result only covers{"west": 3.05, "south": 51.05, "east": 3.15, "north": 51.15}
(not sure yet if this is an issue in openeo-geopyspark-driver or openeo-python-driver, just reporting here for now)
The text was updated successfully, but these errors were encountered: