It's not really an issue for theia_download but I guess you would know to who address the information.
I discover XS Venµs data few days ago. I don't know when it began but I noticed that XS and not XS has mixed in the late 2019 period and that theia_download script does not handle sensorMode parameter to request XS or not XS data inpendently.
I wanted to add it to the script but for non XS data, sensorMode parameter is a null value. And null value can't be requested. So it's not possible to download only non XS data until these data get an sensorMode value.
Hi @olivierhagolle !
It's not really an issue for theia_download but I guess you would know to who address the information.
I discover XS Venµs data few days ago. I don't know when it began but I noticed that
XS
and notXS
has mixed in the late 2019 period and that theia_download script does not handlesensorMode
parameter to requestXS
or notXS
data inpendently.I wanted to add it to the script but for non
XS
data, sensorMode parameter is anull
value. Andnull
value can't be requested. So it's not possible to download only nonXS
data until these data get an sensorMode value.As exemple, result of some request :
https://theia.cnes.fr/atdistrib/resto2/api/collections/VENUS/search.json?box=1.3722281593765346%2C43.66741153617093%2C1.5393877358233006%2C43.50009432459971&startDate=2019-12-01&completionDate=2020-01-20&maxRecords=500&processingLevel=LEVEL2A&sensorMode=XS
with
sensorMode=XS
=> 8 results, all XShttps://theia.cnes.fr/atdistrib/resto2/api/collections/VENUS/search.json?box=1.3722281593765346%2C43.66741153617093%2C1.5393877358233006%2C43.50009432459971&startDate=2019-12-01&completionDate=2020-01-20&maxRecords=500&processingLevel=LEVEL2A&sensorMode=
with
sensorMode=
=> 17 results, mixedXS
and notXS
like if there is no sensorMode parameters
I also tried with %00 value (empty string encoding in url) without more success.