nasa_earth
Access Landsat satellite imagery for specific locations and dates. Retrieve high-resolution Earth images by providing latitude, longitude, and optional dimensions or cloud coverage analysis.
Instructions
Earth - Landsat satellite imagery
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| cloud_score | No | Calculate the percentage of the image covered by clouds | |
| date | No | Date of imagery (YYYY-MM-DD format). If not specified, most recent imagery is used | |
| dim | No | Width and height of image in degrees (0.025 to 0.5) | |
| lat | Yes | Latitude of the imagery location | |
| lon | Yes | Longitude of the imagery location | 
Input Schema (JSON Schema)
{
  "properties": {
    "cloud_score": {
      "description": "Calculate the percentage of the image covered by clouds",
      "type": "boolean"
    },
    "date": {
      "description": "Date of imagery (YYYY-MM-DD format). If not specified, most recent imagery is used",
      "type": "string"
    },
    "dim": {
      "description": "Width and height of image in degrees (0.025 to 0.5)",
      "type": "number"
    },
    "lat": {
      "description": "Latitude of the imagery location",
      "type": "number"
    },
    "lon": {
      "description": "Longitude of the imagery location",
      "type": "number"
    }
  },
  "required": [
    "lon",
    "lat"
  ],
  "type": "object"
}