nasa_eonet
Track and analyze natural events like wildfires and volcanoes using NASA's Earth Observatory data. Retrieve event details by category, status, and time range for informed decision-making.
Instructions
Earth Observatory Natural Event Tracker - natural events data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Event category (wildfires, volcanoes, etc.) | |
days | No | Number of days to look back | |
limit | No | Maximum number of events to return | |
source | No | Data source | |
status | No | Event status (open, closed) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Event category (wildfires, volcanoes, etc.)",
"type": "string"
},
"days": {
"description": "Number of days to look back",
"type": "number"
},
"limit": {
"description": "Maximum number of events to return",
"type": "number"
},
"source": {
"description": "Data source",
"type": "string"
},
"status": {
"description": "Event status (open, closed)",
"type": "string"
}
},
"type": "object"
}