You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use the function to download data it downloads a folder for each day with the files [response.tiff, request.json]. The problem is that I cannot find the acquisition time for the images, i..e the sentinel5p acquisition time for every image.
The request.json contains this:
Thank you for posting this question. I tried running your example but noticed that you don't use the time interval in your request anywhere. Your SentinelHubRequest.input_data dictionary should contain the time_interval parameter like so:
I also updated the DataCollection part, since there was no need to update the data collection. Unless you are using some other sh_base_url? I didn't see it defined anywhere.
Now, to get to the issue. The reason that the time range is returned is that the SH in the background creates a mosaic of all observations during the timedelta which you specify (1 day). If you want finer temporal resolution I suggest that you decrease the timedelta to 1 hour, that should give you better precision, but will still not give you the exact timestamp.
If you're interested in the exact timestamps, you have to save the information from the scenes and save it explicitly in the evalscript using the updateOutputMetadata function.
Another option is to query the timestamps via the SH Catalog, like so:
Hi,
I am using the following code to download CO data from sentinel5p:
When I use the function to download data it downloads a folder for each day with the files [response.tiff, request.json]. The problem is that I cannot find the acquisition time for the images, i..e the sentinel5p acquisition time for every image.
The request.json contains this:
and not the specific time of the acquisition.
Any help with that?
The text was updated successfully, but these errors were encountered: