Hi, i found a possible bug/ problem
Basically have to merge 2 datacubes with the same extent, each of them contains the same 2 bands named " b02" and “b03” that i get form some process and one date ( the dates are different )
I did not specify a resolver because i want to keep the 2 bands for each date
if cube is None:
cube = str_bands_date
else:
cube = cube.merge_cubes(str_bands_date)
When i try to execute the process:
[500] OverlapResolverMissing: merge_cubes: Overlapping data cubes, but no overlap resolver has been specified. Either set an overlaps_resolver or rename the bands. Left names: [‘B02’, ‘B03’], right names: [‘B02’, ‘B03’]. (ref: r-24032804d38344cb95cdf585efebbd0c)
Am i doing something wrong ? can you help ?
Nicola