Radarsat2 collection beam mode/ beam mnemonic / product type
ECCCBen opened this issue · 3 comments
Tried to query eodms api for R2 dataset and limit query to SGF (-pt), SCWA (-bm) with no success. Could be an issue with EODMS itself since I sometimes have similar issues when querying EODMS for their online portal...
eodms -c Radarsat2 -s 20180205 -e 20181231 -pt SGF -g CG_EODMS_Query.geojson -dr
Can confirm - beam_mode
filter doesn't appear to do anything to the result of a query. Even the official client appears to not use the .SBEAM
filter: https://github.com/nrcan-eodms-sgdot-rncan/eodms-rapi-orderdownload/blob/1b633f61815a7a7d3e5514f7ead617335fb695c8/utils/common.py#L93
In the meantime, you can use some geopandas magic to get rid of anything that isn't SCWA before ordering:
import geopandas as gpd
df = gpd.read_file('query_results.geojson')
scwa_only = df.loc[df['Position'] == 'SCWA']
with open('to_order.txt', 'w') as f:
f.writelines('\n'.join(scwa_only['EODMS RecordId'].astype(str).tolist()))
note that there may be some "duplicate" scenes (same image but different LUT) so be sure to order only what you want
then submit:
eodms -c RS2 --record-ids to_order.txt
@NWRCBen FYI as of 4f27301 (not released/published to pypi/cforge yet - waiting for EODMS server-side issues to settle) this issue might be able to be closed as fixed 🥳
both --product-type
and --radarsat-beam-mnemonic
appear to work now. Give it a try with >=1.1.5:
eodms -c RS2 -s 20180205 -e 20181231 -pt SGF -rm SCWA -g CG_EODMS_Query.geojson -dr -dfn query_results_v1.1.5