stac_describe_scene
Retrieve comprehensive details for a scene from a prior search, including all assets, bands, CRS, and properties, to evaluate suitability before downloading.
Instructions
Get detailed information about a specific scene.
Shows all available assets/bands, properties, CRS, and download URLs. The scene must have been returned by a previous stac_search call.
Args: scene_id: Scene identifier from a search result (use scene_id from stac_search) output_mode: Response format - "json" (default) or "text"
Returns: JSON with full scene details including all assets, CRS, and properties
Tips for LLMs: - Call this after stac_search to see available bands before downloading - The assets list shows every downloadable band and its resolution - Use the band keys (e.g., red, nir, scl) in stac_download_bands - Check cloud_cover to decide if the scene is usable
Example: detail = await stac_describe_scene( scene_id="S2B_MSIL2A_20240715T105629_N0510_R094_T31UCR_20240715T143301" )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scene_id | Yes | ||
| output_mode | No | json |