Agromonitoring · Schema

WeatherData

Weather conditions for a specific date and location.

AgricultureSatellite ImageryVegetation IndicesWeatherPrecision AgricultureRemote Sensing

Properties

Name Type Description
dt integer Date as Unix timestamp.
temp object
humidity integer Relative humidity percentage.
wind_speed number Wind speed in m/s (or mph for imperial).
wind_deg integer Wind direction in degrees.
clouds integer Cloud coverage percentage.
rain number Precipitation amount in mm.
uvi number UV index value.
View JSON Schema on GitHub

JSON Schema

agromonitoring-weatherdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.agromonitoring.com/schemas/WeatherData.json",
  "title": "WeatherData",
  "type": "object",
  "description": "Weather conditions for a specific date and location.",
  "properties": {
    "dt": {
      "type": "integer",
      "description": "Date as Unix timestamp.",
      "example": 1712000000
    },
    "temp": {
      "$ref": "#/components/schemas/TemperatureRange"
    },
    "humidity": {
      "type": "integer",
      "description": "Relative humidity percentage.",
      "example": 65
    },
    "wind_speed": {
      "type": "number",
      "format": "double",
      "description": "Wind speed in m/s (or mph for imperial).",
      "example": 4.2
    },
    "wind_deg": {
      "type": "integer",
      "description": "Wind direction in degrees.",
      "example": 180
    },
    "clouds": {
      "type": "integer",
      "description": "Cloud coverage percentage.",
      "example": 30
    },
    "rain": {
      "type": "number",
      "format": "double",
      "description": "Precipitation amount in mm.",
      "example": 0.0
    },
    "uvi": {
      "type": "number",
      "format": "double",
      "description": "UV index value.",
      "example": 5.2
    }
  }
}