When working with our Archives APIs, you’ll encounter concepts defined by the SpatioTemporal Asset Catalog (STAC) specification. This section gives you a brief introduction to these key concepts.
STAC is an open standard for describing geospatial data. It provides a structured way to catalog, index, and search for satellite imagery and other geospatial assets.
A Collection in STAC represents a group of related imagery items. It serves as a container for items that share similar characteristics, such as the same sensor type or geographic region.
Key Points:
Contains metadata about the dataset.
Includes links to the collection’s details and related resources.
Once you understand the concept of a Collection, you might want to see what collections are available on our platform. For example, one of our collections is called pixxel-td-l2a.
To get started, you can list all available collections using our API. This will help you identify collections like pixxel-td-l2a that you might want to explore further.
Copy
curl -X GET "https://api.pixxel.space/v0/archives/collections" \ -H "Authorization: <YOUR_API_KEY>"
Once you’ve explored a collection, the next step is to look at the individual items within it. Let’s use the collection pixxel-td-l2a as an example, an item endpoint provides you with all the metadata and asset links needed to make informed decisions about the imagery.
Copy
curl -X GET "https://api.pixxel.space/v0/archives/collections/pixxel-td-l2a/items" \ -H "Authorization: <YOUR_API_KEY>"
This brief overview should help you understand the basics of STAC, Collections, and STAC Items as they relate to our Archives APIs. For more detailed information, refer to the links above.