get_earth_imagery
Retrieve Landsat 8 satellite imagery for specific coordinates, date, and dimensions. Use to access visual Earth data by inputting latitude, longitude, and optional parameters for detailed analysis.
Instructions
Get Earth imagery from Landsat 8 satellite.
Args: lat: Latitude. lon: Longitude. date: Image date in YYYY-MM-DD format. If not specified, the most recent image is used. dim: Width and height of the image in degrees (0.025 degrees is approximately 2.7 km). cloud_score: Calculate the percentage of the image covered by clouds (currently not available).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cloud_score | No | ||
date | No | ||
dim | No | ||
lat | Yes | ||
lon | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cloud_score": {
"default": false,
"title": "Cloud Score",
"type": "boolean"
},
"date": {
"default": null,
"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"
],
"title": "get_earth_imageryArguments",
"type": "object"
}