Hi guys, I’m working with third party data API, specifically PlanetScope Tier 2 data. I followed the online tutorial. I can receive thumbnails from the following link:
https://services.sentinel-hub.com/api/v1/dataimport/collections/PLANET_SCOPE/products/{feature[‘id’]}/thumbnail
Now I’m ordering data with https://services.sentinel-hub.com/api/v1/dataimport/orders
I inserted the “collectionId” string. The obtained result has value “status created”.
After that I used the following API to recover the final image, RGB firstly then NDVI, exploiting the previous “collectionId”
https://services.sentinel-hub.com/api/v1/process
I obtained a total black image. Why? Whats wrong?
I’m using the following code, “True color” example
Examples for PlanetScope
I’m trying to recover data for a small area: about 2 ha. This is the ROi and the timestamps:
timeRange = {‘from’: ‘2023-09-01T00:00:00Z’, ‘to’: ‘2023-09-05T00:00:00Z’}
geometry = {
“type”: “Polygon”,
“coordinates”: [[[12.51388888888889, 43.1780556],[12.515277777777778, 43.1786111],[12.515277777777778,43.1788889],[12.516944444444444, 43.1788889],
[12.517222222222223, 43.1786111],[12.516666666666667, 43.1777778], [12.514722222222222, 43.1769444], [12.51388888888889, 43.1780556]]] }
Thank you in advance