get_earth_assets
Retrieve Earth imagery data for a specific location and date using latitude, longitude, and image dimensions. Access detailed visual assets directly from NASA APIs.
Instructions
Get information about available imagery assets for a specific location and date.
Args: lat: Latitude. lon: Longitude. date: Date in YYYY-MM-DD format. dim: Width and height of the image in degrees (0.025 degrees is approximately 2.7 km).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | ||
dim | No | ||
lat | Yes | ||
lon | Yes |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"title": "Date",
"type": "string"
},
"dim": {
"default": 0.025,
"title": "Dim",
"type": "number"
},
"lat": {
"title": "Lat",
"type": "number"
},
"lon": {
"title": "Lon",
"type": "number"
}
},
"required": [
"lat",
"lon",
"date"
],
"title": "get_earth_assetsArguments",
"type": "object"
}