NASA-MCP

by AnCode666
MIT License
  • Apple
  • Linux

get_earth_imagery

Access Landsat 8 satellite imagery for specific coordinates and dates. Retrieve high-resolution Earth visuals by providing latitude, longitude, and optional parameters like image dimensions and cloud coverage 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

NameRequiredDescriptionDefault
cloud_scoreNo
dateNo
dimNo
latYes
lonYes

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" }
ID: rrycjdkdg8