Sustainable Application mockup
Sustainable Application mockup


The first example below demonstrates the import of PlanetScope data and the second one the import of Pleiades data. We included the examples of both Simple and Native search so that you can compare their interfaces even though both would usually not be used in the same workflow. Similar applies for the examples of Order products and of Order using query. The requests are given in Python. To execute them you need to create an OAuth client as is explained here. It is named oauth in these examples.
A Postman collection with examples can be downloaded here. You will need a SH access token to run the examples successfully.
| url = "https://services.sentinel-hub.com/api/v1/dataimport/nativesearch" | |
| payload = { | |
| "provider": "PLANET", | |
| "item_types": [ | |
| "PSScene" | |
| ], | |
| "filter": { | |
| "type": "AndFilter", | |
| "config": [ | |
| { | |
| "type": "GeometryFilter", | |
| "field_name": "geometry", | |
| "config": { | |
| "type": "Polygon", | |
| "coordinates": [ | |
| [ | |
| [ | |
| 15.825815, | |
| 46.714048 | |
| ], | |
| [ | |
| 15.813988, | |
| 46.707248 | |
| ], | |
| [ | |
| 15.832682, | |
| 46.703062 | |
| ], | |
| [ | |
| 15.839931, | |
| 46.711694 | |
| ], | |
| [ | |
| 15.835353, | |
| 46.716664 | |
| ], | |
| [ | |
| 15.825815, | |
| 46.714048 | |
| ] | |
| ] | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "DateRangeFilter", | |
| "field_name": "acquired", | |
| "config": { | |
| "gte": "2022-04-25T00:00:00.000Z", | |
| "lte": "2022-04-30T00:00:00.000Z" | |
| } | |
| }, | |
| { | |
| "type": "RangeFilter", | |
| "field_name": "cloud_cover", | |
| "config": { | |
| "lte": 0.3 | |
| } | |
| }, | |
| { | |
| "type": "StringInFilter", | |
| "field_name": "quality_category", | |
| "config": [ | |
| "standard" | |
| ] | |
| }, | |
| { | |
| "type" : "PermissionFilter", | |
| "config" : [ "assets:download" ] | |
| }, | |
| { | |
| "type" : "AssetFilter", | |
| "config" : [ "ortho_analytic_8b_sr" ] | |
| } | |
| ] | |
| } | |
| } | |
| response = oauth.post(url, json=payload) | |
| response.raise_for_status() | |
| results = response.json() |
Use an online service Configuration Utility to create multiple configuration instances each with a different set of layers fulfilling various needs.
This will make an online application for a user but how can we make it available in use for an emergency and to provide reports?
A browser-based Application used by an online service or data center will make a difference to create a user application.
For example: Sentinel Hub EO Browser (sentinel-hub.com)

Landsat -8 mission is the most recent satellite of the Landsat program, and it carries OLI(Operational Land Imager) and TIRS(Thermal Infrared Sensor) instruments onboard. OLI acquires data in the visible, near and short wave infrared regions while TIRS acquires data in the thermal region to provide essential information for monitoring our natural resources and environment. Landsat 8 Level 1 data from the most recently released collection 2, provides Top of Atmosphere Reflectance and Top of the Atmosphere Brightness Temperature products. Level 1 data are available since February 2013.
Satellite data which is used by data centers and online services: Landsat - 8 L1 - Sentinel Hub Public Collections (sentinel-hub.com)
Can we start using it on mobile phone using data centers or online services?
KFC VR training is a good use case for using a VR App. for training: https://youtu.be/jmRQBugNDGQ




