Usage

Weather Information

Retrieve real-time weather conditions and daily historical or forecast weather data for the location of your registered polygons.

Current Weather

Get the current weather conditions at a polygon's location:

GraphQL Query
query { retrieveCurrentWeather( polygonId: "abc123-def456-ghi789" ) { temperature humidity precipitation cloudCover windSpeed windDirection uvIndex description } }

Daily Weather

Retrieve historical weather data or a 10-day forecast for a polygon's location:

GraphQL Query
query { retrieveDailyWeather( polygonId: "abc123-def456-ghi789" startDate: "2025-07-01" endDate: "2025-07-31" ) { date temperatureMin temperatureMax humidity precipitation cloudCover windSpeed windDirection uvIndex sunrise sunset moonrise moonset description } }

Available Fields

Field Description
temperature Current temperature (current weather only).
temperatureMin / temperatureMax Daily temperature range (daily weather only).
humidity Relative humidity percentage.
precipitation Precipitation amount in mm.
cloudCover Cloud cover percentage. Useful for predicting satellite image availability.
windSpeed / windDirection Wind speed and direction.
uvIndex UV radiation index.
sunrise / sunset Local sun times (daily weather only).
moonrise / moonset Local moon times (daily weather only).
description Human-readable weather summary.

Tip: Use cloudCover data alongside satellite download availability to understand why certain dates may lack analysis results.