get_collection
Retrieve detailed metadata for a specific STAC collection to access geospatial datasets like satellite imagery and weather data.
Instructions
Get detailed information about a specific STAC collection
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| catalog_url | No | STAC catalog URL (optional, defaults to Microsoft Planetary Computer) | |
| collection_id | Yes | ID of the collection to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"catalog_url": {
"description": "STAC catalog URL (optional, defaults to Microsoft Planetary Computer)",
"type": "string"
},
"collection_id": {
"description": "ID of the collection to retrieve",
"type": "string"
}
},
"required": [
"collection_id"
],
"type": "object"
}