search_items
Search for geospatial data items in OpenLandMap collections using spatial bounding boxes and temporal filters to find Cloud-Optimized GeoTIFFs for analysis.
Instructions
Search items in a STAC collection with spatial and temporal filters.
Items represent temporal snapshots of the collection's data. Each item contains one or more assets (Cloud-Optimized GeoTIFFs).
Args: collection_id: Collection ID (e.g. 'organic.carbon_usda.6a1c'). bbox: Bounding box in WGS84 [min_lon, min_lat, max_lon, max_lat]. Example: [-54.0, -18.0, -45.0, -12.0] (part of Cerrado). datetime_range: ISO 8601 interval. Examples: '2010-01-01/2020-12-31', '2015-06-01/..', '../2020-01-01' limit: Max items to return (1-200, default: 20). offset: Number of results to skip for pagination.
Returns: ItemCollection with total_matched, returned, items, next_offset.
Example: search_items("organic.carbon_usda.6a1c", bbox=[-54,-18,-45,-12], limit=5)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection_id | Yes | ||
| bbox | No | ||
| datetime_range | No | ||
| limit | No | ||
| offset | No |