Hi,
I noticed a strange thing when experimenting with the code found here:
https://www.sentinel-hub.com/faq#t29n349
Here is my the WFS-request:https://services.sentinel-hub.com/ogc/wfs/<--omitted-->?service=WFS&version=2.0.0&request=GetFeature&time=2018-06-15/2018-07-04/P1D&typenames=S2.TILE&maxfeatures=100&srsname=EPSG:4326&bbox=55.684141460475985,13.18809986114502,55.672042726430575,13.232645988464357&maxcc=30&outputformat=application/json
I recive dates from the WFS-request (parsed from the GeoJSON data). Like this:
[“2018-07-01”, “2018-06-29”, “2018-06-26”, “2018-06-24”, “2018-06-21”, “2018-06-19”, “2018-06-16”]. I have pasted the response data here (with a few more dates), and to me everything looks great, latest image taken 2018-07-01. Link to response data.
I then proceed to fetch the images using those dates, as the code suggests.
But when I view the images it is clear to me, knowing the crops in the area, that the images are about one month old.
So when viewing an image taken at the date 2018-07-01 I can see that the image represents the acutal date of 2018-05-30.
To be specific all images I download after the date 2018-05-30 are identical to the image taken that date. Images taken previous to that date differ from each other, so there’s no issue there.
Here is one of the WCS-requests sent to get the (as of today) latest image taken.https://services.sentinel-hub.com/ogc/wcs/<--omitted-->?service=WCS&version=1.1.2&request=GetCoverage&time=2018-07-01&coverage=TRUE_COLOR&srsname=EPSG:4326&bbox=55.684141460475985,13.18809986114502,55.672042726430575,13.232645988464357&resx=4m&resy=4m&showlogo=false&format=image/png
There must be something that I’m doing wrong. Can someone assist me in finding the problem?
To me it looks like the time-parameter in the WCS-request is correct.