Prerequisites
- You have a Tilebox API key.
- You have installed the Python SDK.
Explore available open data datasets
Tilebox exposes open data catalogs through the same dataset API as your private datasets. To get a list of available open data satellite datasets, run the following snippet.Python
Output
Select the Sentinel-2 catalog
Access the Sentinel-2 MSI dataset by its slug. The dataset contains collections for Sentinel-2 products such asS2A_S2MSI2A.
Python
Define the search area
Create a polygon for the area you want to inspect. This example uses a bounding box around Colorado.Python
Query Sentinel-2 metadata
Query the Sentinel-2 Level-2A collection by time and location. This returns metadata for matching scenes; it does not download image products.Python
xarray.Dataset containing scene metadata. Use it to inspect candidate scenes, filter by metadata fields, or pass selected datapoints to a workflow task.
Filter the metadata result
Metadata results behave like regularxarray.Dataset objects. You can filter, sort, or select scenes before deciding what to process next.
Python
Next steps
Access Copernicus data
Download Copernicus product files with the storage client.
Storage clients
Configure provider-specific clients for product access.