Storage Clients
Learn about the different storage clients available in Tilebox to access open data.
Tilebox does not host the actual open data satellite products but instead relies on publicly accessible storage providers for data access. Instead Tilebox ingests available metadata as datasets to enable high performance querying and structured access of the data as xarray.Dataset.
Below is a list of the storage providers currently supported by Tilebox.
Copernicus Data Space
The Copernicus Data Space is an open ecosystem that provides free instant access to data and services from the Copernicus Sentinel missions. Check out the ASF Open Data datasets that are available in Tilebox.
Access Copernicus data
To download data products from the Copernicus Data Space after querying them via the Tilebox API, you need to create an account and then generate S3 credentials here.
The following code snippet demonstrates how to query and download Copernicus data using the Tilebox Python SDK.
Partial product downloads
For cases where only a subset of the available file objects for a product is needed, you may restrict your download to just that subset. First, list available objects using list_objects
, filter them, and then download using download_objects
.
For example, a Sentinel-2 L2A product includes many files such as metadata, different bands in various resolutions, masks, and quicklook images. The following example shows how to download only specific files from a Sentinel-2 L2A product.
Alaska Satellite Facility (ASF)
The Alaska Satellite Facility (ASF) is a NASA-funded research center at the University of Alaska Fairbanks. Check out the ASF Open Data datasets that are available in Tilebox.
Accessing ASF Data
You can query ASF metadata without needing an account, as Tilebox has indexed and ingested the relevant metadata. To access and download the actual satellite products, you will need an ASF account.
You can create an ASF account in the ASF Vertex Search Tool.
The following code snippet demonstrates how to query and download ASF data using the Tilebox Python SDK.
Further Reading
Umbra Space
Umbra satellites provide high resolution Synthetic Aperture Radar (SAR) imagery from space. Check out the Umbra datasets that are available in Tilebox.
Accessing Umbra data
No account is needed to access Umbra data. All data is under a Creative Commons License (CC BY 4.0), allowing you to use it freely.
The following code snippet demonstrates how to query and download Umbra data using the Tilebox Python SDK.
Partial product downloads
For cases where only a subset of the available file objects for a given Umbra data point is necessary, you can limit your download to just that subset. First, list available objects using list_objects
, filter the list, and then use download_objects
.
The below example shows how to download only the metadata file for a given data point.
Was this page helpful?