Assets are data from completed tasking and catalog orders that you can download. Assets from storage can be used as input imagery for processing.
The following order statuses mean you can download assets from storage:
BEING_FULFILLED
: Some order assets might have been delivered.FULFILLED
: All order assets have been delivered.
You can generate a pre-signed URL to download an asset without authentication by calling the Create a download URL endpoint with the asset ID as the path parameter. The generated URL is valid for 5 minutes and can be shared. The URL will have the following format:
{ "url": "https://storage.googleapis.com/user-storage-interstellar-prod/assets/<...>"}
To get a streaming link for transformed assets, use STAC API endpoints as follows:
-
Find a STAC item containing a geospatial feature you want to stream. To search for STAC items with specific parameters across your storage, call the Get specific STAC items endpoint with your search parameters in the request body.
-
Inside a STAC item, view the
assets
object:JSON {<...>,"type": "FeatureCollection","features": [{"assets": {"aot.tiff": {"href": "https://api.sa.up42.com/v2/assets/a0d443a2-41e8-4995-8b54-a5cc4c448227","title": "Aerosol optical thickness","description": null,"type": "image/tiff; application=geotiff; profile=cloud-optimized","roles": ["data"]},"b01.tiff": {"href": "https://api.sa.up42.com/v2/assets/55434287-31bc-3ad7-1a63-d61aac11ac55","title": "Costal aerosol band","description": null,"type": "image/tiff; application=geotiff; profile=cloud-optimized","roles": ["data"]}}}],<...>} -
Find the assets you want to stream and extract their IDs from the nested
assets.<asset-name>.href
parameter. For example:Text "href": "https://api.sa.up42.com/v2/assets/a0d443a2-41e8-4995-8b54-a5cc4c448227"↓Asset ID: a0d443a2-41e8-4995-8b54-a5cc4c448227 -
To get a streaming link, call the Create a download URL endpoint with the chosen ID as the path parameter. The response will have the following format:
JSON {"url": "https://storage.googleapis.com/user-storage-interstellar-prod/assets/<...>"} -
Paste the streaming link into a third-party application or visualization software — for example, QGIS.
The status of the CNAM transformation or geospatial metadata extraction indicates the progress and outcome of transforming the asset’s metadata for CNAM compatibility. Only transformed assets can be accessed through Data management → Map.
Status | Description |
---|---|
SUCCESSFUL | The transformation process was successful, and the asset is CNAM-compatible. |
IN_PROGRESS | The transformation process for the asset is currently ongoing. |
NOT_PROCESSED | The asset hasn’t undergone any transformation process. |
FAILED | The transformation process failed for the asset. |