Tried to query multiple beam modes in one query but only got one beam mode or all of them.
Tried:
x = EodmsAPI('RCM')
x.query(start='2019-07-01', end='2020-10-20', geometry='Data/CG_EODMS_Query.geojson', polarization='HH HV',
beam_mode='Low Noise Med Resolution 50m Low Resolution 100m')
Got all beam modes.
And
x = EodmsAPI('RCM')
x.query(start='2019-07-01', end='2020-10-20', geometry='Data/CG_EODMS_Query.geojson', polarization='HH HV',
beam_mode=['Low Noise, Med Resolution 50m, Low Resolution 100m'])
Only got the first beam mode in the list. Note: if I change the order of the beam modes in the list, I get the first beam mode.
For now, I use all the beam modes and sort the results post query. Thanks!
Tried to query multiple beam modes in one query but only got one beam mode or all of them.
Tried:
Got all beam modes.
And
Only got the first beam mode in the list. Note: if I change the order of the beam modes in the list, I get the first beam mode.
For now, I use all the beam modes and sort the results post query. Thanks!