earthenterprise icon indicating copy to clipboard operation
earthenterprise copied to clipboard

gemodifyimageryproject "maxleveloverride" flag bug

Open AnguIar opened this issue 4 years ago • 0 comments

Describe the bug

gemofiyimageryproject should be able to receive multiple maxleveloverride flags. If the flag is set, it belongs to a single inset. As for now, the command takes a single maxleveloverride flag (even if more flags are set) and applies it over the first inset from the input. command docs reference

For example: gemodifyimageryproject -o TempProject --maxleveloverride 10 TempResource_1 --maxleveloverride 5 TempResource_2 TempResource_3

Expected result will be: TempResource_3 | default (set by GEE) TempResource_1 | level 10 TempResource_2 | level 5

Thought it actually produces this: TempResource_3 | default TempResource_2 | default TempResource_1 | level 5

AnguIar avatar Aug 31 '20 09:08 AnguIar