get_stations_in_cell
Retrieve WeatherXM station data within a specified H3 cell index to analyze localized weather conditions and enhance monitoring capabilities.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cell_index | Yes | The H3 index of the cell to return stations for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cell_index": {
"description": "The H3 index of the cell to return stations for",
"type": "string"
}
},
"required": [
"cell_index"
],
"type": "object"
}