Graniot API
  • Welcome!
  • Quick Start
  • Embedded Maps
  • Reference
    • API Reference
      • Accounts
      • Farms
        • Farm Managers
      • Parcels
        • Satellite Data
        • Plants
        • Crops
        • Weather Forecast
        • Historical weather data
      • Crops Families
      • Notes
  • Satellite Sources
    • Satellite Data Overview
    • Available Data Sources
      • Sentinel-2
      • PlanetScope
      • SkySat
      • Pleiades
      • Pléiades Neo
      • Maxar
Powered by GitBook
On this page
  1. Reference
  2. API Reference
  3. Parcels

Weather Forecast

This API provides forecast for weather conditions on a daily basis, including comprehensive meteorological data for a specific location. Here's a description of each field within the response:

  • daily: An array containing daily weather forecast objects. Each object within this array provides detailed weather information for a single day.

    • ref_time: The reference time for the forecast data, likely indicating the time the forecast was generated.

    • sset_time: The sunset time for the specific day.

    • srise_time: The sunrise time for the specific day.

    • clouds: The cloudiness percentage.

    • rain: An object detailing rainfall information.

      • all: The volume of rain.

    • wnd: An object containing wind information.

      • speed: Wind speed.

      • deg: Wind direction in degrees.

      • gust: Wind gust speed.

    • humidity: The humidity percentage.

    • pressure: An object detailing atmospheric pressure information.

      • press: Atmospheric pressure.

      • sea_level: Sea-level atmospheric pressure.

    • temp: An object detailing temperature information.

      • Various fields for temperature at different times of the day (day, min, max, night, eve, morn) and "feels like" temperatures (feels_like_day, feels_like_night, feels_like_eve, feels_like_morn).

    • status: General status of the weather (e.g., clear, cloudy).

    • detailed_status: A more detailed description of the weather.

    • weather_code: A numeric code representing the weather condition.

    • weather_icon_name: The name of an icon representing the weather condition.

    • visibility_distance: The visibility distance.

    • dewpoint: The dew point temperature.

    • humidex: The humidex (a Canadian measurement used to reflect the combined effect of heat and humidity).

    • heat_index: The heat index (also known as 'feels like' temperature, considering humidity).

    • utc_offset: The UTC offset for the location's time zone.

    • uvi: The Ultraviolet Index.

    • precipitation_probability: The probability of precipitation.

  • city: The name of the city for which the forecast is provided.

  • county: The name of the county for which the forecast is provided.

  • municipality: The name of the municipality for which the forecast is provided.

  • region: The name of the region for which the forecast is provided.

  • formatted: A formatted string possibly containing a human-readable summary or another structured format of the forecast.

This response is detailed and encompasses a wide range of weather data points, making it suitable for applications needing comprehensive weather information, including daily forecasts, atmospheric conditions, and specific weather phenomena details for a given location.

PreviousCropsNextHistorical weather data

Last updated 1 year ago

get
Path parameters
idstringRequired
Responses
200Success
application/json
get
GET /api/parcels/{id}/weather-forecast/ HTTP/1.1
Host: 
Accept: */*
200Success
{
  "daily": [
    {
      "ref_time": "2025-06-13T17:59:17.388Z",
      "sset_time": "2025-06-13T17:59:17.388Z",
      "srise_time": "2025-06-13T17:59:17.388Z",
      "clouds": 1,
      "rain": {
        "all": 1
      },
      "wnd": {
        "speed": 1,
        "deg": 1,
        "gust": 1
      },
      "humidity": 1,
      "pressure": {
        "press": 1,
        "sea_level": 1
      },
      "temp": {
        "day": 1,
        "min": 1,
        "max": 1,
        "night": 1,
        "eve": 1,
        "morn": 1,
        "feels_like_day": 1,
        "feels_like_night": 1,
        "feels_like_eve": 1,
        "feels_like_morn": 1
      },
      "status": "text",
      "detailed_status": "text",
      "weather_code": 1,
      "weather_icon_name": "text",
      "visibility_distance": 1,
      "dewpoint": 1,
      "humidex": 1,
      "heat_index": 1,
      "utc_offset": 1,
      "uvi": 1,
      "precipitation_probability": 1
    }
  ],
  "city": "text",
  "county": "text",
  "municipality": "text",
  "region": "text",
  "formatted": "text"
}