search_items
Search for geospatial data items across STAC collections using spatial, temporal, and attribute filters to access satellite imagery and weather datasets.
Instructions
Search for STAC items across collections
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bbox | No | Bounding box [west, south, east, north] in WGS84 | |
catalog_url | No | STAC catalog URL (optional, defaults to Microsoft Planetary Computer) | |
collections | No | List of collection IDs to search within | |
datetime | No | Date/time filter (ISO 8601 format, e.g., '2023-01-01/2023-12-31') | |
limit | No | Maximum number of items to return | |
query | No | Additional query parameters for filtering items |
Input Schema (JSON Schema)
{
"properties": {
"bbox": {
"description": "Bounding box [west, south, east, north] in WGS84",
"items": {
"type": "number"
},
"maxItems": 4,
"minItems": 4,
"type": "array"
},
"catalog_url": {
"description": "STAC catalog URL (optional, defaults to Microsoft Planetary Computer)",
"type": "string"
},
"collections": {
"description": "List of collection IDs to search within",
"items": {
"type": "string"
},
"type": "array"
},
"datetime": {
"description": "Date/time filter (ISO 8601 format, e.g., '2023-01-01/2023-12-31')",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of items to return",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"query": {
"description": "Additional query parameters for filtering items",
"type": "object"
}
},
"type": "object"
}