Download OpenAPI specification:Download
The Jane’s Weather API enables you to unlock productivity and drive efficiency with hyper local forecasting.
We combine the best global weather models into an easy to use Consensus forecast, to provide customised weather insights specific to your operations.
We are working to provide a resolution of 1km, and enhance our Consensus forecast with machine learning and AI, covered by algorithms specific to Australian conditions. The data is hourly for the next ten days.
Our forecasts utilise BoM data along with other global sources, but we make our forecasts available to customers 11-36 hours ahead of what BoM can publish, and formatted so that users can make decisions.
The Jane’s Weather API provides the most complete Australian API weather experience. It includes output from multiple weather models, as well as data from our Consensus Forecast.
The Consensus Forecast provides the following.
Basic variables, hourly for the next ten days:
Daily for the next ten days:
Plus the following calculations:
Under development:
The Jane's Weather API is a per use service. Contact Jane to request pricing details.
Use the x-api-key
you are provided with to authenticate the requests.
The API is undergoing heavy development and new features are being added all the time.
The forecast models become available at various times throughout a 24 hour period.
Fresh forecast data is available on the following schedule:
Each run of the model is known by the time they began processing (in UTC time), at 00Z, 06Z, 12Z and 18Z.
Use this endpoint to determine which model run is currently available. The data includes the latest forecasts and previous forecast runs.
Each model run is due around the following times daily:
Each time an individual model updates, the Consensus and Advanced Consensus models update.
model | string Enum: "gfs.0p25" "gem.0p1" "access-g.13km" "ecmwf.0p4" "ml" "consensus" Filter by forecast model |
limit | integer >= 0 Limit the number of returned results |
limit_per_model | integer >= 0 Limit the number of returned results per model |
max_rt | string <date-time> Maximum reference time of models in results |
max_ut | string <date-time> Set the forecast Max Updated Time (UTC). Use with ct parameter to view older Consensus runs. |
{- "metadata": [
- {
- "model": "consensus",
- "reference_time": "2022-11-15T18:00:00+00:00",
- "updated_at": "2022-11-15T22:46:00+00:00",
- "next_update": "2022-11-16T01:30:00+00:00",
- "dataset_length": 0,
- "consensus_members": [
- {
- "model": "gfs.0p25",
- "reference_time": "2022-11-15T18:00:00+00:00",
- "updated_at": "2022-11-15T22:46:00+00:00",
- "next_update": "2022-11-16T05:00:00+00:00",
- "dataset_length": 160
}, - {
- "model": "access-g.13km",
- "reference_time": "2022-11-15T12:00:00+00:00",
- "updated_at": "2022-11-15T19:41:00+00:00",
- "next_update": "2022-11-16T01:30:00+00:00",
- "dataset_length": 240
}, - {
- "model": "gem.0p1",
- "reference_time": "2022-11-15T12:00:00+00:00",
- "updated_at": "2022-11-15T17:41:00+00:00",
- "next_update": "2022-11-16T06:00:00+00:00",
- "dataset_length": 80
}
]
}, - {
- "model": "gfs.0p25",
- "reference_time": "2022-11-15T18:00:00+00:00",
- "updated_at": "2022-11-15T22:46:00+00:00",
- "next_update": "2022-11-16T05:00:00+00:00",
- "dataset_length": 160
}, - {
- "model": "access-g.13km",
- "reference_time": "2022-11-15T12:00:00+00:00",
- "updated_at": "2022-11-15T19:41:00+00:00",
- "next_update": "2022-11-16T01:30:00+00:00",
- "dataset_length": 240
}, - {
- "model": "gem.0p1",
- "reference_time": "2022-11-15T12:00:00+00:00",
- "updated_at": "2022-11-15T17:41:00+00:00",
- "next_update": "2022-11-16T06:00:00+00:00",
- "dataset_length": 80
}, - {
- "model": "gfs.0p25",
- "reference_time": "2022-11-15T12:00:00+00:00",
- "updated_at": "2022-11-15T16:46:00+00:00",
- "next_update": "2022-11-15T23:00:00+00:00",
- "dataset_length": 160
}
]
}
Get the forecast data for the selected model.
The returned forecast object contains several components. These include forecast data, and metadata about the forecast data. These components are explained in the subsequent sections.
Main forecast API request:
curl -H x-api-key:<API_KEY> \
https://services.janesweather.com/customers/api/v1/forecast/<MODEL>?lat=<LAT>&lng=<LNG>&pid=<PID>
Sample <API_KEY>: UQGfdqipox5lje54b4T5w7hvSJDm6qZNaoClhox1
This sample API KEY allows for limited usage, to test once or twice. Use your assigned key once you receive it.
<MODEL>:
CONSENSUS model = consensus
ADVANCED CONSENSUS model = ml
USA model known as GFS = gfs.0p25
CANADA model known as GEM = gem.0p1
AUSTRALIA model known as ACCESS-G = access-g.13km
EURO model known as ECMWF = ecmwf.0p4
For a particular location, using the latitude, longitude and (only needed in alpine regions) google PlaceID
<LAT> ie -36.9752778
<LNG> ie 147.1327778
<PID> find it at (https://developers.google.com/maps/documentation/places/web-service/place-id)
For example:
Melbourne from the Advanced Consensus model
curl --location --request \
GET 'https://services.janesweather.com/customers/api/v1/forecast/ml?lat=-37.840935&lng=144.946457' \
--header 'x-api-key: UQGfdqipox5lje54b4T5w7hvSJDm6qZNaoClhox1'
Thredbo from the USA model
curl --location \
--request GET 'https://services.janesweather.com/customers/api/v1/forecast/gfs.0p25?lat=-36.5043775&lng=148.304401&pid=ChIJYRaafL5LI2sRUlpfMHVpFm4' \
--header 'x-api-key: UQGfdqipox5lje54b4T5w7hvSJDm6qZNaoClhox1'
Tip: Go to https://janesweather.com/forecast/graph and select the location you want. The url will contain the lat= lng= and pid=.
Within the output there are several sections:
referenceDate = the model run date and time it began processing (ie 00, 06, 12, 18 UTC) "referenceDate": "2022-08-21T06:00:00+00:00" is the 06Z run on 21st August
updatedAt = when the model finished processing and became available (in UTC)
nextUpdate = when the next run of the model is due to finish processing (in UTC)
The following example shows that the Consensus model is currently made up of the 06Z run of the ECMWF, the 06Z run of GFS, the 06Z of ACCESS, and 00Z of GEM:
{
"model": "consensus",
"referenceDate": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T13:25:35+00:00",
"nextUpdate": "2024-03-05T17:00:00+00:00",
"modelsMetadata": [
{
"model": "access-g.13km",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T13:25:35+00:00",
"nextUpdate": "2024-03-05T19:30:00+00:00",
"datasetLength": 84,
"consensusMembers": null,
"mlMembers": null
},
{
"model": "consensus",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T13:25:35+00:00",
"nextUpdate": "2024-03-05T17:00:00+00:00",
"datasetLength": 0,
"consensusMembers": [
{
"model": "access-g.13km",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T13:25:35+00:00",
"nextUpdate": "2024-03-05T19:30:00+00:00",
"datasetLength": 84
},
{
"model": "ecmwf.0p4",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T13:23:19+00:00",
"nextUpdate": "2024-03-05T20:00:00+00:00",
"datasetLength": 31
},
{
"model": "gfs.0p25",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T10:55:34+00:00",
"nextUpdate": "2024-03-05T17:00:00+00:00",
"datasetLength": 160
},
{
"model": "gem.0p1",
"referenceTime": "2024-03-05T00:00:00+00:00",
"updatedAt": "2024-03-05T05:48:09+00:00",
"nextUpdate": "2024-03-05T18:00:00+00:00",
"datasetLength": 80
}
],
"mlMembers": null
},
{
"model": "ml",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T13:25:35+00:00",
"nextUpdate": "2024-03-05T17:00:00+00:00",
"datasetLength": 0,
"consensusMembers": null,
"mlMembers": [
{
"model": "access-g.13km",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T13:25:35+00:00",
"nextUpdate": "2024-03-05T19:30:00+00:00",
"datasetLength": 84
},
{
"model": "ecmwf.0p4",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T13:23:19+00:00",
"nextUpdate": "2024-03-05T20:00:00+00:00",
"datasetLength": 31
},
{
"model": "gfs.0p25",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T10:55:34+00:00",
"nextUpdate": "2024-03-05T17:00:00+00:00",
"datasetLength": 160
},
{
"model": "gem.0p1",
"referenceTime": "2024-03-05T00:00:00+00:00",
"updatedAt": "2024-03-05T05:48:09+00:00",
"nextUpdate": "2024-03-05T18:00:00+00:00",
"datasetLength": 80
}
]
},
{
"model": "ecmwf.0p4",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T13:23:19+00:00",
"nextUpdate": "2024-03-05T20:00:00+00:00",
"datasetLength": 31,
"consensusMembers": null,
"mlMembers": null
},
{
"model": "gfs.0p25",
"referenceTime": "2024-03-05T06:00:00+00:00",
"updatedAt": "2024-03-05T10:55:34+00:00",
"nextUpdate": "2024-03-05T17:00:00+00:00",
"datasetLength": 160,
"consensusMembers": null,
"mlMembers": null
},
{
"model": "gem.0p1",
"referenceTime": "2024-03-05T00:00:00+00:00",
"updatedAt": "2024-03-05T05:48:09+00:00",
"nextUpdate": "2024-03-05T18:00:00+00:00",
"datasetLength": 80,
"consensusMembers": null,
"mlMembers": null
}
]
Each model run is due around the following times daily:
The latitude, longitude and local timezone.
"location": {
"lat": -37.840935,
"lon": 144.946457,
"timezone": {
"location": "Australia/Melbourne"
}
}
This shows the bounds needed on the axis if displaying the information in a graph.
temperature shows the highest and lowest temperature in the next 9 days.
rainfall shows the total amount of rain, as well as the lowest and highest hourly value, in the next 9 days.
snow shows the same, but for all precipitation that should fall as snow (at a temperature less than 0.2C)
evapotranspiration shows the total eTo, as well as the highest and lowest daily value, in the nexx 9 days.
"datasetSummary": {
"temperature": {
"min": 13.3,
"max": 35.2
},
"rainfall": {
"min": 0,
"max": 0.3,
"total": 2.7
},
"snow": {
"min": 0,
"max": 0,
"total": 0
},
"evapotranspiration": {
"min": 2.8,
"max": 7.1,
"total": 39.7
}
}
The daily totals/extremes for each day from midnight to midnight. Including: rain and snow total, plus the highest and lowest in each hour of the period.
overnightLowTemp is the coldest temperature between 6pm the previous day and 9am on the current day.
dailyHighTemp is the highest temperature during the day between 6am and 9pm.
dailyEvapotranspirationTotal is the total eTo expected for the 24 hour period.
dailyGrowingDegreeBase0Total is the forecast heat accumulation for the 24 hour period for base 0C (used to estimate the growth of crops with a minimum development threshold of 0C)
dailyGrowingDegreeBase5Total is the forecast heat accumulation for the 24 hour period for base 5C (used to estimate the growth of crops with a minimum development threshold of 5C)
dailyGrowingDegreeBase10Total is the forecast heat accumulation for the 24 hour period for base 10C (used to estimate the growth of crops with a minimum development threshold of 10C)
valid is the local date that the data is for (automatically adjusted to daylight savings if needed [ie +11 for Melbourne/Sydney]).
"summary": [
{
"dailyRainTotal": 0,
"dailyRainMax": 0,
"dailyRainMin": 0,
"dailySnowTotal": 0,
"dailySnowMax": 0,
"dailySnowMin": 0,
"dailyHighTemp": 25.3,
"overnightLowTemp": 17.1,
"dailyEvapotranspirationTotal": 4.4,
"dailyGrowingDegreeBase0Total": 18.7,
"dailyGrowingDegreeBase5Total": 14.1,
"dailyGrowingDegreeBase10Total": 9.5,
"valid": "2024-03-06T00:00:00+11:00/P1D"
},
]
The hour by hour forecast for the selected model.
"values": [
{
"apparentTemperature": 17.00041675504805,
"cloudCoverLower": 0,
"cloudCoverMiddle": 39.73385825054751,
"cloudCoverTotal": 42.35856851366533,
"cloudCoverUpper": 41.54385404639589,
"dewPoint": 8.960874229054824,
"frostRisk": "NO_FROST",
"relativeHumidity": 53.79971162952778,
"valid": "2024-03-05T15:00:00+00:00",
"localTime": "2024-03-06T02:00:00+11:00",
"deltaT": 5.577498465294873,
"rainfall": 0,
"snow": 0,
"tmp2m": 18.25478397102559,
"windDirCardinal": "NW",
"windDirDegree": 320.07974509027054,
"windSpeed": 4.9827784377858215,
"windGust": 8.739240704507573,
"windGustDirCardinal": "NW",
"windGustDirDegree": 320.07974509027054,
"weatherIcon": "NIGHT_MOSTLY_CLEAR",
"timeOfDay": "NIGHT",
"sprayingConditionRating": "GOOD",
"airTemperatureSprayingRating": "GOOD",
"deltaTSprayingRating": "GOOD",
"cloudCoverTotalSprayingRating": "GOOD",
"windSpeedSprayingRating": "GOOD",
"growingDegreeDaysBase0": 0.7606159987927328,
"growingDegreeDaysBase5": 0.5522826654593995,
"growingDegreeDaysBase10": 0.34394933212606615,
"thickness": 5701.076310252454,
"uvIndexClearSky": 0,
"cloudCoverTotalConfidence": "LOW",
"dewPoinConfidence": "MEDIUM",
"relativeHumidityConfidence": "LOW",
"rainfallConfidence": "HIGH",
"tmp2mConfidence": "LOW",
"windSpeedConfidence": "HIGH",
"windGustConfidence": "LOW"
},
]
localTime with 10 days of hourly data, each hour in local time
valid UTC time
tmp2m temperature in C
apparentTemperature apparent temperature in C aka “feels like” (takes into account the wind and moisture in the air)
cloudCover Lower Middle Upper (different heights of the atmosphere) and Total, as a % of 100. Low refers to cloud with a base below 6500 feet, High has a base above 20,000 feet, Mid is in between
dewPoint how much moisture is in the air in C. See notes on weather variables below.
relativeHumidity the humidity relative to the air temperature, as a % of 100
frostRisk = NO_FROST, CHANCE_FROST, FROST_LIKELY, SEVERE_FROST. See notes on weather variables below.
deltaT used for spraying crops, in C. See notes on weather variables below.
rainfall precipitation above 0.2C, in mm
snow precipitation below 0.2C, in cm
tmp2m 2m temperature
wind Direction (Cardinal: N NE E etc and Degree: 181.125448654848), Speed (average speed over the hour), Gust (strongest gust over the hour). The wind direction is the direction the wind is blowing from, ie 180 blows from the south, a “southerly”.
weatherIcon see the following for all details on icons: https://bit.ly/jw-icon-details.
timeOfDay to help select which icon set to use
windSpeedSprayingRating: is the Wind Speed suitable to Spray at this forecast time
growingDegreeDaysBase0: forecast heat accumulation for the hour for base 0C (used to estimate the growth of crops with a minimum development threshold of 0C)
growingDegreeDaysBase5: forecast heat accumulation for the hour for base 5C (used to estimate the growth of crops with a minimum development threshold of 5C)
growingDegreeDaysBase10: forecast heat accumulation for the hour for base 10C (used to estimate the growth of crops with a minimum development threshold of 10C)
thickness: measures the height of the column of air between the ground and 5km (technically known as thickness 1000hPa and 500hPa, colloquially known as the 540 line on weather maps coloured in blue). This height is tall when the air is warm (as warm air expands) and short when the air is cold. It helps us determine when the airmass is cold enough to produce snow, and when the airmass is warm enough to produce extreme heat. Use the following key to decipher the output:
5200 Snow to sea level 5240 Snow to 300m 5280 Snow to 600m 5320 Snow to 900m 5360 Snow to 1200m 5400 Snow to 1500m 5440 Snow to 1800m 5720 Hot weather 5780 Extreme heat
Confidence collection (Consensus model only) for Total Cloud, Dew Point, Relative Humidity, Precipitation (rain and snow), Temperature, Wind Speed and Gust we provide a confidence rating of LOW, MEDIUM, HIGH.
This indicates how close or far apart each model is at that time for that variable.
Three models are currently used in our Consensus forecast. High indicates good agreement between the models and a high confidence in the data. Low means the spread between them is large and this period has low confidence.
Generally they will increase from Low to Medium to High as the time period gets closer, but it depends on the type of weather system, and the location of the forecast. Convective rainfall will rarely have a high consensus.
Spraying rather than just deltaT, we have a complete spraying rating “sprayingConditionRating” - UNSUITABLE, MARGINAL, GOOD - that takes into account the air temperature, wind speed and cloud cover as well as delta T. Each variable that goes into the calculation is shown too, if you wanted to calculate your own.
Less than 5 = Dry
5 – 13.9 = Comfortable
14 – 19.9 = Humid
20 or more = Tropical
Temperature doesn’t tell the full story about how the air can affect a person, and relative humidity is exactly that, relative to the temperature.
You can have 100% humidity at 9am on a winters morning at 2C, and 100% humidity at 10am on a humid summers morning at 28C, and they will have a very different impact yet the same humidity rating.
Dew Point gives an indication of how much moisture is in the air, and therefore gives a much better representation of how the temperature will actually feel.
A temperature of 25C with a dew point of 5C is pleasant. A temperature of 25C with a dew point of 20C is sweaty.
Less than 1.9 = Marginal for Spraying
2 – 7.9 = Good for Spraying
8 – 9.9 = Marginal for Spraying
10 or more = Unsuitable for Spraying
Delta-T is the wet bulb depression providing an indication of water evaporation rate. This can indicate whether conditions are suitable for spraying crops, and is included in our Spraying Alert (incorporating temperature, cloud cover and wind speed too).
0 - 19.9 km/h = Light
20 - 29.9 km/h = Moderate
30 - 39.9 km/h = Breezy
40 - 62.9 km/h = Strong
63 or more km/h = Gale
Average wind strength across the forecast hour. Wind gusts may be 40% higher than the average over the hour time step. The wind direction is the direction the wind is blowing from, ie S or 180 degrees is a southerly wind.
No Frost
Chance of Frost
Frost Likely
Severe Frost
Risk of frost due to not only temperature, but wind and cloud cover too.
A calm clear night with a temperature of 4C can produce frost (because temperature is forecast at 2 metres above ground level, and on a calm night the air forms layers that reduce in temperature the closer to the ground).
A windy or cloudy night with a temperature of 1C is less likely to produce frost as the air mixes and won't form layers. In this case the temperature is uniform between the ground and 2 metre forecast height.
model required | string Enum: "gfs.0p25" "gem.0p1" "access-g.13km" "ecmwf.0p4" "ml" "consensus" Forecast model |
lat required | number <float> [ -90 .. 90 ] Example: lat=-37.840935 Latitude |
lng required | number <float> [ -180 .. 180 ] Example: lng=144.946457 Longitude |
pid | string Google API Place ID. Use with select mountain locations to adjust temperature by elevation. |
elevation | string The desired elevation in meters. Use with select mountain locations to adjust temperature by elevation. |
ct | string <date-time> Artificially set the Current Time (UTC) |
rt | string <date-time> Reference Time (UTC). Use with ct parameter to view previous model runs. |
max_ut | string <date-time> Set the forecast Max Updated Time (UTC). Use with ct parameter to view older Consensus runs. |
{- "model": "gfs.0p25",
- "referenceDate": "2023-09-13T12:00:00+00:00",
- "updatedAt": "2023-09-13T17:48:45+00:00",
- "nextUpdate": "2023-09-13T23:00:00+00:00",
- "modelsMetadata": [
- {
- "model": "ecmwf.0p4",
- "referenceTime": "2023-09-13T12:00:00+00:00",
- "updatedAt": "2023-09-13T19:58:22+00:00",
- "nextUpdate": "2023-09-14T01:15:00+00:00",
- "datasetLength": 65,
- "consensusMembers": null
}, - {
- "model": "consensus",
- "referenceTime": "2023-09-13T12:00:00+00:00",
- "updatedAt": "2023-09-13T19:58:22+00:00",
- "nextUpdate": "2023-09-13T23:00:00+00:00",
- "datasetLength": 0,
- "consensusMembers": [
- {
- "model": "ecmwf.0p4",
- "referenceTime": "2023-09-13T12:00:00+00:00",
- "updatedAt": "2023-09-13T19:58:22+00:00",
- "nextUpdate": "2023-09-14T01:15:00+00:00",
- "datasetLength": 65
}, - {
- "model": "gem.0p1",
- "referenceTime": "2023-09-13T12:00:00+00:00",
- "updatedAt": "2023-09-13T17:57:36+00:00",
- "nextUpdate": "2023-09-14T06:00:00+00:00",
- "datasetLength": 80
}, - {
- "model": "gfs.0p25",
- "referenceTime": "2023-09-13T12:00:00+00:00",
- "updatedAt": "2023-09-13T17:48:45+00:00",
- "nextUpdate": "2023-09-13T23:00:00+00:00",
- "datasetLength": 160
}, - {
- "model": "access-g.13km",
- "referenceTime": "2023-09-13T06:00:00+00:00",
- "updatedAt": "2023-09-13T13:20:47+00:00",
- "nextUpdate": "2023-09-13T19:30:00+00:00",
- "datasetLength": 84
}
]
}, - {
- "model": "gem.0p1",
- "referenceTime": "2023-09-13T12:00:00+00:00",
- "updatedAt": "2023-09-13T17:57:36+00:00",
- "nextUpdate": "2023-09-14T06:00:00+00:00",
- "datasetLength": 80,
- "consensusMembers": null
}, - {
- "model": "gfs.0p25",
- "referenceTime": "2023-09-13T12:00:00+00:00",
- "updatedAt": "2023-09-13T17:48:45+00:00",
- "nextUpdate": "2023-09-13T23:00:00+00:00",
- "datasetLength": 160,
- "consensusMembers": null
}, - {
- "model": "access-g.13km",
- "referenceTime": "2023-09-13T06:00:00+00:00",
- "updatedAt": "2023-09-13T13:20:47+00:00",
- "nextUpdate": "2023-09-13T19:30:00+00:00",
- "datasetLength": 84,
- "consensusMembers": null
}
], - "location": {
- "lat": -37.840935,
- "lon": 144.946457,
- "timezone": {
- "location": "Australia/Melbourne"
}
}, - "datasetSummary": {
- "temperature": {
- "min": 6.4,
- "max": 28.4
}, - "rainfall": {
- "min": 0,
- "max": 0.6,
- "total": 4.1
}, - "snow": {
- "min": 0,
- "max": 0,
- "total": 0
}, - "evapotranspiration": {
- "min": 2.5,
- "max": 6.1,
- "total": 35.1
}
}, - "summary": [
- {
- "dailyRainTotal": 0,
- "dailyRainMax": null,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": null,
- "dailySnowMin": 0,
- "dailyHighTemp": null,
- "overnightLowTemp": null,
- "dailyEvapotranspirationTotal": null,
- "dailyGrowingDegreeBase0Total": 0.6,
- "dailyGrowingDegreeBase5Total": 0.4,
- "dailyGrowingDegreeBase10Total": 0.2,
- "valid": "2023-09-13T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 0,
- "dailyRainMax": 0,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 24,
- "overnightLowTemp": 12.3,
- "dailyEvapotranspirationTotal": 4.9,
- "dailyGrowingDegreeBase0Total": 17.8,
- "dailyGrowingDegreeBase5Total": 12.8,
- "dailyGrowingDegreeBase10Total": 7.8,
- "valid": "2023-09-14T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 0,
- "dailyRainMax": 0,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 24.2,
- "overnightLowTemp": 14.8,
- "dailyEvapotranspirationTotal": 4.5,
- "dailyGrowingDegreeBase0Total": 18.6,
- "dailyGrowingDegreeBase5Total": 13.6,
- "dailyGrowingDegreeBase10Total": 8.6,
- "valid": "2023-09-15T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 0,
- "dailyRainMax": 0,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 24.5,
- "overnightLowTemp": 10.5,
- "dailyEvapotranspirationTotal": 5.4,
- "dailyGrowingDegreeBase0Total": 17.3,
- "dailyGrowingDegreeBase5Total": 12.3,
- "dailyGrowingDegreeBase10Total": 7.3,
- "valid": "2023-09-16T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 0,
- "dailyRainMax": 0,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 25,
- "overnightLowTemp": 12.1,
- "dailyEvapotranspirationTotal": 5.2,
- "dailyGrowingDegreeBase0Total": 17.3,
- "dailyGrowingDegreeBase5Total": 12.3,
- "dailyGrowingDegreeBase10Total": 7.3,
- "valid": "2023-09-17T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 0.1,
- "dailyRainMax": 0.1,
- "dailyRainMin": 0.1,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 28.4,
- "overnightLowTemp": 13,
- "dailyEvapotranspirationTotal": 6.1,
- "dailyGrowingDegreeBase0Total": 20.6,
- "dailyGrowingDegreeBase5Total": 15.6,
- "dailyGrowingDegreeBase10Total": 10.6,
- "valid": "2023-09-18T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 0.1,
- "dailyRainMax": 0,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 22.1,
- "overnightLowTemp": 17.3,
- "dailyEvapotranspirationTotal": 3.5,
- "dailyGrowingDegreeBase0Total": 18.5,
- "dailyGrowingDegreeBase5Total": 13.5,
- "dailyGrowingDegreeBase10Total": 8.5,
- "valid": "2023-09-19T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 3.9,
- "dailyRainMax": 0.6,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 15.9,
- "overnightLowTemp": 12.2,
- "dailyEvapotranspirationTotal": 2.5,
- "dailyGrowingDegreeBase0Total": 12.9,
- "dailyGrowingDegreeBase5Total": 7.9,
- "dailyGrowingDegreeBase10Total": 2.9,
- "valid": "2023-09-20T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 0,
- "dailyRainMax": 0,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 15.1,
- "overnightLowTemp": 7.5,
- "dailyEvapotranspirationTotal": 3.1,
- "dailyGrowingDegreeBase0Total": 10.8,
- "dailyGrowingDegreeBase5Total": 5.8,
- "dailyGrowingDegreeBase10Total": 1.7,
- "valid": "2023-09-21T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 0,
- "dailyRainMax": 0,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 19.2,
- "overnightLowTemp": 6.4,
- "dailyEvapotranspirationTotal": 4.5,
- "dailyGrowingDegreeBase0Total": 12.8,
- "dailyGrowingDegreeBase5Total": 7.8,
- "dailyGrowingDegreeBase10Total": 3.8,
- "valid": "2023-09-22T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": 0,
- "dailyRainMax": 0,
- "dailyRainMin": 0,
- "dailySnowTotal": 0,
- "dailySnowMax": 0,
- "dailySnowMin": 0,
- "dailyHighTemp": 15,
- "overnightLowTemp": 10.4,
- "dailyEvapotranspirationTotal": 2.6,
- "dailyGrowingDegreeBase0Total": 11.8,
- "dailyGrowingDegreeBase5Total": 7,
- "dailyGrowingDegreeBase10Total": 2.2,
- "valid": "2023-09-23T00:00:00+10:00/P1D"
}, - {
- "dailyRainTotal": null,
- "dailyRainMax": null,
- "dailyRainMin": null,
- "dailySnowTotal": null,
- "dailySnowMax": null,
- "dailySnowMin": null,
- "dailyHighTemp": null,
- "overnightLowTemp": 10.6,
- "dailyEvapotranspirationTotal": null,
- "dailyGrowingDegreeBase0Total": null,
- "dailyGrowingDegreeBase5Total": null,
- "dailyGrowingDegreeBase10Total": null,
- "valid": "2023-09-24T00:00:00+10:00/P1D"
}
], - "values": [
- {
- "apparentTemperature": 12.387262256632138,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 5,
- "cloudCoverTotal": 99.5999984741211,
- "cloudCoverUpper": 99.5999984741211,
- "dewPoint": 8.189752197265648,
- "frostRisk": null,
- "relativeHumidity": 67.80000305175781,
- "valid": "2023-09-13T13:00:00+00:00",
- "localTime": "2023-09-13T23:00:00+10:00",
- "deltaT": 3.550653785273191,
- "rainfall": null,
- "snow": null,
- "tmp2m": 14.082116699218773,
- "windDirCardinal": "NNE",
- "windDirDegree": 21.38822911745332,
- "windSpeed": 6.600301112996071,
- "windGust": 6.879485034942626,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 21.38822911745332,
- "weatherIcon": "UNKNOWN",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5867548624674488,
- "growingDegreeDaysBase5": 0.37842152913411553,
- "growingDegreeDaysBase10": 0.1700881958007822,
- "thickness": 5588.711898803711
}, - {
- "apparentTemperature": 12.012747799018687,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0.8999999761581421,
- "cloudCoverTotal": 98.4000015258789,
- "cloudCoverUpper": 98.4000015258789,
- "dewPoint": 8.217858886718773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 69.9000015258789,
- "valid": "2023-09-13T14:00:00+00:00",
- "localTime": "2023-09-14T00:00:00+10:00",
- "deltaT": 3.295047891374109,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.649987792968773,
- "windDirCardinal": "NNE",
- "windDirDegree": 22.748720141030816,
- "windSpeed": 6.349693193013175,
- "windGust": 6.214253854751586,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 22.748720141030816,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5687494913736988,
- "growingDegreeDaysBase5": 0.36041615804036553,
- "growingDegreeDaysBase10": 0.1520828247070322,
- "thickness": 5589.22380065918
}, - {
- "apparentTemperature": 11.560011708334716,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 98.69999694824219,
- "cloudCoverUpper": 98.69999694824219,
- "dewPoint": 8.160272216796898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70.5,
- "valid": "2023-09-13T15:00:00+00:00",
- "localTime": "2023-09-14T01:00:00+10:00",
- "deltaT": 3.2114366066599143,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.353601074218773,
- "windDirCardinal": "NNE",
- "windDirDegree": 24.683939244532425,
- "windSpeed": 6.956243984398561,
- "windGust": 8.334594154357909,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 24.683939244532425,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5564000447591155,
- "growingDegreeDaysBase5": 0.34806671142578216,
- "growingDegreeDaysBase10": 0.13973337809244885,
- "thickness": 5591.067840576172
}, - {
- "apparentTemperature": 11.022543397311146,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 7.894891357421898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 71,
- "valid": "2023-09-13T16:00:00+00:00",
- "localTime": "2023-09-14T02:00:00+10:00",
- "deltaT": 3.131034311706424,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.930139160156273,
- "windDirCardinal": "NNE",
- "windDirDegree": 27.383443206951753,
- "windSpeed": 7.170085120541771,
- "windGust": 8.725298023223877,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 27.383443206951753,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5387557983398447,
- "growingDegreeDaysBase5": 0.33042246500651135,
- "growingDegreeDaysBase10": 0.12208913167317803,
- "thickness": 5592.109436035156
}, - {
- "apparentTemperature": 10.51174073403898,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 7.382989501953148,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70.19999694824219,
- "valid": "2023-09-13T17:00:00+00:00",
- "localTime": "2023-09-14T03:00:00+10:00",
- "deltaT": 3.1956645291917756,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.653619384765648,
- "windDirCardinal": "NNE",
- "windDirDegree": 31.7807673807391,
- "windSpeed": 7.855078370188204,
- "windGust": 11.990753173828123,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 31.7807673807391,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5272341410319019,
- "growingDegreeDaysBase5": 0.31890080769856866,
- "growingDegreeDaysBase10": 0.11056747436523531,
- "thickness": 5593.9964599609375
}, - {
- "apparentTemperature": 10.173994144083547,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 6.803796386718773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 67.5999984741211,
- "valid": "2023-09-13T18:00:00+00:00",
- "localTime": "2023-09-14T04:00:00+10:00",
- "deltaT": 3.458745634314596,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.585839843750023,
- "windDirCardinal": "NNE",
- "windDirDegree": 28.096173819843557,
- "windSpeed": 8.524338715791394,
- "windGust": 16.945034408569335,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 28.096173819843557,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5244099934895843,
- "growingDegreeDaysBase5": 0.3160766601562509,
- "growingDegreeDaysBase10": 0.10774332682291761,
- "thickness": 5595.378845214844
}, - {
- "apparentTemperature": 9.782424255059473,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 81,
- "cloudCoverUpper": 81,
- "dewPoint": 6.261071777343773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 65.9000015258789,
- "valid": "2023-09-13T19:00:00+00:00",
- "localTime": "2023-09-14T05:00:00+10:00",
- "deltaT": 3.61655289565806,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.378900146484398,
- "windDirCardinal": "NNE",
- "windDirDegree": 26.883002964357686,
- "windSpeed": 8.834738430778748,
- "windGust": 19.816774749755858,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 26.883002964357686,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5157875061035165,
- "growingDegreeDaysBase5": 0.3074541727701832,
- "growingDegreeDaysBase10": 0.0991208394368499,
- "thickness": 5596.04670715332
}, - {
- "apparentTemperature": 9.444739919411862,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 6.170648193359398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 65.80000305175781,
- "valid": "2023-09-13T20:00:00+00:00",
- "localTime": "2023-09-14T06:00:00+10:00",
- "deltaT": 3.617727507337312,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.268304443359398,
- "windDirCardinal": "NNE",
- "windDirDegree": 22.67281795941733,
- "windSpeed": 9.862275352121458,
- "windGust": 26.990338382720946,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 22.67281795941733,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5111793518066415,
- "growingDegreeDaysBase5": 0.3028460184733082,
- "growingDegreeDaysBase10": 0.0945126851399749,
- "thickness": 5594.084136962891
}, - {
- "apparentTemperature": 9.862764088467788,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 6.957971191406273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 67.19999694824219,
- "valid": "2023-09-13T21:00:00+00:00",
- "localTime": "2023-09-14T07:00:00+10:00",
- "deltaT": 3.5208331611231394,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.857995605468773,
- "windDirCardinal": "NNE",
- "windDirDegree": 15.26453779546354,
- "windSpeed": 11.724102148908148,
- "windGust": 36.46934692382812,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 15.26453779546354,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5357498168945322,
- "growingDegreeDaysBase5": 0.32741648356119885,
- "growingDegreeDaysBase10": 0.11908315022786553,
- "thickness": 5591.268142700195
}, - {
- "apparentTemperature": 11.851964281809089,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.054681396484398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 63,
- "valid": "2023-09-13T22:00:00+00:00",
- "localTime": "2023-09-14T08:00:00+10:00",
- "deltaT": 4.145917155579143,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.954675292968773,
- "windDirCardinal": "N",
- "windDirDegree": 9.8943404953813,
- "windSpeed": 13.527434427137665,
- "windGust": 43.071238517761216,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 9.8943404953813,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6231114705403655,
- "growingDegreeDaysBase5": 0.41477813720703216,
- "growingDegreeDaysBase10": 0.20644480387369885,
- "thickness": 5590.568496704102
}, - {
- "apparentTemperature": 14.207309274579021,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.852349853515648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 56.70000076293945,
- "valid": "2023-09-13T23:00:00+00:00",
- "localTime": "2023-09-14T09:00:00+10:00",
- "deltaT": 5.126669714265734,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.452355957031273,
- "windDirCardinal": "N",
- "windDirDegree": 3.8267997548115034,
- "windSpeed": 15.260091673505796,
- "windGust": 45.5801138305664,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 3.8267997548115034,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7271814982096363,
- "growingDegreeDaysBase5": 0.518848164876303,
- "growingDegreeDaysBase10": 0.31051483154296966,
- "thickness": 5590.170364379883
}, - {
- "apparentTemperature": 16.35295214897857,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 9.249963378906273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 49.79999923706055,
- "valid": "2023-09-14T00:00:00+00:00",
- "localTime": "2023-09-14T10:00:00+10:00",
- "deltaT": 6.325513361296725,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.996850585937523,
- "windDirCardinal": "N",
- "windDirDegree": 1.9087874028685405,
- "windSpeed": 17.87657967954825,
- "windGust": 42.65402309417724,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 1.9087874028685405,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.8332021077473968,
- "growingDegreeDaysBase5": 0.6248687744140634,
- "growingDegreeDaysBase10": 0.4165354410807301,
- "thickness": 5590.2818603515625
}, - {
- "apparentTemperature": 17.81567457124889,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.647912597656273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 42.599998474121094,
- "valid": "2023-09-14T01:00:00+00:00",
- "localTime": "2023-09-14T11:00:00+10:00",
- "deltaT": 7.6380676295014425,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 21.878137207031273,
- "windDirCardinal": "N",
- "windDirDegree": 357.9635206393822,
- "windSpeed": 19.24300878631908,
- "windGust": 39.39441902160644,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 357.9635206393822,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.9115890502929697,
- "growingDegreeDaysBase5": 0.7032557169596363,
- "growingDegreeDaysBase10": 0.49492238362630303,
- "thickness": 5591.275207519531
}, - {
- "apparentTemperature": 18.82172039597073,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.025628662109398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 38,
- "valid": "2023-09-14T02:00:00+00:00",
- "localTime": "2023-09-14T12:00:00+10:00",
- "deltaT": 8.585958236843481,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.129754638671898,
- "windDirCardinal": "N",
- "windDirDegree": 357.6028104700432,
- "windSpeed": 19.7934726897439,
- "windGust": 36.06459995269775,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 357.6028104700432,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.963739776611329,
- "growingDegreeDaysBase5": 0.7554064432779957,
- "growingDegreeDaysBase10": 0.5470731099446624,
- "thickness": 5593.565414428711
}, - {
- "apparentTemperature": 19.722314663230037,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 7.911553955078148,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 35.70000076293945,
- "valid": "2023-09-14T03:00:00+00:00",
- "localTime": "2023-09-14T13:00:00+10:00",
- "deltaT": 9.13671998124033,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.951379394531273,
- "windDirCardinal": "N",
- "windDirDegree": 353.7752216707656,
- "windSpeed": 19.15190208393798,
- "windGust": 31.361476306915282,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 353.7752216707656,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.997974141438803,
- "growingDegreeDaysBase5": 0.7896408081054697,
- "growingDegreeDaysBase10": 0.5813074747721363,
- "thickness": 5594.640533447266
}, - {
- "apparentTemperature": 19.90053725171907,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.347558593750023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 36.599998474121094,
- "valid": "2023-09-14T04:00:00+00:00",
- "localTime": "2023-09-14T14:00:00+10:00",
- "deltaT": 8.994351301958709,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 24.004418945312523,
- "windDirCardinal": "N",
- "windDirDegree": 353.0765381232586,
- "windSpeed": 19.019910494524055,
- "windGust": 30.62570234298706,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 353.0765381232586,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.000184122721355,
- "growingDegreeDaysBase5": 0.7918507893880218,
- "growingDegreeDaysBase10": 0.5835174560546884,
- "thickness": 5595.2099609375
}, - {
- "apparentTemperature": 19.798459891507157,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.855554199218773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 38.70000076293945,
- "valid": "2023-09-14T05:00:00+00:00",
- "localTime": "2023-09-14T15:00:00+10:00",
- "deltaT": 8.575705802479852,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.661553955078148,
- "windDirCardinal": "N",
- "windDirDegree": 354.89984864018174,
- "windSpeed": 18.444124411405664,
- "windGust": 30.09696075439453,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 354.89984864018174,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.9858980814615894,
- "growingDegreeDaysBase5": 0.7775647481282562,
- "growingDegreeDaysBase10": 0.5692314147949228,
- "thickness": 5594.348709106445
}, - {
- "apparentTemperature": 19.832863415372568,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 9.822564697265648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 43.099998474121094,
- "valid": "2023-09-14T06:00:00+00:00",
- "localTime": "2023-09-14T16:00:00+10:00",
- "deltaT": 7.755995715148632,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.001000976562523,
- "windDirCardinal": "N",
- "windDirDegree": 1.1758618483416967,
- "windSpeed": 16.2151133405168,
- "windGust": 30.90920042037964,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 1.1758618483416967,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.958375040690105,
- "growingDegreeDaysBase5": 0.7500417073567718,
- "growingDegreeDaysBase10": 0.5417083740234384,
- "thickness": 5594.811279296875
}, - {
- "apparentTemperature": 18.52289308341396,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 10.600976562500023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 49.900001525878906,
- "valid": "2023-09-14T07:00:00+00:00",
- "localTime": "2023-09-14T17:00:00+10:00",
- "deltaT": 6.512538569017803,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 21.422570800781273,
- "windDirCardinal": "NNE",
- "windDirDegree": 12.521849889745468,
- "windSpeed": 15.897680988722882,
- "windGust": 36.979558525085444,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 12.521849889745468,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.8926071166992197,
- "growingDegreeDaysBase5": 0.6842737833658863,
- "growingDegreeDaysBase10": 0.47594045003255303,
- "thickness": 5595.500671386719
}, - {
- "apparentTemperature": 17.07062415090416,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 10.658044433593773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 56.5,
- "valid": "2023-09-14T08:00:00+00:00",
- "localTime": "2023-09-14T18:00:00+10:00",
- "deltaT": 5.3911404479579765,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.557855224609398,
- "windDirCardinal": "NNE",
- "windDirDegree": 25.073812017657545,
- "windSpeed": 13.979858914369556,
- "windGust": 41.86777227401733,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 25.073812017657545,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.8149106343587249,
- "growingDegreeDaysBase5": 0.6065773010253915,
- "growingDegreeDaysBase10": 0.3982439676920582,
- "thickness": 5598.5899658203125
}, - {
- "apparentTemperature": 16.08591618339566,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 3.200000047683716,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 10.533898925781273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 60.20000076293945,
- "valid": "2023-09-14T09:00:00+00:00",
- "localTime": "2023-09-14T19:00:00+10:00",
- "deltaT": 4.804040490297346,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.419671630859398,
- "windDirCardinal": "NNE",
- "windDirDegree": 31.2104627213713,
- "windSpeed": 13.02838470485348,
- "windGust": 50.695977172851556,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 31.2104627213713,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7674863179524749,
- "growingDegreeDaysBase5": 0.5591529846191415,
- "growingDegreeDaysBase10": 0.3508196512858082,
- "thickness": 5602.48258972168
}, - {
- "apparentTemperature": 15.100233308269818,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0.800000011920929,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 10.044641113281273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 60.79999923706055,
- "valid": "2023-09-14T10:00:00+00:00",
- "localTime": "2023-09-14T20:00:00+10:00",
- "deltaT": 4.655177914711157,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.656793212890648,
- "windDirCardinal": "NNE",
- "windDirDegree": 29.158810566377397,
- "windSpeed": 13.369627344214443,
- "windGust": 55.422794036865234,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 29.158810566377397,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7356997172037769,
- "growingDegreeDaysBase5": 0.5273663838704437,
- "growingDegreeDaysBase10": 0.3190330505371103,
- "thickness": 5600.471527099609
}, - {
- "apparentTemperature": 14.899900447615298,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 1.899999976158142,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 9.009881591796898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 55.70000076293945,
- "valid": "2023-09-14T11:00:00+00:00",
- "localTime": "2023-09-14T21:00:00+10:00",
- "deltaT": 5.305641308521306,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.950006103515648,
- "windDirCardinal": "NNE",
- "windDirDegree": 21.20111308226282,
- "windSpeed": 14.518189826835384,
- "windGust": 66.22649574279785,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 21.20111308226282,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7479169209798187,
- "growingDegreeDaysBase5": 0.5395835876464853,
- "growingDegreeDaysBase10": 0.33125025431315197,
- "thickness": 5600.321426391602
}, - {
- "apparentTemperature": 14.99708906284702,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 1.7999999523162842,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.356317138671898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 49.70000076293945,
- "valid": "2023-09-14T12:00:00+00:00",
- "localTime": "2023-09-14T22:00:00+10:00",
- "deltaT": 6.194417390517309,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.975061035156273,
- "windDirCardinal": "N",
- "windDirDegree": 7.7983284718085315,
- "windSpeed": 18.34655767891594,
- "windGust": 67.10126495361328,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 7.7983284718085315,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7906275431315113,
- "growingDegreeDaysBase5": 0.582294209798178,
- "growingDegreeDaysBase10": 0.37396087646484466,
- "thickness": 5595.447555541992
}, - {
- "apparentTemperature": 13.98475964284011,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.577478027343773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51.599998474121094,
- "valid": "2023-09-14T13:00:00+00:00",
- "localTime": "2023-09-14T23:00:00+10:00",
- "deltaT": 5.916412578582715,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.731256103515648,
- "windDirCardinal": "N",
- "windDirDegree": 6.4364237397067825,
- "windSpeed": 22.71545370913429,
- "windGust": 68.94895935058594,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 6.4364237397067825,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7804690043131519,
- "growingDegreeDaysBase5": 0.5721356709798187,
- "growingDegreeDaysBase10": 0.3638023376464853,
- "thickness": 5591.447448730469
}, - {
- "apparentTemperature": 13.46934638734312,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.737542724609398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 53.29999923706055,
- "valid": "2023-09-14T14:00:00+00:00",
- "localTime": "2023-09-15T00:00:00+10:00",
- "deltaT": 5.6527001505411185,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.356317138671898,
- "windDirCardinal": "N",
- "windDirDegree": 6.116580083864648,
- "windSpeed": 23.608045752136164,
- "windGust": 71.55633258819579,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 6.116580083864648,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7648465474446624,
- "growingDegreeDaysBase5": 0.556513214111329,
- "growingDegreeDaysBase10": 0.3481798807779957,
- "thickness": 5588.585540771484
}, - {
- "apparentTemperature": 13.115536729229134,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 99.4000015258789,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.393762207031273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51.900001525878906,
- "valid": "2023-09-14T15:00:00+00:00",
- "localTime": "2023-09-15T01:00:00+10:00",
- "deltaT": 5.833517589858811,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.393792724609398,
- "windDirCardinal": "N",
- "windDirDegree": 8.146781237678809,
- "windSpeed": 25.163649052916888,
- "windGust": 72.9360523223877,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 8.146781237678809,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.7664080301920582,
- "growingDegreeDaysBase5": 0.5580746968587249,
- "growingDegreeDaysBase10": 0.34974136352539154,
- "thickness": 5591.387908935547
}, - {
- "apparentTemperature": 12.77185032195085,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 7.895288085937523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 50.599998474121094,
- "valid": "2023-09-14T16:00:00+00:00",
- "localTime": "2023-09-15T02:00:00+10:00",
- "deltaT": 5.978298866680369,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.251428222656273,
- "windDirCardinal": "N",
- "windDirDegree": 6.751870768066411,
- "windSpeed": 25.572503146544683,
- "windGust": 73.8420639038086,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 6.751870768066411,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.7604761759440113,
- "growingDegreeDaysBase5": 0.552142842610678,
- "growingDegreeDaysBase10": 0.34380950927734466,
- "thickness": 5584.362350463867
}, - {
- "apparentTemperature": 12.153167260600242,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 2.200000047683716,
- "cloudCoverTotal": 52.900001525878906,
- "cloudCoverUpper": 52.900001525878906,
- "dewPoint": 7.409204101562523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51,
- "valid": "2023-09-14T17:00:00+00:00",
- "localTime": "2023-09-15T03:00:00+10:00",
- "deltaT": 5.8482908771571935,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.666070556640648,
- "windDirCardinal": "N",
- "windDirDegree": 359.7135300592866,
- "windSpeed": 25.232359928339932,
- "windGust": 80.09012947082519,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 359.7135300592866,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.7360862731933603,
- "growingDegreeDaysBase5": 0.5277529398600269,
- "growingDegreeDaysBase10": 0.31941960652669366,
- "thickness": 5572.506484985352
}, - {
- "apparentTemperature": 11.489614501019357,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 12.199999809265137,
- "cloudCoverTotal": 12.199999809265137,
- "cloudCoverUpper": 0.6000000238418579,
- "dewPoint": 6.807458496093773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51.099998474121094,
- "valid": "2023-09-14T18:00:00+00:00",
- "localTime": "2023-09-15T04:00:00+10:00",
- "deltaT": 5.738895259083257,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 16.950006103515648,
- "windDirCardinal": "N",
- "windDirDegree": 353.15358301828246,
- "windSpeed": 24.223701013366036,
- "windGust": 81.91264869689941,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 353.15358301828246,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7062502543131519,
- "growingDegreeDaysBase5": 0.49791692097981866,
- "growingDegreeDaysBase10": 0.2895835876464853,
- "thickness": 5571.599411010742
}, - {
- "apparentTemperature": 10.557542700812274,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 75.4000015258789,
- "cloudCoverTotal": 75.4000015258789,
- "cloudCoverUpper": 0,
- "dewPoint": 6.375543212890648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 52.599998474121094,
- "valid": "2023-09-14T19:00:00+00:00",
- "localTime": "2023-09-15T05:00:00+10:00",
- "deltaT": 5.432118457909329,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.972711181640648,
- "windDirCardinal": "N",
- "windDirDegree": 358.8427710911959,
- "windSpeed": 23.445782502146493,
- "windGust": 67.05637121200562,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 358.8427710911959,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6655296325683603,
- "growingDegreeDaysBase5": 0.45719629923502697,
- "growingDegreeDaysBase10": 0.24886296590169366,
- "thickness": 5565.53254699707
}, - {
- "apparentTemperature": 11.082282811832659,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 86.30000305175781,
- "dewPoint": 5.535119628906273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51.30000305175781,
- "valid": "2023-09-14T20:00:00+00:00",
- "localTime": "2023-09-15T06:00:00+10:00",
- "deltaT": 5.5184949411126265,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.492547607421898,
- "windDirCardinal": "N",
- "windDirDegree": 352.39660952134096,
- "windSpeed": 17.40156043221305,
- "windGust": 54.08516601562499,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 352.39660952134096,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6455228169759124,
- "growingDegreeDaysBase5": 0.43718948364257904,
- "growingDegreeDaysBase10": 0.22885615030924572,
- "thickness": 5558.681610107422
}, - {
- "apparentTemperature": 10.620586009932488,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 98.0999984741211,
- "cloudCoverTotal": 98.0999984741211,
- "cloudCoverUpper": 85.30000305175781,
- "dewPoint": 5.560388183593773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 54,
- "valid": "2023-09-14T21:00:00+00:00",
- "localTime": "2023-09-15T07:00:00+10:00",
- "deltaT": 5.119958449404825,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.760400390625023,
- "windDirCardinal": "N",
- "windDirDegree": 350.40960987256216,
- "windSpeed": 16.076168545751596,
- "windGust": 43.51543601989745,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 350.40960987256216,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6150166829427093,
- "growingDegreeDaysBase5": 0.4066833496093759,
- "growingDegreeDaysBase10": 0.1983500162760426,
- "thickness": 5554.698516845703
}, - {
- "apparentTemperature": 11.133128829316519,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 73.4000015258789,
- "cloudCoverTotal": 73.4000015258789,
- "cloudCoverUpper": 0,
- "dewPoint": 6.092553710937523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 54.70000076293945,
- "valid": "2023-09-14T22:00:00+00:00",
- "localTime": "2023-09-15T08:00:00+10:00",
- "deltaT": 5.079471757063121,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.066339111328148,
- "windDirCardinal": "N",
- "windDirDegree": 349.22953316070914,
- "windSpeed": 15.52189871790654,
- "windGust": 37.8287714767456,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 349.22953316070914,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6277641296386728,
- "growingDegreeDaysBase5": 0.41943079630533947,
- "growingDegreeDaysBase10": 0.21109746297200616,
- "thickness": 5551.039505004883
}, - {
- "apparentTemperature": 13.97433680427724,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 10.300000190734863,
- "cloudCoverTotal": 10.300000190734863,
- "cloudCoverUpper": 0,
- "dewPoint": 5.701470947265648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 45.79999923706055,
- "valid": "2023-09-14T23:00:00+00:00",
- "localTime": "2023-09-15T09:00:00+10:00",
- "deltaT": 6.4704471975483955,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.493310546875023,
- "windDirCardinal": "NNW",
- "windDirDegree": 336.06467351948095,
- "windSpeed": 13.02884354825022,
- "windGust": 18.366193199157713,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 336.06467351948095,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7288879394531259,
- "growingDegreeDaysBase5": 0.5205546061197925,
- "growingDegreeDaysBase10": 0.3122212727864593,
- "thickness": 5549.077819824219
}, - {
- "apparentTemperature": 16.452132803466274,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 8.300000190734863,
- "cloudCoverTotal": 20.100000381469727,
- "cloudCoverUpper": 20.100000381469727,
- "dewPoint": 5.340295410156273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 39.400001525878906,
- "valid": "2023-09-15T00:00:00+00:00",
- "localTime": "2023-09-15T10:00:00+10:00",
- "deltaT": 7.651229097532038,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.397485351562523,
- "windDirCardinal": "NW",
- "windDirDegree": 318.34855213289745,
- "windSpeed": 9.599912440793952,
- "windGust": 14.40618495941162,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 318.34855213289745,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.808228556315105,
- "growingDegreeDaysBase5": 0.5998952229817718,
- "growingDegreeDaysBase10": 0.3915618896484384,
- "thickness": 5552.203033447266
}, - {
- "apparentTemperature": 18.475637223182986,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 1.600000023841858,
- "cloudCoverTotal": 99.4000015258789,
- "cloudCoverUpper": 99.4000015258789,
- "dewPoint": 4.708337402343773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 33.79999923706055,
- "valid": "2023-09-15T01:00:00+00:00",
- "localTime": "2023-09-15T11:00:00+10:00",
- "deltaT": 8.856253672239458,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 21.195306396484398,
- "windDirCardinal": "NW",
- "windDirDegree": 309.12768974429594,
- "windSpeed": 7.815173422008309,
- "windGust": 18.816261863708494,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 309.12768974429594,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.8831377665201832,
- "growingDegreeDaysBase5": 0.6748044331868499,
- "growingDegreeDaysBase10": 0.46647109985351654,
- "thickness": 5558.516021728516
}, - {
- "apparentTemperature": 19.8334691536099,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 70.5999984741211,
- "cloudCoverUpper": 70.5999984741211,
- "dewPoint": 3.1892028808593977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 27.600000381469727,
- "valid": "2023-09-15T02:00:00+00:00",
- "localTime": "2023-09-15T12:00:00+10:00",
- "deltaT": 10.304467092053155,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 22.817132568359398,
- "windDirCardinal": "WNW",
- "windDirDegree": 299.0432570969846,
- "windSpeed": 7.751384900730871,
- "windGust": 26.5353528213501,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 299.0432570969846,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.9507138570149749,
- "growingDegreeDaysBase5": 0.7423805236816415,
- "growingDegreeDaysBase10": 0.5340471903483082,
- "thickness": 5566.0281982421875
}, - {
- "apparentTemperature": 19.8413443867747,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 86.80000305175781,
- "cloudCoverUpper": 86.80000305175781,
- "dewPoint": 2.1143127441406477,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 24,
- "valid": "2023-09-15T03:00:00+00:00",
- "localTime": "2023-09-15T13:00:00+10:00",
- "deltaT": 11.281277321958228,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.841882324218773,
- "windDirCardinal": "NW",
- "windDirDegree": 306.39577959155656,
- "windSpeed": 12.00692242548246,
- "windGust": 28.134500942230225,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 306.39577959155656,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.9934117635091155,
- "growingDegreeDaysBase5": 0.7850784301757822,
- "growingDegreeDaysBase10": 0.5767450968424488,
- "thickness": 5570.309173583984
}, - {
- "apparentTemperature": 20.111354762926883,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 24.200000762939453,
- "cloudCoverUpper": 24.200000762939453,
- "dewPoint": 1.8500000000000227,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 23.100000381469727,
- "valid": "2023-09-15T04:00:00+00:00",
- "localTime": "2023-09-15T14:00:00+10:00",
- "deltaT": 11.566497335527519,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 24.183160400390648,
- "windDirCardinal": "WNW",
- "windDirDegree": 300.8407705767585,
- "windSpeed": 12.16204693238794,
- "windGust": 27.800398979187012,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 300.8407705767585,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 1.0076316833496102,
- "growingDegreeDaysBase5": 0.7992983500162769,
- "growingDegreeDaysBase10": 0.5909650166829437,
- "thickness": 5570.51708984375
}, - {
- "apparentTemperature": 20.248855764707756,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 9.699999809265137,
- "cloudCoverUpper": 9.699999809265137,
- "dewPoint": 2.5050903320312727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 24.5,
- "valid": "2023-09-15T05:00:00+00:00",
- "localTime": "2023-09-15T15:00:00+10:00",
- "deltaT": 11.226151690971768,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 24.005090332031273,
- "windDirCardinal": "WNW",
- "windDirDegree": 302.09118070453826,
- "windSpeed": 11.121129481104465,
- "windGust": 23.415735340118406,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 302.09118070453826,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 1.0002120971679695,
- "growingDegreeDaysBase5": 0.7918787638346363,
- "growingDegreeDaysBase10": 0.583545430501303,
- "thickness": 5574.115341186523
}, - {
- "apparentTemperature": 19.24991770031097,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 46.20000076293945,
- "cloudCoverUpper": 46.20000076293945,
- "dewPoint": 3.3584838867187727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 27.100000381469727,
- "valid": "2023-09-15T06:00:00+00:00",
- "localTime": "2023-09-15T16:00:00+10:00",
- "deltaT": 10.547811024502021,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.388543701171898,
- "windDirCardinal": "NW",
- "windDirDegree": 311.36821260055694,
- "windSpeed": 13.903208135679952,
- "windGust": 23.835393161773684,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 311.36821260055694,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.9745226542154957,
- "growingDegreeDaysBase5": 0.7661893208821624,
- "growingDegreeDaysBase10": 0.557855987548829,
- "thickness": 5577.465545654297
}, - {
- "apparentTemperature": 18.438268651713763,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 99.69999694824219,
- "cloudCoverUpper": 99.69999694824219,
- "dewPoint": 5.235009765625023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 33.900001525878906,
- "valid": "2023-09-15T07:00:00+00:00",
- "localTime": "2023-09-15T17:00:00+10:00",
- "deltaT": 9.003496624646488,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 21.934991455078148,
- "windDirCardinal": "NW",
- "windDirDegree": 306.6104778839607,
- "windSpeed": 12.521419716789483,
- "windGust": 23.139346618652343,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 306.6104778839607,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.9139579772949228,
- "growingDegreeDaysBase5": 0.7056246439615894,
- "growingDegreeDaysBase10": 0.49729131062825616,
- "thickness": 5577.9024658203125
}, - {
- "apparentTemperature": 16.524374113084782,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 45.79999923706055,
- "cloudCoverUpper": 45.79999923706055,
- "dewPoint": 6.634973144531273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 43.099998474121094,
- "valid": "2023-09-15T08:00:00+00:00",
- "localTime": "2023-09-15T18:00:00+10:00",
- "deltaT": 7.144871799006982,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.434991455078148,
- "windDirCardinal": "WNW",
- "windDirDegree": 301.73871446842224,
- "windSpeed": 10.87045929435561,
- "windGust": 30.15399610519409,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 301.73871446842224,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.8097913106282562,
- "growingDegreeDaysBase5": 0.6014579772949228,
- "growingDegreeDaysBase10": 0.39312464396158947,
- "thickness": 5577.632781982422
}, - {
- "apparentTemperature": 15.152194469636427,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 15.600000381469727,
- "cloudCoverUpper": 15.600000381469727,
- "dewPoint": 7.450036621093773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51.29999923706055,
- "valid": "2023-09-15T09:00:00+00:00",
- "localTime": "2023-09-15T19:00:00+10:00",
- "deltaT": 5.809086796237338,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.650018310546898,
- "windDirCardinal": "NW",
- "windDirDegree": 318.8497787737297,
- "windSpeed": 9.811163271426508,
- "windGust": 29.304117450714113,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 318.8497787737297,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7354174296061207,
- "growingDegreeDaysBase5": 0.5270840962727874,
- "growingDegreeDaysBase10": 0.31875076293945404,
- "thickness": 5576.350738525391
}, - {
- "apparentTemperature": 13.91808666160781,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 4.900000095367432,
- "cloudCoverUpper": 4.900000095367432,
- "dewPoint": 7.858209228515648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 57.400001525878906,
- "valid": "2023-09-15T10:00:00+00:00",
- "localTime": "2023-09-15T20:00:00+10:00",
- "deltaT": 4.921420909762247,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 16.360284423828148,
- "windDirCardinal": "NNW",
- "windDirDegree": 340.0179447325609,
- "windSpeed": 10.07257979924688,
- "windGust": 27.754989738464353,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 340.0179447325609,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6816785176595062,
- "growingDegreeDaysBase5": 0.4733451843261728,
- "growingDegreeDaysBase10": 0.26501185099283947,
- "thickness": 5577.956024169922
}, - {
- "apparentTemperature": 13.179510894814662,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 5,
- "cloudCoverUpper": 5,
- "dewPoint": 7.963098144531273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 61.900001525878906,
- "valid": "2023-09-15T11:00:00+00:00",
- "localTime": "2023-09-15T21:00:00+10:00",
- "deltaT": 4.296635297347709,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.263116455078148,
- "windDirCardinal": "NNW",
- "windDirDegree": 344.0081056446352,
- "windSpeed": 8.326215530993943,
- "windGust": 23.770851917266846,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 344.0081056446352,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6359631856282562,
- "growingDegreeDaysBase5": 0.4276298522949228,
- "growingDegreeDaysBase10": 0.21929651896158947,
- "thickness": 5577.813278198242
}, - {
- "apparentTemperature": 12.445537880683773,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 3.200000047683716,
- "cloudCoverUpper": 3.200000047683716,
- "dewPoint": 7.907312011718773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 65.19999694824219,
- "valid": "2023-09-15T12:00:00+00:00",
- "localTime": "2023-09-15T22:00:00+10:00",
- "deltaT": 3.8573389389305994,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.407312011718773,
- "windDirCardinal": "NNW",
- "windDirDegree": 342.2338635007859,
- "windSpeed": 7.6425011715955735,
- "windGust": 19.868460273742674,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 342.2338635007859,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6003046671549488,
- "growingDegreeDaysBase5": 0.39197133382161553,
- "growingDegreeDaysBase10": 0.1836380004882822,
- "thickness": 5578.454055786133
}, - {
- "apparentTemperature": 11.813458367434446,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.850030517578148,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 67.30000305175781,
- "valid": "2023-09-15T13:00:00+00:00",
- "localTime": "2023-09-15T23:00:00+10:00",
- "deltaT": 3.578930585724235,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.749993896484398,
- "windDirCardinal": "NNW",
- "windDirDegree": 344.824747282858,
- "windSpeed": 7.3168449633175925,
- "windGust": 18.075795364379882,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 344.824747282858,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5729164123535165,
- "growingDegreeDaysBase5": 0.3645830790201832,
- "growingDegreeDaysBase10": 0.1562497456868499,
- "thickness": 5580.515594482422
}, - {
- "apparentTemperature": 11.433588184120929,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.649987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 69.30000305175781,
- "valid": "2023-09-15T14:00:00+00:00",
- "localTime": "2023-09-16T00:00:00+10:00",
- "deltaT": 3.32931386403064,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.231286621093773,
- "windDirCardinal": "NNW",
- "windDirDegree": 343.8106418171604,
- "windSpeed": 6.522995844728126,
- "windGust": 13.764023780822752,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 343.8106418171604,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5513036092122405,
- "growingDegreeDaysBase5": 0.34297027587890716,
- "growingDegreeDaysBase10": 0.13463694254557385,
- "thickness": 5580.7742919921875
}, - {
- "apparentTemperature": 10.76933865860579,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.649987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 71.5999984741211,
- "valid": "2023-09-15T15:00:00+00:00",
- "localTime": "2023-09-16T01:00:00+10:00",
- "deltaT": 3.044326314820797,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.550012207031273,
- "windDirCardinal": "N",
- "windDirDegree": 355.69748286782726,
- "windSpeed": 6.224536042458212,
- "windGust": 10.82508144378662,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 355.69748286782726,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5229171752929697,
- "growingDegreeDaysBase5": 0.31458384195963635,
- "growingDegreeDaysBase10": 0.10625050862630303,
- "thickness": 5581.456130981445
}, - {
- "apparentTemperature": 10.046524453729543,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.551110839843773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 74.30000305175781,
- "valid": "2023-09-15T16:00:00+00:00",
- "localTime": "2023-09-16T02:00:00+10:00",
- "deltaT": 2.7330516467848316,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.971307373046898,
- "windDirCardinal": "N",
- "windDirDegree": 6.124061730315745,
- "windSpeed": 6.947932339867965,
- "windGust": 12.961219310760496,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 6.124061730315745,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.49880447387695404,
- "growingDegreeDaysBase5": 0.2904711405436207,
- "growingDegreeDaysBase10": 0.0821378072102874,
- "thickness": 5582.337966918945
}, - {
- "apparentTemperature": 9.20243251817506,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.223748779296898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 75.30000305175781,
- "valid": "2023-09-15T17:00:00+00:00",
- "localTime": "2023-09-16T03:00:00+10:00",
- "deltaT": 2.6021778919449368,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.423791503906273,
- "windDirCardinal": "N",
- "windDirDegree": 9.395664749369175,
- "windSpeed": 8.076558775170701,
- "windGust": 16.58736763000488,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 9.395664749369175,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.47599131266276135,
- "growingDegreeDaysBase5": 0.26765797932942803,
- "growingDegreeDaysBase10": 0.059324645996094695,
- "thickness": 5583.621429443359
}, - {
- "apparentTemperature": 8.507913224039068,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 6.412896728515648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 73,
- "valid": "2023-09-15T18:00:00+00:00",
- "localTime": "2023-09-16T04:00:00+10:00",
- "deltaT": 2.810436539825483,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.045831298828148,
- "windDirCardinal": "N",
- "windDirDegree": 10.176596328348026,
- "windSpeed": 8.765597260289546,
- "windGust": 18.741252708435056,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 10.176596328348026,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.46024297078450616,
- "growingDegreeDaysBase5": 0.2519096374511728,
- "growingDegreeDaysBase10": 0.043576304117839484,
- "thickness": 5583.443344116211
}, - {
- "apparentTemperature": 8.005421203612135,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 5.699365234375023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70.5999984741211,
- "valid": "2023-09-15T19:00:00+00:00",
- "localTime": "2023-09-16T05:00:00+10:00",
- "deltaT": 3.0337714839427665,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 10.840997314453148,
- "windDirCardinal": "N",
- "windDirDegree": 9.482923135782244,
- "windSpeed": 9.548258501352986,
- "windGust": 23.77934726715088,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 9.482923135782244,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4517082214355478,
- "growingDegreeDaysBase5": 0.24337488810221447,
- "growingDegreeDaysBase10": 0.035041554768881156,
- "thickness": 5583.371810913086
}, - {
- "apparentTemperature": 7.304358280794732,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 5.033044433593773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 68.4000015258789,
- "valid": "2023-09-15T20:00:00+00:00",
- "localTime": "2023-09-16T06:00:00+10:00",
- "deltaT": 3.225626687978645,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 10.527337646484398,
- "windDirCardinal": "N",
- "windDirDegree": 8.564453622742235,
- "windSpeed": 10.745572533205952,
- "windGust": 27.40156316757202,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 8.564453622742235,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.43863906860351654,
- "growingDegreeDaysBase5": 0.23030573527018322,
- "growingDegreeDaysBase10": 0.021972401936849906,
- "thickness": 5583.704299926758
}, - {
- "apparentTemperature": 7.59388094880795,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 4.712426757812523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 65,
- "valid": "2023-09-15T21:00:00+00:00",
- "localTime": "2023-09-16T07:00:00+10:00",
- "deltaT": 3.5930101075832432,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.009606933593773,
- "windDirCardinal": "N",
- "windDirDegree": 8.08934794785435,
- "windSpeed": 11.460582180106426,
- "windGust": 30.127860488891603,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 8.08934794785435,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.45873362223307385,
- "growingDegreeDaysBase5": 0.25040028889974053,
- "growingDegreeDaysBase10": 0.042066955566407195,
- "thickness": 5583.981292724609
}, - {
- "apparentTemperature": 9.914194817299027,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 4.909631347656273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 55.5,
- "valid": "2023-09-15T22:00:00+00:00",
- "localTime": "2023-09-16T08:00:00+10:00",
- "deltaT": 4.81990398819047,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.623864746093773,
- "windDirCardinal": "N",
- "windDirDegree": 1.1585443412806882,
- "windSpeed": 13.171617042635736,
- "windGust": 29.701340675354004,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 1.1585443412806882,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5676610310872405,
- "growingDegreeDaysBase5": 0.35932769775390716,
- "growingDegreeDaysBase10": 0.15099436442057385,
- "thickness": 5585.24609375
}, - {
- "apparentTemperature": 13.214074511616019,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 5.208489990234398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 45.70000076293945,
- "valid": "2023-09-15T23:00:00+00:00",
- "localTime": "2023-09-16T09:00:00+10:00",
- "deltaT": 6.399284956596915,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 16.967004394531273,
- "windDirCardinal": "N",
- "windDirDegree": 349.5875162948006,
- "windSpeed": 13.692400572070735,
- "windGust": 26.16191997528076,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 349.5875162948006,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.706958516438803,
- "growingDegreeDaysBase5": 0.49862518310546966,
- "growingDegreeDaysBase10": 0.29029184977213635,
- "thickness": 5587.620330810547
}, - {
- "apparentTemperature": 16.43760801110216,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 5.211022949218773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 37.60000228881836,
- "valid": "2023-09-16T00:00:00+00:00",
- "localTime": "2023-09-16T10:00:00+10:00",
- "deltaT": 8.03948907978349,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 20.065332031250023,
- "windDirCardinal": "NW",
- "windDirDegree": 322.57503757903396,
- "windSpeed": 13.028451255790765,
- "windGust": 28.566406116485595,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 322.57503757903396,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.8360555013020843,
- "growingDegreeDaysBase5": 0.6277221679687509,
- "growingDegreeDaysBase10": 0.4193888346354176,
- "thickness": 5591.87629699707
}, - {
- "apparentTemperature": 18.324323462953398,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 4.612145996093773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 31.200000762939453,
- "valid": "2023-09-16T01:00:00+00:00",
- "localTime": "2023-09-16T11:00:00+10:00",
- "deltaT": 9.564312081441926,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 22.412133789062523,
- "windDirCardinal": "NW",
- "windDirDegree": 307.68318439831216,
- "windSpeed": 14.767102519811361,
- "windGust": 35.714440956115716,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 307.68318439831216,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.933838907877605,
- "growingDegreeDaysBase5": 0.7255055745442718,
- "growingDegreeDaysBase10": 0.5171722412109384,
- "thickness": 5598.899566650391
}, - {
- "apparentTemperature": 18.831857738976115,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 4.512170410156273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 28.700000762939453,
- "valid": "2023-09-16T02:00:00+00:00",
- "localTime": "2023-09-16T12:00:00+10:00",
- "deltaT": 10.295710327183269,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.574273681640648,
- "windDirCardinal": "NW",
- "windDirDegree": 306.34854331460605,
- "windSpeed": 17.94418078710325,
- "windGust": 37.73472902297973,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 306.34854331460605,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.9822614034016937,
- "growingDegreeDaysBase5": 0.7739280700683603,
- "growingDegreeDaysBase10": 0.5655947367350269,
- "thickness": 5604.017501831055
}, - {
- "apparentTemperature": 19.280085019980138,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 5.412133789062523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 29.600000381469727,
- "valid": "2023-09-16T03:00:00+00:00",
- "localTime": "2023-09-16T13:00:00+10:00",
- "deltaT": 10.28737513199438,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 24.212121582031273,
- "windDirCardinal": "NW",
- "windDirDegree": 313.15153199558813,
- "windSpeed": 19.930615731548297,
- "windGust": 40.58701978683471,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 313.15153199558813,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.008838399251303,
- "growingDegreeDaysBase5": 0.8005050659179697,
- "growingDegreeDaysBase10": 0.5921717325846363,
- "thickness": 5608.944747924805
}, - {
- "apparentTemperature": 19.132780164170544,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 5.812127685546898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 29.799999237060547,
- "valid": "2023-09-16T04:00:00+00:00",
- "localTime": "2023-09-16T14:00:00+10:00",
- "deltaT": 10.323751403582037,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 24.512139892578148,
- "windDirCardinal": "NW",
- "windDirDegree": 316.4237705123386,
- "windSpeed": 22.609174589397696,
- "windGust": 42.25092252731322,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 316.4237705123386,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.0213391621907562,
- "growingDegreeDaysBase5": 0.8130058288574228,
- "growingDegreeDaysBase10": 0.6046724955240894,
- "thickness": 5613.3607177734375
}, - {
- "apparentTemperature": 18.92988523375051,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 6.012139892578148,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 30.5,
- "valid": "2023-09-16T05:00:00+00:00",
- "localTime": "2023-09-16T15:00:00+10:00",
- "deltaT": 10.165037351721345,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 24.399499511718773,
- "windDirCardinal": "NW",
- "windDirDegree": 306.02638537527605,
- "windSpeed": 23.3313120282601,
- "windGust": 41.884283695220944,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 306.02638537527605,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.016645812988282,
- "growingDegreeDaysBase5": 0.8083124796549488,
- "growingDegreeDaysBase10": 0.5999791463216155,
- "thickness": 5614.404113769531
}, - {
- "apparentTemperature": 19.073950742750583,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 6.974267578125023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 34.099998474121094,
- "valid": "2023-09-16T06:00:00+00:00",
- "localTime": "2023-09-16T16:00:00+10:00",
- "deltaT": 9.344157552369957,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.636437988281273,
- "windDirCardinal": "WNW",
- "windDirDegree": 298.5128070406184,
- "windSpeed": 19.739538502172113,
- "windGust": 40.27117864608764,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 298.5128070406184,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.984851582845053,
- "growingDegreeDaysBase5": 0.7765182495117197,
- "growingDegreeDaysBase10": 0.5681849161783863,
- "thickness": 5613.291687011719
}, - {
- "apparentTemperature": 18.439628725647566,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 8.050012207031273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 40.099998474121094,
- "valid": "2023-09-16T07:00:00+00:00",
- "localTime": "2023-09-16T17:00:00+10:00",
- "deltaT": 8.073053893276317,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 22.187860107421898,
- "windDirCardinal": "WNW",
- "windDirDegree": 300.8969328129987,
- "windSpeed": 16.855402130189354,
- "windGust": 40.65763750076294,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 300.8969328129987,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.924494171142579,
- "growingDegreeDaysBase5": 0.7161608378092457,
- "growingDegreeDaysBase10": 0.5078275044759124,
- "thickness": 5611.119125366211
}, - {
- "apparentTemperature": 16.82689322491529,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 8.041955566406273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 45.29999923706055,
- "valid": "2023-09-16T08:00:00+00:00",
- "localTime": "2023-09-16T18:00:00+10:00",
- "deltaT": 6.977034570256297,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 20.249993896484398,
- "windDirCardinal": "NW",
- "windDirDegree": 314.29045207660977,
- "windSpeed": 15.242665998845556,
- "windGust": 38.5470025062561,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 314.29045207660977,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.8437497456868499,
- "growingDegreeDaysBase5": 0.6354164123535165,
- "growingDegreeDaysBase10": 0.4270830790201832,
- "thickness": 5610.9859619140625
}, - {
- "apparentTemperature": 15.625196263174445,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0.30000001192092896,
- "cloudCoverUpper": 0.30000001192092896,
- "dewPoint": 8.041955566406273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 49.20000076293945,
- "valid": "2023-09-16T09:00:00+00:00",
- "localTime": "2023-09-16T19:00:00+10:00",
- "deltaT": 6.25461955411015,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.941949462890648,
- "windDirCardinal": "NW",
- "windDirDegree": 324.1090627690966,
- "windSpeed": 14.722622732699792,
- "windGust": 40.7077324104309,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 324.1090627690966,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7892478942871103,
- "growingDegreeDaysBase5": 0.5809145609537769,
- "growingDegreeDaysBase10": 0.37258122762044366,
- "thickness": 5611.024917602539
}, - {
- "apparentTemperature": 14.917578072856752,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 8.241937255859398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 53,
- "valid": "2023-09-16T10:00:00+00:00",
- "localTime": "2023-09-16T20:00:00+10:00",
- "deltaT": 5.637363754911188,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.941979980468773,
- "windDirCardinal": "NW",
- "windDirDegree": 326.00987866458615,
- "windSpeed": 13.43613553419699,
- "windGust": 42.721758613586424,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 326.00987866458615,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7475824991861988,
- "growingDegreeDaysBase5": 0.5392491658528655,
- "growingDegreeDaysBase10": 0.33091583251953216,
- "thickness": 5608.970840454102
}, - {
- "apparentTemperature": 14.404804277899682,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 8.149987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 54.79999923706055,
- "valid": "2023-09-16T11:00:00+00:00",
- "localTime": "2023-09-16T21:00:00+10:00",
- "deltaT": 5.344806797714533,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.358056640625023,
- "windDirCardinal": "NW",
- "windDirDegree": 317.6409103776998,
- "windSpeed": 13.00824431865511,
- "windGust": 41.403154621124266,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 317.6409103776998,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7232523600260425,
- "growingDegreeDaysBase5": 0.5149190266927093,
- "growingDegreeDaysBase10": 0.3065856933593759,
- "thickness": 5604.127105712891
}, - {
- "apparentTemperature": 13.902328766000608,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.928430175781273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 55.900001525878906,
- "valid": "2023-09-16T12:00:00+00:00",
- "localTime": "2023-09-16T22:00:00+10:00",
- "deltaT": 5.152090849994629,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 16.841943359375023,
- "windDirCardinal": "NW",
- "windDirDegree": 307.3762415046174,
- "windSpeed": 12.704929406892942,
- "windGust": 38.50515541076659,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 307.3762415046174,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7017476399739593,
- "growingDegreeDaysBase5": 0.4934143066406259,
- "growingDegreeDaysBase10": 0.2850809733072926,
- "thickness": 5600.016098022461
}, - {
- "apparentTemperature": 13.303411672028812,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.936303710937523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 58.20000076293945,
- "valid": "2023-09-16T13:00:00+00:00",
- "localTime": "2023-09-16T23:00:00+10:00",
- "deltaT": 4.802883344094312,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 16.122521972656273,
- "windDirCardinal": "NW",
- "windDirDegree": 303.9333286014447,
- "windSpeed": 11.987592377998299,
- "windGust": 38.52982778549194,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 303.9333286014447,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.671771748860678,
- "growingDegreeDaysBase5": 0.46343841552734466,
- "growingDegreeDaysBase10": 0.25510508219401135,
- "thickness": 5596.3004150390625
}, - {
- "apparentTemperature": 12.925747111773557,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.945184326171898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 61.099998474121094,
- "valid": "2023-09-16T14:00:00+00:00",
- "localTime": "2023-09-17T00:00:00+10:00",
- "deltaT": 4.402568649466108,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.433892822265648,
- "windDirCardinal": "NW",
- "windDirDegree": 313.2635531482843,
- "windSpeed": 10.472145205849067,
- "windGust": 38.091864509582514,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 313.2635531482843,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6430788675944019,
- "growingDegreeDaysBase5": 0.43474553426106866,
- "growingDegreeDaysBase10": 0.2264122009277353,
- "thickness": 5594.558609008789
}, - {
- "apparentTemperature": 12.440414820419402,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.914758300781273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 64.5999984741211,
- "valid": "2023-09-16T15:00:00+00:00",
- "localTime": "2023-09-17T01:00:00+10:00",
- "deltaT": 3.939955838996264,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.611810302734398,
- "windDirCardinal": "NW",
- "windDirDegree": 325.8680040224072,
- "windSpeed": 8.792331325567023,
- "windGust": 32.92285514831543,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 325.8680040224072,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6088254292805999,
- "growingDegreeDaysBase5": 0.40049209594726654,
- "growingDegreeDaysBase10": 0.19215876261393322,
- "thickness": 5593.344421386719
}, - {
- "apparentTemperature": 11.877730162981079,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.928430175781273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 67.5,
- "valid": "2023-09-16T16:00:00+00:00",
- "localTime": "2023-09-17T02:00:00+10:00",
- "deltaT": 3.5712176693965016,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.928430175781273,
- "windDirCardinal": "NNW",
- "windDirDegree": 336.4665604311059,
- "windSpeed": 8.16664511688574,
- "windGust": 30.258155250549315,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 336.4665604311059,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5803512573242197,
- "growingDegreeDaysBase5": 0.37201792399088635,
- "growingDegreeDaysBase10": 0.16368459065755303,
- "thickness": 5591.550262451172
}, - {
- "apparentTemperature": 11.411090684076136,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.954919433593773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70,
- "valid": "2023-09-16T17:00:00+00:00",
- "localTime": "2023-09-17T03:00:00+10:00",
- "deltaT": 3.2645814555297434,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.359765625000023,
- "windDirCardinal": "NNW",
- "windDirDegree": 343.49997253614976,
- "windSpeed": 7.631312990901385,
- "windGust": 25.82802572250366,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 343.49997253614976,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5566569010416675,
- "growingDegreeDaysBase5": 0.3483235677083343,
- "growingDegreeDaysBase10": 0.13999023437500094,
- "thickness": 5588.4947509765625
}, - {
- "apparentTemperature": 11.03545440765487,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.854882812500023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 71.69999694824219,
- "valid": "2023-09-16T18:00:00+00:00",
- "localTime": "2023-09-17T04:00:00+10:00",
- "deltaT": 3.0535876281275147,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.859765625000023,
- "windDirCardinal": "N",
- "windDirDegree": 352.2138939354296,
- "windSpeed": 6.835438502450544,
- "windGust": 16.99046459197998,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 352.2138939354296,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5358235677083343,
- "growingDegreeDaysBase5": 0.3274902343750009,
- "growingDegreeDaysBase10": 0.11915690104166761,
- "thickness": 5586.975173950195
}, - {
- "apparentTemperature": 10.566505536680745,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.659753417968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 72.69999694824219,
- "valid": "2023-09-16T19:00:00+00:00",
- "localTime": "2023-09-17T05:00:00+10:00",
- "deltaT": 2.9258995581571785,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.469567871093773,
- "windDirCardinal": "N",
- "windDirDegree": 356.29267720221173,
- "windSpeed": 7.0307226572212045,
- "windGust": 12.959999656677244,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 356.29267720221173,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5195653279622405,
- "growingDegreeDaysBase5": 0.31123199462890716,
- "growingDegreeDaysBase10": 0.10289866129557386,
- "thickness": 5584.8602294921875
}, - {
- "apparentTemperature": 10.188505171468584,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.445153808593773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 73,
- "valid": "2023-09-16T20:00:00+00:00",
- "localTime": "2023-09-17T06:00:00+10:00",
- "deltaT": 2.875990036809723,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.149987792968773,
- "windDirCardinal": "N",
- "windDirDegree": 359.9083513471798,
- "windSpeed": 7.033139977125466,
- "windGust": 13.027062606811523,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 359.9083513471798,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5062494913736988,
- "growingDegreeDaysBase5": 0.29791615804036553,
- "growingDegreeDaysBase10": 0.08958282470703219,
- "thickness": 5583.040298461914
}, - {
- "apparentTemperature": 10.655832946362864,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.268273925781273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70,
- "valid": "2023-09-16T21:00:00+00:00",
- "localTime": "2023-09-17T07:00:00+10:00",
- "deltaT": 3.212991429433348,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.604852294921898,
- "windDirCardinal": "N",
- "windDirDegree": 358.2840863954618,
- "windSpeed": 6.758251173638661,
- "windGust": 15.157176017761229,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 358.2840863954618,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.525202178955079,
- "growingDegreeDaysBase5": 0.3168688456217457,
- "growingDegreeDaysBase10": 0.1085355122884124,
- "thickness": 5581.65104675293
}, - {
- "apparentTemperature": 13.397464482969013,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.249993896484398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 57.400001525878906,
- "valid": "2023-09-16T22:00:00+00:00",
- "localTime": "2023-09-17T08:00:00+10:00",
- "deltaT": 4.840714515003926,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.631738281250023,
- "windDirCardinal": "NNW",
- "windDirDegree": 327.9182306163106,
- "windSpeed": 8.182151671979074,
- "windGust": 22.575045032501222,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 327.9182306163106,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6513224283854175,
- "growingDegreeDaysBase5": 0.4429890950520843,
- "growingDegreeDaysBase10": 0.23465576171875094,
- "thickness": 5579.935516357422
}, - {
- "apparentTemperature": 15.70427309115108,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.144982910156273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 47.599998474121094,
- "valid": "2023-09-16T23:00:00+00:00",
- "localTime": "2023-09-17T09:00:00+10:00",
- "deltaT": 6.382488964496435,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.404901123046898,
- "windDirCardinal": "WNW",
- "windDirDegree": 290.7904340544878,
- "windSpeed": 10.378941714769192,
- "windGust": 26.972426204681394,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 290.7904340544878,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.766870880126954,
- "growingDegreeDaysBase5": 0.5585375467936207,
- "growingDegreeDaysBase10": 0.3502042134602874,
- "thickness": 5580.108795166016
}, - {
- "apparentTemperature": 17.384139060606703,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 2.799999952316284,
- "cloudCoverUpper": 2.799999952316284,
- "dewPoint": 7.686578369140648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 43.900001525878906,
- "valid": "2023-09-17T00:00:00+00:00",
- "localTime": "2023-09-17T10:00:00+10:00",
- "deltaT": 7.176892848735019,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 20.278161621093773,
- "windDirCardinal": "W",
- "windDirDegree": 279.16965487876956,
- "windSpeed": 11.989615493800438,
- "windGust": 28.122315902709957,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 279.16965487876956,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.8449234008789072,
- "growingDegreeDaysBase5": 0.6365900675455738,
- "growingDegreeDaysBase10": 0.42825673421224053,
- "thickness": 5581.542465209961
}, - {
- "apparentTemperature": 18.890344632612745,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 7.873254394531273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 39.900001525878906,
- "valid": "2023-09-17T01:00:00+00:00",
- "localTime": "2023-09-17T11:00:00+10:00",
- "deltaT": 8.08336070670903,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 22.078179931640648,
- "windDirCardinal": "W",
- "windDirDegree": 267.46944178538234,
- "windSpeed": 13.762802337378774,
- "windGust": 32.10273193359375,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 267.46944178538234,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.9199241638183603,
- "growingDegreeDaysBase5": 0.7115908304850269,
- "growingDegreeDaysBase10": 0.5032574971516937,
- "thickness": 5584.84587097168
}, - {
- "apparentTemperature": 20.125487583174124,
- "cloudCoverLower": 10.5,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 10.5,
- "cloudCoverUpper": 0,
- "dewPoint": 7.424371337890648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 35.099998474121094,
- "valid": "2023-09-17T02:00:00+00:00",
- "localTime": "2023-09-17T12:00:00+10:00",
- "deltaT": 9.189839868337565,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.717492675781273,
- "windDirCardinal": "W",
- "windDirDegree": 269.42597910568384,
- "windSpeed": 15.327189602107307,
- "windGust": 41.45157548904418,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 269.42597910568384,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.9882288614908863,
- "growingDegreeDaysBase5": 0.779895528157553,
- "growingDegreeDaysBase10": 0.5715621948242197,
- "thickness": 5589.41618347168
}, - {
- "apparentTemperature": 20.92579349650856,
- "cloudCoverLower": 28.700000762939453,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 28.700000762939453,
- "cloudCoverUpper": 0,
- "dewPoint": 7.224359130859398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 32.70000076293945,
- "valid": "2023-09-17T03:00:00+00:00",
- "localTime": "2023-09-17T13:00:00+10:00",
- "deltaT": 9.823120839127068,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 24.668420410156273,
- "windDirCardinal": "W",
- "windDirDegree": 278.21550445820645,
- "windSpeed": 15.861080380978436,
- "windGust": 41.82031871795654,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 278.21550445820645,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.027850850423178,
- "growingDegreeDaysBase5": 0.8195175170898447,
- "growingDegreeDaysBase10": 0.6111841837565113,
- "thickness": 5589.803863525391
}, - {
- "apparentTemperature": 21.266887115345632,
- "cloudCoverLower": 87,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 87,
- "cloudCoverUpper": 0,
- "dewPoint": 7.595117187500023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 32.599998474121094,
- "valid": "2023-09-17T04:00:00+00:00",
- "localTime": "2023-09-17T14:00:00+10:00",
- "deltaT": 9.927407000339155,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 25.045281982421898,
- "windDirCardinal": "WNW",
- "windDirDegree": 300.28748220709383,
- "windSpeed": 16.38129841493619,
- "windGust": 40.98999401092529,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 300.28748220709383,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.0435534159342457,
- "growingDegreeDaysBase5": 0.8352200826009124,
- "growingDegreeDaysBase10": 0.626886749267579,
- "thickness": 5590.159164428711
}, - {
- "apparentTemperature": 21.06928010123906,
- "cloudCoverLower": 83.69999694824219,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 83.69999694824219,
- "cloudCoverUpper": 0,
- "dewPoint": 7.995080566406273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 35,
- "valid": "2023-09-17T05:00:00+00:00",
- "localTime": "2023-09-17T15:00:00+10:00",
- "deltaT": 9.340299920924267,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 24.340203857421898,
- "windDirCardinal": "WNW",
- "windDirDegree": 303.316070804514,
- "windSpeed": 14.286931258321943,
- "windGust": 38.103906555175776,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 303.316070804514,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 1.0141751607259124,
- "growingDegreeDaysBase5": 0.805841827392579,
- "growingDegreeDaysBase10": 0.5975084940592457,
- "thickness": 5587.964813232422
}, - {
- "apparentTemperature": 21.392108495084262,
- "cloudCoverLower": 67.5999984741211,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 67.5999984741211,
- "cloudCoverUpper": 0,
- "dewPoint": 8.371057128906273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 37.400001525878906,
- "valid": "2023-09-17T06:00:00+00:00",
- "localTime": "2023-09-17T16:00:00+10:00",
- "deltaT": 8.802407996484469,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.721368408203148,
- "windDirCardinal": "WNW",
- "windDirDegree": 289.7837948621006,
- "windSpeed": 9.979234780938475,
- "windGust": 28.174675884246827,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 289.7837948621006,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.9883903503417978,
- "growingDegreeDaysBase5": 0.7800570170084644,
- "growingDegreeDaysBase10": 0.5717236836751312,
- "thickness": 5584.571884155273
}, - {
- "apparentTemperature": 18.624129197853204,
- "cloudCoverLower": 72.4000015258789,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 72.4000015258789,
- "cloudCoverUpper": 0,
- "dewPoint": 10.008935546875023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 50.5,
- "valid": "2023-09-17T07:00:00+00:00",
- "localTime": "2023-09-17T17:00:00+10:00",
- "deltaT": 6.324494461678125,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 20.667932128906273,
- "windDirCardinal": "SSW",
- "windDirDegree": 204.00986487519663,
- "windSpeed": 10.76878182564613,
- "windGust": 18.721365737915036,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 204.00986487519663,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.861163838704428,
- "growingDegreeDaysBase5": 0.6528305053710947,
- "growingDegreeDaysBase10": 0.44449717203776135,
- "thickness": 5576.772018432617
}, - {
- "apparentTemperature": 14.460533183136853,
- "cloudCoverLower": 0.6000000238418579,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0.6000000238418579,
- "cloudCoverUpper": 0,
- "dewPoint": 10.767907714843773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70.5,
- "valid": "2023-09-17T08:00:00+00:00",
- "localTime": "2023-09-17T18:00:00+10:00",
- "deltaT": 3.4085782042360577,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 16.303765869140648,
- "windDirCardinal": "S",
- "windDirDegree": 186.3731059047788,
- "windSpeed": 11.039689505335792,
- "windGust": 19.47974510192871,
- "windGustDirCardinal": "S",
- "windGustDirDegree": 186.3731059047788,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6793235778808603,
- "growingDegreeDaysBase5": 0.47099024454752697,
- "growingDegreeDaysBase10": 0.26265691121419366,
- "thickness": 5571.2105712890625
}, - {
- "apparentTemperature": 14.586740993310283,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 0,
- "cloudCoverUpper": 0,
- "dewPoint": 11.068658447265648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 76.5,
- "valid": "2023-09-17T09:00:00+00:00",
- "localTime": "2023-09-17T19:00:00+10:00",
- "deltaT": 2.6635566070436205,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.112329101562523,
- "windDirCardinal": "S",
- "windDirDegree": 174.81470627468659,
- "windSpeed": 4.385586225718176,
- "windGust": 9.08559808731079,
- "windGustDirCardinal": "S",
- "windGustDirDegree": 174.81470627468659,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6296803792317718,
- "growingDegreeDaysBase5": 0.4213470458984384,
- "growingDegreeDaysBase10": 0.2130137125651051,
- "thickness": 5574.130340576172
}, - {
- "apparentTemperature": 14.802290364834342,
- "cloudCoverLower": 4,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 4,
- "cloudCoverUpper": 0,
- "dewPoint": 11.143701171875023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 77.5999984741211,
- "valid": "2023-09-17T10:00:00+00:00",
- "localTime": "2023-09-17T20:00:00+10:00",
- "deltaT": 2.534990903516352,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.974847412109398,
- "windDirCardinal": "SE",
- "windDirDegree": 139.58802196747772,
- "windSpeed": 2.6914269961921713,
- "windGust": 3.9803007602691647,
- "windGustDirCardinal": "SE",
- "windGustDirDegree": 139.58802196747772,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6239519755045582,
- "growingDegreeDaysBase5": 0.4156186421712249,
- "growingDegreeDaysBase10": 0.20728530883789156,
- "thickness": 5573.904449462891
}, - {
- "apparentTemperature": 14.308227681745521,
- "cloudCoverLower": 20.799999237060547,
- "cloudCoverMiddle": 5.900000095367432,
- "cloudCoverTotal": 21.700000762939453,
- "cloudCoverUpper": 0,
- "dewPoint": 11.024957275390648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 80,
- "valid": "2023-09-17T11:00:00+00:00",
- "localTime": "2023-09-17T21:00:00+10:00",
- "deltaT": 2.250224408311709,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.504876708984398,
- "windDirCardinal": "ESE",
- "windDirDegree": 105.84782636011172,
- "windSpeed": 2.819462595854035,
- "windGust": 4.697611856460571,
- "windGustDirCardinal": "ESE",
- "windGustDirDegree": 105.84782636011172,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6043698628743499,
- "growingDegreeDaysBase5": 0.39603652954101654,
- "growingDegreeDaysBase10": 0.18770319620768322,
- "thickness": 5575.232528686523
}, - {
- "apparentTemperature": 13.937168232703783,
- "cloudCoverLower": 100,
- "cloudCoverMiddle": 59.29999923706055,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 10.955346679687523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 81.5,
- "valid": "2023-09-17T12:00:00+00:00",
- "localTime": "2023-09-17T22:00:00+10:00",
- "deltaT": 2.0709419896327717,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.098352050781273,
- "windDirCardinal": "SE",
- "windDirDegree": 145.3240311595968,
- "windSpeed": 2.4653603309936862,
- "windGust": 3.6398117065429685,
- "windGustDirCardinal": "SE",
- "windGustDirDegree": 145.3240311595968,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5874313354492197,
- "growingDegreeDaysBase5": 0.37909800211588635,
- "growingDegreeDaysBase10": 0.17076466878255303,
- "thickness": 5571.718368530273
}, - {
- "apparentTemperature": 14.567493607701042,
- "cloudCoverLower": 98.5999984741211,
- "cloudCoverMiddle": 95.5999984741211,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 10.855310058593773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 77.69999694824219,
- "valid": "2023-09-17T13:00:00+00:00",
- "localTime": "2023-09-17T23:00:00+10:00",
- "deltaT": 2.511182738111984,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.698480224609398,
- "windDirCardinal": "E",
- "windDirDegree": 98.7621094932973,
- "windSpeed": 2.1114378292115474,
- "windGust": 3.24669234752655,
- "windGustDirCardinal": "E",
- "windGustDirDegree": 98.7621094932973,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6124366760253915,
- "growingDegreeDaysBase5": 0.4041033426920582,
- "growingDegreeDaysBase10": 0.1957700093587249,
- "thickness": 5571.72526550293
}, - {
- "apparentTemperature": 12.978456160245123,
- "cloudCoverLower": 9.800000190734863,
- "cloudCoverMiddle": 9.5,
- "cloudCoverTotal": 11.100000381469727,
- "cloudCoverUpper": 0,
- "dewPoint": 10.649987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 79.80000305175781,
- "valid": "2023-09-17T14:00:00+00:00",
- "localTime": "2023-09-18T00:00:00+10:00",
- "deltaT": 2.257825737139612,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.149987792968773,
- "windDirCardinal": "NE",
- "windDirDegree": 34.663565990948264,
- "windSpeed": 7.271008478221793,
- "windGust": 13.465700340270995,
- "windGustDirCardinal": "NE",
- "windGustDirDegree": 34.663565990948264,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5895828247070322,
- "growingDegreeDaysBase5": 0.38124949137369885,
- "growingDegreeDaysBase10": 0.17291615804036553,
- "thickness": 5580.811477661133
}, - {
- "apparentTemperature": 13.023027833903324,
- "cloudCoverLower": 5.900000095367432,
- "cloudCoverMiddle": 10.100000381469727,
- "cloudCoverTotal": 11,
- "cloudCoverUpper": 0,
- "dewPoint": 10.458062744140648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 84,
- "valid": "2023-09-17T15:00:00+00:00",
- "localTime": "2023-09-18T01:00:00+10:00",
- "deltaT": 1.768021839999932,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.066125488281273,
- "windDirCardinal": "NW",
- "windDirDegree": 323.35024110917044,
- "windSpeed": 1.0536476061677924,
- "windGust": 1.5153496026992797,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 323.35024110917044,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.544421895345053,
- "growingDegreeDaysBase5": 0.33608856201171966,
- "growingDegreeDaysBase10": 0.12775522867838635,
- "thickness": 5584.875061035156
}, - {
- "apparentTemperature": 11.317616509312877,
- "cloudCoverLower": 8.399999618530273,
- "cloudCoverMiddle": 50.20000076293945,
- "cloudCoverTotal": 53.70000076293945,
- "cloudCoverUpper": 4.900000095367432,
- "dewPoint": 10.249993896484398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 83.30000305175781,
- "valid": "2023-09-17T16:00:00+00:00",
- "localTime": "2023-09-18T02:00:00+10:00",
- "deltaT": 1.838935410457152,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.950006103515648,
- "windDirCardinal": "NNE",
- "windDirDegree": 16.599215560942284,
- "windSpeed": 8.888428982435531,
- "windGust": 23.005932426452635,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 16.599215560942284,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5395835876464853,
- "growingDegreeDaysBase5": 0.33125025431315197,
- "growingDegreeDaysBase10": 0.12291692097981866,
- "thickness": 5595.19841003418
}, - {
- "apparentTemperature": 12.319985947749746,
- "cloudCoverLower": 73.5999984741211,
- "cloudCoverMiddle": 75.69999694824219,
- "cloudCoverTotal": 78.5,
- "cloudCoverUpper": 4.599999904632568,
- "dewPoint": 10.149987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 83.19999694824219,
- "valid": "2023-09-17T17:00:00+00:00",
- "localTime": "2023-09-18T03:00:00+10:00",
- "deltaT": 1.849549857827535,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.950036621093773,
- "windDirCardinal": "ESE",
- "windDirDegree": 104.61262803141429,
- "windSpeed": 3.708295746531871,
- "windGust": 4.680461597442626,
- "windGustDirCardinal": "ESE",
- "windGustDirDegree": 104.61262803141429,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5395848592122405,
- "growingDegreeDaysBase5": 0.33125152587890716,
- "growingDegreeDaysBase10": 0.12291819254557386,
- "thickness": 5591.085464477539
}, - {
- "apparentTemperature": 12.515272013012442,
- "cloudCoverLower": 92.30000305175781,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 9.650018310546898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 76.9000015258789,
- "valid": "2023-09-17T18:00:00+00:00",
- "localTime": "2023-09-18T04:00:00+10:00",
- "deltaT": 2.5498940553998892,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.678155517578148,
- "windDirCardinal": "N",
- "windDirDegree": 355.54107188989724,
- "windSpeed": 5.8001781917960615,
- "windGust": 26.161379928588868,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 355.54107188989724,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5699231465657562,
- "growingDegreeDaysBase5": 0.3615898132324228,
- "growingDegreeDaysBase10": 0.15325647989908947,
- "thickness": 5588.0730056762695
}, - {
- "apparentTemperature": 12.935057474904376,
- "cloudCoverLower": 3.0999999046325684,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 8.950036621093773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 68.30000305175781,
- "valid": "2023-09-17T19:00:00+00:00",
- "localTime": "2023-09-18T05:00:00+10:00",
- "deltaT": 3.5481031854266067,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.778131103515648,
- "windDirCardinal": "NNE",
- "windDirDegree": 26.63199305165754,
- "windSpeed": 8.353346530778119,
- "windGust": 26.238950271606445,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 26.63199305165754,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6157554626464853,
- "growingDegreeDaysBase5": 0.40742212931315197,
- "growingDegreeDaysBase10": 0.19908879597981866,
- "thickness": 5591.615531921387
}, - {
- "apparentTemperature": 11.899832725017744,
- "cloudCoverLower": 86.5999984741211,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 3.5999999046325684,
- "dewPoint": 8.350000000000023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 69.4000015258789,
- "valid": "2023-09-17T20:00:00+00:00",
- "localTime": "2023-09-18T06:00:00+10:00",
- "deltaT": 3.364211625859065,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.878137207031273,
- "windDirCardinal": "N",
- "windDirDegree": 5.181772061807422,
- "windSpeed": 8.245486266572835,
- "windGust": 23.78344482421875,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 5.181772061807422,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5782557169596363,
- "growingDegreeDaysBase5": 0.36992238362630303,
- "growingDegreeDaysBase10": 0.1615890502929697,
- "thickness": 5590.40975189209
}, - {
- "apparentTemperature": 11.216056421535937,
- "cloudCoverLower": 5,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0.4000000059604645,
- "dewPoint": 7.864709472656273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 61.79999923706055,
- "valid": "2023-09-17T21:00:00+00:00",
- "localTime": "2023-09-18T07:00:00+10:00",
- "deltaT": 4.2903421988438275,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.079400634765648,
- "windDirCardinal": "NNE",
- "windDirDegree": 23.343316289554735,
- "windSpeed": 17.236945423519494,
- "windGust": 74.30428791046141,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 23.343316289554735,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6283083597819019,
- "growingDegreeDaysBase5": 0.41997502644856866,
- "growingDegreeDaysBase10": 0.2116416931152353,
- "thickness": 5606.571250915527
}, - {
- "apparentTemperature": 11.580659176206547,
- "cloudCoverLower": 1.7999999523162842,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 6.464685058593773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 47.099998474121094,
- "valid": "2023-09-17T22:00:00+00:00",
- "localTime": "2023-09-18T08:00:00+10:00",
- "deltaT": 6.363539879056773,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.859368896484398,
- "windDirCardinal": "N",
- "windDirDegree": 6.141312603284689,
- "windSpeed": 28.033413027364887,
- "windGust": 82.93382789611816,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 6.141312603284689,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.7441403706868499,
- "growingDegreeDaysBase5": 0.5358070373535165,
- "growingDegreeDaysBase10": 0.3274737040201832,
- "thickness": 5614.575164794922
}, - {
- "apparentTemperature": 13.571490491550033,
- "cloudCoverLower": 1.7999999523162842,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0.20000000298023224,
- "dewPoint": 6.535302734375023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 43.099998474121094,
- "valid": "2023-09-17T23:00:00+00:00",
- "localTime": "2023-09-18T09:00:00+10:00",
- "deltaT": 7.140222757937458,
- "rainfall": 0.0625,
- "snow": 0,
- "tmp2m": 19.407861328125023,
- "windDirCardinal": "N",
- "windDirDegree": 356.5526333202051,
- "windSpeed": 25.889464498868943,
- "windGust": 78.62405891418456,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 356.5526333202051,
- "weatherIcon": "LIGHT_RAIN",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.8086608886718759,
- "growingDegreeDaysBase5": 0.6003275553385425,
- "growingDegreeDaysBase10": 0.3919942220052093,
- "thickness": 5612.854118347168
}, - {
- "apparentTemperature": 16.35530731625296,
- "cloudCoverLower": 4.900000095367432,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 6.393151855468773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 37.29999923706055,
- "valid": "2023-09-18T00:00:00+00:00",
- "localTime": "2023-09-18T10:00:00+10:00",
- "deltaT": 8.372711996007386,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 21.502954101562523,
- "windDirCardinal": "NNW",
- "windDirDegree": 340.33421559273654,
- "windSpeed": 22.094903305212203,
- "windGust": 64.37701606750488,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 340.33421559273654,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.8959564208984384,
- "growingDegreeDaysBase5": 0.687623087565105,
- "growingDegreeDaysBase10": 0.4792897542317718,
- "thickness": 5607.5487060546875
}, - {
- "apparentTemperature": 17.15762447173841,
- "cloudCoverLower": 4.900000095367432,
- "cloudCoverMiddle": 88,
- "cloudCoverTotal": 88,
- "cloudCoverUpper": 0,
- "dewPoint": 6.274255371093773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 33.400001525878906,
- "valid": "2023-09-18T01:00:00+00:00",
- "localTime": "2023-09-18T11:00:00+10:00",
- "deltaT": 9.348742859558556,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 23.113763427734398,
- "windDirCardinal": "N",
- "windDirDegree": 351.6611129224824,
- "windSpeed": 26.04972028752336,
- "windGust": 55.72799835205077,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 351.6611129224824,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.9630734761555999,
- "growingDegreeDaysBase5": 0.7547401428222665,
- "growingDegreeDaysBase10": 0.5464068094889332,
- "thickness": 5610.665809631348
}, - {
- "apparentTemperature": 18.560460569647113,
- "cloudCoverLower": 1.7999999523162842,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 6.450036621093773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 29.5,
- "valid": "2023-09-18T02:00:00+00:00",
- "localTime": "2023-09-18T12:00:00+10:00",
- "deltaT": 10.610137518448504,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 25.437890625000023,
- "windDirCardinal": "NNW",
- "windDirDegree": 348.13270870186165,
- "windSpeed": 31.027025141935457,
- "windGust": 69.4645743370056,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 348.13270870186165,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 1.0599121093750008,
- "growingDegreeDaysBase5": 0.8515787760416675,
- "growingDegreeDaysBase10": 0.6432454427083343,
- "thickness": 5617.600845336914
}, - {
- "apparentTemperature": 19.99256181567855,
- "cloudCoverLower": 0.4000000059604645,
- "cloudCoverMiddle": 87.19999694824219,
- "cloudCoverTotal": 87.19999694824219,
- "cloudCoverUpper": 0,
- "dewPoint": 6.659753417968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 28.100000381469727,
- "valid": "2023-09-18T03:00:00+00:00",
- "localTime": "2023-09-18T13:00:00+10:00",
- "deltaT": 11.160953832085838,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 26.500543212890648,
- "windDirCardinal": "NNW",
- "windDirDegree": 346.42839632253674,
- "windSpeed": 29.3578904643008,
- "windGust": 71.58648920059204,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 346.42839632253674,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 1.1041893005371102,
- "growingDegreeDaysBase5": 0.8958559672037769,
- "growingDegreeDaysBase10": 0.6875226338704437,
- "thickness": 5621.387710571289
}, - {
- "apparentTemperature": 21.347941911003325,
- "cloudCoverLower": 0.699999988079071,
- "cloudCoverMiddle": 98,
- "cloudCoverTotal": 98,
- "cloudCoverUpper": 0,
- "dewPoint": 5.649987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 24.200000762939453,
- "valid": "2023-09-18T04:00:00+00:00",
- "localTime": "2023-09-18T14:00:00+10:00",
- "deltaT": 12.375625566379696,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 27.817620849609398,
- "windDirCardinal": "NNW",
- "windDirDegree": 335.675213675795,
- "windSpeed": 28.01220872505051,
- "windGust": 81.48727043151855,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 335.675213675795,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "UNSUITABLE",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 1.1590675354003914,
- "growingDegreeDaysBase5": 0.9507342020670582,
- "growingDegreeDaysBase10": 0.7424008687337249,
- "thickness": 5618.677688598633
}, - {
- "apparentTemperature": 22.79770570872904,
- "cloudCoverLower": 4.099999904632568,
- "cloudCoverMiddle": 97.30000305175781,
- "cloudCoverTotal": 97.30000305175781,
- "cloudCoverUpper": 0,
- "dewPoint": 5.264703369140648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 22.899999618530273,
- "valid": "2023-09-18T05:00:00+00:00",
- "localTime": "2023-09-18T15:00:00+10:00",
- "deltaT": 12.82703909898036,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 28.305871582031273,
- "windDirCardinal": "NW",
- "windDirDegree": 321.881282216521,
- "windSpeed": 22.661834322789296,
- "windGust": 80.60101364135741,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 321.881282216521,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "UNSUITABLE",
- "deltaTSprayingRating": "UNSUITABLE",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.1794113159179695,
- "growingDegreeDaysBase5": 0.9710779825846363,
- "growingDegreeDaysBase10": 0.762744649251303,
- "thickness": 5621.264472961426
}, - {
- "apparentTemperature": 23.009997598688038,
- "cloudCoverLower": 0.10000000149011612,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 5.664727783203148,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 23.299999237060547,
- "valid": "2023-09-18T06:00:00+00:00",
- "localTime": "2023-09-18T16:00:00+10:00",
- "deltaT": 12.75007363000206,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 28.374078369140648,
- "windDirCardinal": "NNW",
- "windDirDegree": 329.9502652929643,
- "windSpeed": 22.241299019244686,
- "windGust": 79.10875305175782,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 329.9502652929643,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "UNSUITABLE",
- "deltaTSprayingRating": "UNSUITABLE",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.1822532653808602,
- "growingDegreeDaysBase5": 0.9739199320475269,
- "growingDegreeDaysBase10": 0.7655865987141937,
- "thickness": 5630.715377807617
}, - {
- "apparentTemperature": 22.744118077144112,
- "cloudCoverLower": 1.7999999523162842,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 4.599999904632568,
- "dewPoint": 4.950006103515648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 23.5,
- "valid": "2023-09-18T07:00:00+00:00",
- "localTime": "2023-09-18T17:00:00+10:00",
- "deltaT": 12.436543578448262,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 27.462121582031273,
- "windDirCardinal": "NW",
- "windDirDegree": 316.87389232068494,
- "windSpeed": 18.255698543333143,
- "windGust": 67.96881151199341,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 316.87389232068494,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "UNSUITABLE",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.1442550659179695,
- "growingDegreeDaysBase5": 0.9359217325846363,
- "growingDegreeDaysBase10": 0.727588399251303,
- "thickness": 5635.118846893311
}, - {
- "apparentTemperature": 22.304157422914393,
- "cloudCoverLower": 7.599999904632568,
- "cloudCoverMiddle": 97.5,
- "cloudCoverTotal": 97.5,
- "cloudCoverUpper": 4,
- "dewPoint": 4.738336181640648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 24.799999237060547,
- "valid": "2023-09-18T08:00:00+00:00",
- "localTime": "2023-09-18T18:00:00+10:00",
- "deltaT": 11.85575030900296,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 26.462121582031273,
- "windDirCardinal": "NW",
- "windDirDegree": 312.7049757365121,
- "windSpeed": 15.30630501749214,
- "windGust": 54.04965682983398,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 312.7049757365121,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.102588399251303,
- "growingDegreeDaysBase5": 0.8942550659179697,
- "growingDegreeDaysBase10": 0.6859217325846363,
- "thickness": 5633.407802581787
}, - {
- "apparentTemperature": 20.941335858679412,
- "cloudCoverLower": 5,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 3.5500122070312727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 24.100000381469727,
- "valid": "2023-09-18T09:00:00+00:00",
- "localTime": "2023-09-18T19:00:00+10:00",
- "deltaT": 11.86398490603493,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 25.948785400390648,
- "windDirCardinal": "NW",
- "windDirDegree": 315.7991229491715,
- "windSpeed": 18.84620237810345,
- "windGust": 65.7934627532959,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 315.7991229491715,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 1.0811993916829437,
- "growingDegreeDaysBase5": 0.8728660583496103,
- "growingDegreeDaysBase10": 0.6645327250162769,
- "thickness": 5631.359241485596
}, - {
- "apparentTemperature": 20.660210263054,
- "cloudCoverLower": 94.5999984741211,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0.8999999761581421,
- "dewPoint": 7.112908935546898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 36.599998474121094,
- "valid": "2023-09-18T10:00:00+00:00",
- "localTime": "2023-09-18T20:00:00+10:00",
- "deltaT": 8.752637312931984,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 22.825769042968773,
- "windDirCardinal": "WSW",
- "windDirDegree": 236.86900141611883,
- "windSpeed": 7.785021926473975,
- "windGust": 24.958063373565672,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 236.86900141611883,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.9510737101236988,
- "growingDegreeDaysBase5": 0.7427403767903655,
- "growingDegreeDaysBase10": 0.5344070434570322,
- "thickness": 5618.9238357543945
}, - {
- "apparentTemperature": 20.865808078527934,
- "cloudCoverLower": 81,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 1.2999999523162842,
- "dewPoint": 7.941796875000023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 41.599998474121094,
- "valid": "2023-09-18T11:00:00+00:00",
- "localTime": "2023-09-18T21:00:00+10:00",
- "deltaT": 7.7335693990792045,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 21.573571777343773,
- "windDirCardinal": "WSW",
- "windDirDegree": 244.93013407323107,
- "windSpeed": 1.2060085195034607,
- "windGust": 2.63155882358551,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 244.93013407323107,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.8988988240559905,
- "growingDegreeDaysBase5": 0.6905654907226572,
- "growingDegreeDaysBase10": 0.48223215738932385,
- "thickness": 5612.895858764648
}, - {
- "apparentTemperature": 20.055509363027713,
- "cloudCoverLower": 96,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 4.900000095367432,
- "dewPoint": 7.975488281250023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 43.099998474121094,
- "valid": "2023-09-18T12:00:00+00:00",
- "localTime": "2023-09-18T22:00:00+10:00",
- "deltaT": 7.422705797823355,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 21.056268310546898,
- "windDirCardinal": "W",
- "windDirDegree": 259.7719137482013,
- "windSpeed": 2.7813417698584915,
- "windGust": 5.788846921920776,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 259.7719137482013,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.877344512939454,
- "growingDegreeDaysBase5": 0.6690111796061207,
- "growingDegreeDaysBase10": 0.4606778462727874,
- "thickness": 5610.719127655029
}, - {
- "apparentTemperature": 19.610545690247246,
- "cloudCoverLower": 65.63333336512247,
- "cloudCoverMiddle": 99.76666768391927,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 36.600000063578285,
- "dewPoint": 8.000329589843773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 45.166665395100914,
- "valid": "2023-09-18T13:00:00+00:00",
- "localTime": "2023-09-18T23:00:00+10:00",
- "deltaT": 7.003699689824497,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 20.300490315755212,
- "windDirCardinal": "NW",
- "windDirDegree": 325.4029230894877,
- "windSpeed": 1.1894775846009977,
- "windGust": 6.634143447875975,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 325.4029230894877,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.8458537631564671,
- "growingDegreeDaysBase5": 0.6375204298231338,
- "growingDegreeDaysBase10": 0.42918709648980047,
- "thickness": 5604.881070454916
}, - {
- "apparentTemperature": 18.531223607951794,
- "cloudCoverLower": 35.26666673024495,
- "cloudCoverMiddle": 99.53333536783855,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 68.30000003178914,
- "dewPoint": 8.025170898437523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 47.23333231608073,
- "valid": "2023-09-18T14:00:00+00:00",
- "localTime": "2023-09-19T00:00:00+10:00",
- "deltaT": 6.603126924305435,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.544712320963583,
- "windDirCardinal": "NNE",
- "windDirDegree": 29.48245384492897,
- "windSpeed": 2.8169215843225017,
- "windGust": 7.479439973831176,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 29.48245384492897,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.8143630133734826,
- "growingDegreeDaysBase5": 0.6060296800401492,
- "growingDegreeDaysBase10": 0.397696346706816,
- "thickness": 5599.043013254801
}, - {
- "apparentTemperature": 17.29248145131703,
- "cloudCoverLower": 4.900000095367432,
- "cloudCoverMiddle": 99.30000305175781,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 8.050012207031273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 49.29999923706055,
- "valid": "2023-09-18T15:00:00+00:00",
- "localTime": "2023-09-19T01:00:00+10:00",
- "deltaT": 6.219729764011969,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.788934326171898,
- "windDirCardinal": "NE",
- "windDirDegree": 41.29823184893692,
- "windSpeed": 5.224598827146528,
- "windGust": 8.324736499786376,
- "windGustDirCardinal": "NE",
- "windGustDirDegree": 41.29823184893692,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7828722635904957,
- "growingDegreeDaysBase5": 0.5745389302571624,
- "growingDegreeDaysBase10": 0.36620559692382904,
- "thickness": 5593.2049560546875
}, - {
- "apparentTemperature": 16.69679637115987,
- "cloudCoverLower": 3.9666666984558105,
- "cloudCoverMiddle": 99.53333536783855,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 77.16666666666667,
- "dewPoint": 7.783349609375023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 50.13333257039388,
- "valid": "2023-09-18T16:00:00+00:00",
- "localTime": "2023-09-19T02:00:00+10:00",
- "deltaT": 6.041149700460746,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.279412841796898,
- "windDirCardinal": "NNE",
- "windDirDegree": 31.94455872352757,
- "windSpeed": 5.396552009450711,
- "windGust": 8.685097789764404,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 31.94455872352757,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7616422017415374,
- "growingDegreeDaysBase5": 0.553308868408204,
- "growingDegreeDaysBase10": 0.3449755350748707,
- "thickness": 5585.525133768718
}, - {
- "apparentTemperature": 16.074652395753944,
- "cloudCoverLower": 3.0333333015441895,
- "cloudCoverMiddle": 99.76666768391927,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 54.333333333333336,
- "dewPoint": 7.516687011718773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 50.96666590372721,
- "valid": "2023-09-18T17:00:00+00:00",
- "localTime": "2023-09-19T03:00:00+10:00",
- "deltaT": 5.866537320428478,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.769891357421898,
- "windDirCardinal": "NNE",
- "windDirDegree": 23.379518130204133,
- "windSpeed": 5.701558989875624,
- "windGust": 9.04545907974243,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 23.379518130204133,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.740412139892579,
- "growingDegreeDaysBase5": 0.5320788065592457,
- "growingDegreeDaysBase10": 0.3237454732259124,
- "thickness": 5577.845311482747
}, - {
- "apparentTemperature": 15.429990818533856,
- "cloudCoverLower": 2.0999999046325684,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 31.5,
- "dewPoint": 7.250024414062523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51.79999923706055,
- "valid": "2023-09-18T18:00:00+00:00",
- "localTime": "2023-09-19T04:00:00+10:00",
- "deltaT": 5.695793091698356,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.260369873046898,
- "windDirCardinal": "NNE",
- "windDirDegree": 15.832954069068109,
- "windSpeed": 6.119757910048077,
- "windGust": 9.405820369720457,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 15.832954069068109,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7191820780436207,
- "growingDegreeDaysBase5": 0.5108487447102874,
- "growingDegreeDaysBase10": 0.30251541137695404,
- "thickness": 5570.165489196777
}, - {
- "apparentTemperature": 15.407697300178537,
- "cloudCoverLower": 34.20000044504801,
- "cloudCoverMiddle": 99.83333333333333,
- "cloudCoverTotal": 99.96666717529297,
- "cloudCoverUpper": 28.133333206176758,
- "dewPoint": 7.386804199218773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51.199999491373696,
- "valid": "2023-09-18T19:00:00+00:00",
- "localTime": "2023-09-19T05:00:00+10:00",
- "deltaT": 5.811594284744448,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.57727457682296,
- "windDirCardinal": "NNW",
- "windDirDegree": 341.87201614919064,
- "windSpeed": 8.008856691307852,
- "windGust": 35.52302046775818,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 341.87201614919064,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7323864407009566,
- "growingDegreeDaysBase5": 0.5240531073676232,
- "growingDegreeDaysBase10": 0.3157197740342899,
- "thickness": 5562.354824701945
}, - {
- "apparentTemperature": 15.080589328232797,
- "cloudCoverLower": 66.30000098546346,
- "cloudCoverMiddle": 99.66666666666667,
- "cloudCoverTotal": 99.93333435058594,
- "cloudCoverUpper": 24.766666412353516,
- "dewPoint": 7.523583984375023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 50.59999974568685,
- "valid": "2023-09-18T20:00:00+00:00",
- "localTime": "2023-09-19T06:00:00+10:00",
- "deltaT": 5.92913670266509,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.894179280598962,
- "windDirCardinal": "NW",
- "windDirDegree": 324.5211859134994,
- "windSpeed": 11.463500418539311,
- "windGust": 65.46668207645416,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 324.5211859134994,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7455908033582901,
- "growingDegreeDaysBase5": 0.5372574700249567,
- "growingDegreeDaysBase10": 0.3289241366916234,
- "thickness": 5554.544160207112
}, - {
- "apparentTemperature": 14.64612142703939,
- "cloudCoverLower": 98.4000015258789,
- "cloudCoverMiddle": 99.5,
- "cloudCoverTotal": 99.9000015258789,
- "cloudCoverUpper": 21.399999618530273,
- "dewPoint": 7.660363769531273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 50,
- "valid": "2023-09-18T21:00:00+00:00",
- "localTime": "2023-09-19T07:00:00+10:00",
- "deltaT": 6.048452794787131,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.211083984375023,
- "windDirCardinal": "NW",
- "windDirDegree": 315.6386484283373,
- "windSpeed": 15.468083459479692,
- "windGust": 99.70709621429442,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 315.6386484283373,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7587951660156259,
- "growingDegreeDaysBase5": 0.5504618326822925,
- "growingDegreeDaysBase10": 0.3421284993489593,
- "thickness": 5546.73349571228
}, - {
- "apparentTemperature": 14.542772915302095,
- "cloudCoverLower": 65.6000010172526,
- "cloudCoverMiddle": 82,
- "cloudCoverTotal": 82.26666768391927,
- "cloudCoverUpper": 17.199999809265137,
- "dewPoint": 6.823571777343773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 46.699999491373696,
- "valid": "2023-09-18T22:00:00+00:00",
- "localTime": "2023-09-19T08:00:00+10:00",
- "deltaT": 6.515746881491072,
- "rainfall": 0.020833333333333332,
- "snow": 0,
- "tmp2m": 18.516503906250023,
- "windDirCardinal": "NW",
- "windDirDegree": 310.7559492341494,
- "windSpeed": 16.72101598195538,
- "windGust": 85.38443927764892,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 310.7559492341494,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7715209960937509,
- "growingDegreeDaysBase5": 0.5631876627604175,
- "growingDegreeDaysBase10": 0.3548543294270843,
- "thickness": 5539.529335657756
}, - {
- "apparentTemperature": 14.411374447632767,
- "cloudCoverLower": 32.8000005086263,
- "cloudCoverMiddle": 64.5,
- "cloudCoverTotal": 64.63333384195963,
- "cloudCoverUpper": 13,
- "dewPoint": 5.986779785156273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 43.3999989827474,
- "valid": "2023-09-18T23:00:00+00:00",
- "localTime": "2023-09-19T09:00:00+10:00",
- "deltaT": 6.999673238490413,
- "rainfall": 0.041666666666666664,
- "snow": 0,
- "tmp2m": 18.821923828125023,
- "windDirCardinal": "NW",
- "windDirDegree": 306.5795417205595,
- "windSpeed": 18.078086976558534,
- "windGust": 71.87945938110352,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 306.5795417205595,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7842468261718759,
- "growingDegreeDaysBase5": 0.5759134928385425,
- "growingDegreeDaysBase10": 0.3675801595052093,
- "thickness": 5532.3251756032305
}, - {
- "apparentTemperature": 14.255938472534972,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 47,
- "cloudCoverTotal": 47,
- "cloudCoverUpper": 8.800000190734863,
- "dewPoint": 5.149987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 40.099998474121094,
- "valid": "2023-09-19T00:00:00+00:00",
- "localTime": "2023-09-19T10:00:00+10:00",
- "deltaT": 7.502764389612107,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.127343750000023,
- "windDirCardinal": "WNW",
- "windDirDegree": 303.0023933995535,
- "windSpeed": 19.517586062294026,
- "windGust": 59.192156524658195,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 303.0023933995535,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7969726562500009,
- "growingDegreeDaysBase5": 0.5886393229166675,
- "growingDegreeDaysBase10": 0.3803059895833343,
- "thickness": 5525.121015548706
}, - {
- "apparentTemperature": 14.249941157210657,
- "cloudCoverLower": 1.2333333492279053,
- "cloudCoverMiddle": 52.233333587646484,
- "cloudCoverTotal": 62.06666564941406,
- "cloudCoverUpper": 36.59999910990397,
- "dewPoint": 4.203688557942712,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 35.73333231608073,
- "valid": "2023-09-19T01:00:00+00:00",
- "localTime": "2023-09-19T11:00:00+10:00",
- "deltaT": 8.327843256062035,
- "rainfall": 0.008333333333333335,
- "snow": 0,
- "tmp2m": 20.125390625000023,
- "windDirCardinal": "NW",
- "windDirDegree": 308.5844613096061,
- "windSpeed": 23.89910994997174,
- "windGust": 66.76572704315186,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 308.5844613096061,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.8385579427083343,
- "growingDegreeDaysBase5": 0.6302246093750009,
- "growingDegreeDaysBase10": 0.4218912760416676,
- "thickness": 5522.612128893535
}, - {
- "apparentTemperature": 14.555078935101584,
- "cloudCoverLower": 2.4666666984558105,
- "cloudCoverMiddle": 57.46666717529297,
- "cloudCoverTotal": 77.13333129882812,
- "cloudCoverUpper": 64.39999802907307,
- "dewPoint": 3.2573893229167084,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 31.366666158040363,
- "valid": "2023-09-19T02:00:00+00:00",
- "localTime": "2023-09-19T12:00:00+10:00",
- "deltaT": 9.231634592164575,
- "rainfall": 0.0041666666666666675,
- "snow": 0,
- "tmp2m": 21.123437500000023,
- "windDirCardinal": "NW",
- "windDirDegree": 313.10215627699574,
- "windSpeed": 26.513059791455582,
- "windGust": 71.87295770645142,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 313.10215627699574,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.8801432291666675,
- "growingDegreeDaysBase5": 0.6718098958333343,
- "growingDegreeDaysBase10": 0.4634765625000009,
- "thickness": 5520.103242238362
}, - {
- "apparentTemperature": 14.79838030019786,
- "cloudCoverLower": 3.700000047683716,
- "cloudCoverMiddle": 62.70000076293945,
- "cloudCoverTotal": 92.19999694824219,
- "cloudCoverUpper": 92.19999694824219,
- "dewPoint": 2.3110900878906477,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 27,
- "valid": "2023-09-19T03:00:00+00:00",
- "localTime": "2023-09-19T13:00:00+10:00",
- "deltaT": 10.231022334199977,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 22.121484375000023,
- "windDirCardinal": "NW",
- "windDirDegree": 316.7906272554686,
- "windSpeed": 29.261876389070412,
- "windGust": 80.059395904541,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 316.7906272554686,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.9217285156250009,
- "growingDegreeDaysBase5": 0.7133951822916675,
- "growingDegreeDaysBase10": 0.5050618489583343,
- "thickness": 5517.594355583191
}, - {
- "apparentTemperature": 14.823778491258249,
- "cloudCoverLower": 33.76666720708211,
- "cloudCoverMiddle": 75.13333384195964,
- "cloudCoverTotal": 94.7999979654948,
- "cloudCoverUpper": 94.7999979654948,
- "dewPoint": 3.157393391927087,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 29.733333587646484,
- "valid": "2023-09-19T04:00:00+00:00",
- "localTime": "2023-09-19T14:00:00+10:00",
- "deltaT": 9.624878390766039,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 21.625299072265648,
- "windDirCardinal": "NW",
- "windDirDegree": 316.83247271091614,
- "windSpeed": 27.412495803770195,
- "windGust": 74.1593027114868,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 316.83247271091614,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.9010541280110687,
- "growingDegreeDaysBase5": 0.6927207946777353,
- "growingDegreeDaysBase10": 0.48438746134440197,
- "thickness": 5514.826009114583
}, - {
- "apparentTemperature": 14.837117268581487,
- "cloudCoverLower": 63.83333436648051,
- "cloudCoverMiddle": 87.56666692097983,
- "cloudCoverTotal": 97.39999898274739,
- "cloudCoverUpper": 97.39999898274739,
- "dewPoint": 4.003696695963583,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 32.46666717529297,
- "valid": "2023-09-19T05:00:00+00:00",
- "localTime": "2023-09-19T15:00:00+10:00",
- "deltaT": 9.05460732370804,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 21.129113769531273,
- "windDirCardinal": "NW",
- "windDirDegree": 316.88037281097587,
- "windSpeed": 25.563131955875708,
- "windGust": 71.33841705322266,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 316.88037281097587,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.8803797403971363,
- "growingDegreeDaysBase5": 0.672046407063803,
- "growingDegreeDaysBase10": 0.46371307373046966,
- "thickness": 5512.057662645976
}, - {
- "apparentTemperature": 14.838901650120906,
- "cloudCoverLower": 93.9000015258789,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 4.850000000000023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 35.20000076293945,
- "valid": "2023-09-19T06:00:00+00:00",
- "localTime": "2023-09-19T16:00:00+10:00",
- "deltaT": 8.515834178247228,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 20.632928466796898,
- "windDirCardinal": "NW",
- "windDirDegree": 316.93574402797293,
- "windSpeed": 23.713788761280263,
- "windGust": 68.5175313949585,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 316.93574402797293,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.859705352783204,
- "growingDegreeDaysBase5": 0.6513720194498707,
- "growingDegreeDaysBase10": 0.4430386861165374,
- "thickness": 5509.289316177368
}, - {
- "apparentTemperature": 13.86519235566638,
- "cloudCoverLower": 92.23333485921223,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 5.518365478515648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 40.6000010172526,
- "valid": "2023-09-19T07:00:00+00:00",
- "localTime": "2023-09-19T17:00:00+10:00",
- "deltaT": 7.480209708247564,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.380456542968773,
- "windDirCardinal": "NW",
- "windDirDegree": 314.0200153520826,
- "windSpeed": 23.257813617418503,
- "windGust": 69.23063850402832,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 314.0200153520826,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.8075190226236988,
- "growingDegreeDaysBase5": 0.5991856892903655,
- "growingDegreeDaysBase10": 0.39085235595703216,
- "thickness": 5503.611021995544
}, - {
- "apparentTemperature": 12.832975575464857,
- "cloudCoverLower": 90.56666819254558,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 6.186730957031273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 46.00000127156576,
- "valid": "2023-09-19T08:00:00+00:00",
- "localTime": "2023-09-19T18:00:00+10:00",
- "deltaT": 6.54543108650126,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.127984619140648,
- "windDirCardinal": "NW",
- "windDirDegree": 310.99586868086806,
- "windSpeed": 22.864378781464712,
- "windGust": 69.94374561309813,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 310.99586868086806,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7553326924641937,
- "growingDegreeDaysBase5": 0.5469993591308603,
- "growingDegreeDaysBase10": 0.33866602579752697,
- "thickness": 5497.932727813721
}, - {
- "apparentTemperature": 11.746833189138805,
- "cloudCoverLower": 88.9000015258789,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 6.855096435546898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51.400001525878906,
- "valid": "2023-09-19T09:00:00+00:00",
- "localTime": "2023-09-19T19:00:00+10:00",
- "deltaT": 5.692752869558088,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 16.875512695312523,
- "windDirCardinal": "NW",
- "windDirDegree": 307.8748714435768,
- "windSpeed": 22.536759878335882,
- "windGust": 70.65685272216795,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 307.8748714435768,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7031463623046884,
- "growingDegreeDaysBase5": 0.4948130289713551,
- "growingDegreeDaysBase10": 0.2864796956380218,
- "thickness": 5492.254433631897
}, - {
- "apparentTemperature": 11.955019165709363,
- "cloudCoverLower": 92.60000101725261,
- "cloudCoverMiddle": 99.5,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 93.3000005086263,
- "dewPoint": 7.053389485677087,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 53.900001525878906,
- "valid": "2023-09-19T10:00:00+00:00",
- "localTime": "2023-09-19T20:00:00+10:00",
- "deltaT": 5.328283992819758,
- "rainfall": 0.004166666666666667,
- "snow": 0,
- "tmp2m": 16.348748779296898,
- "windDirCardinal": "NW",
- "windDirDegree": 311.4915627773542,
- "windSpeed": 18.99388378432786,
- "windGust": 67.99399709701537,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 311.4915627773542,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6811978658040374,
- "growingDegreeDaysBase5": 0.47286453247070404,
- "growingDegreeDaysBase10": 0.2645311991373707,
- "thickness": 5491.1935253938045
}, - {
- "apparentTemperature": 11.740637784056531,
- "cloudCoverLower": 96.3000005086263,
- "cloudCoverMiddle": 99,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 86.60000101725261,
- "dewPoint": 7.251682535807333,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 56.400001525878906,
- "valid": "2023-09-19T11:00:00+00:00",
- "localTime": "2023-09-19T21:00:00+10:00",
- "deltaT": 4.976103940553383,
- "rainfall": 0.008333333333333333,
- "snow": 0,
- "tmp2m": 15.821984863281273,
- "windDirCardinal": "NW",
- "windDirDegree": 315.7055487001121,
- "windSpeed": 17.588156342296802,
- "windGust": 65.3311414718628,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 315.7055487001121,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6592493693033863,
- "growingDegreeDaysBase5": 0.45091603597005303,
- "growingDegreeDaysBase10": 0.2425827026367197,
- "thickness": 5490.13261715571
}, - {
- "apparentTemperature": 11.497980621136465,
- "cloudCoverLower": 100,
- "cloudCoverMiddle": 98.5,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 79.9000015258789,
- "dewPoint": 7.449975585937523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 58.900001525878906,
- "valid": "2023-09-19T12:00:00+00:00",
- "localTime": "2023-09-19T22:00:00+10:00",
- "deltaT": 4.635225511359877,
- "rainfall": 0.0125,
- "snow": 0,
- "tmp2m": 15.295220947265648,
- "windDirCardinal": "NW",
- "windDirDegree": 320.6194791767707,
- "windSpeed": 16.29366491488134,
- "windGust": 62.668285846710205,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 320.6194791767707,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6373008728027353,
- "growingDegreeDaysBase5": 0.42896753946940197,
- "growingDegreeDaysBase10": 0.22063420613606866,
- "thickness": 5489.071708917618
}, - {
- "apparentTemperature": 10.419728511666754,
- "cloudCoverLower": 95.26666768391927,
- "cloudCoverMiddle": 83.93333307902019,
- "cloudCoverTotal": 95.26666768391927,
- "cloudCoverUpper": 59.10000101725261,
- "dewPoint": 7.016646321614587,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 59.36666742960612,
- "valid": "2023-09-19T13:00:00+00:00",
- "localTime": "2023-09-19T23:00:00+10:00",
- "deltaT": 4.524498255710622,
- "rainfall": 0.04583333333333333,
- "snow": 0,
- "tmp2m": 14.730818684895837,
- "windDirCardinal": "NW",
- "windDirDegree": 311.4453188097768,
- "windSpeed": 18.45110769282821,
- "windGust": 68.95775413513184,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 311.4453188097768,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6137841118706598,
- "growingDegreeDaysBase5": 0.40545077853732653,
- "growingDegreeDaysBase10": 0.1971174452039932,
- "thickness": 5481.2394824028015
}, - {
- "apparentTemperature": 8.863565166627003,
- "cloudCoverLower": 90.53333536783855,
- "cloudCoverMiddle": 69.36666615804036,
- "cloudCoverTotal": 90.53333536783855,
- "cloudCoverUpper": 38.300000508626304,
- "dewPoint": 6.583317057291708,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 59.833333333333336,
- "valid": "2023-09-19T14:00:00+00:00",
- "localTime": "2023-09-20T00:00:00+10:00",
- "deltaT": 4.415689126845297,
- "rainfall": 0.07916666666666666,
- "snow": 0,
- "tmp2m": 14.166416422526083,
- "windDirCardinal": "NW",
- "windDirDegree": 304.33202438020226,
- "windSpeed": 23.076284932555556,
- "windGust": 78.2571113204956,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 304.33202438020226,
- "weatherIcon": "LIGHT_RAIN",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5902673509385867,
- "growingDegreeDaysBase5": 0.3819340176052535,
- "growingDegreeDaysBase10": 0.17360068427192013,
- "thickness": 5473.407255887985
}, - {
- "apparentTemperature": 7.614156233562621,
- "cloudCoverLower": 85.80000305175781,
- "cloudCoverMiddle": 54.79999923706055,
- "cloudCoverTotal": 85.80000305175781,
- "cloudCoverUpper": 17.5,
- "dewPoint": 6.149987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 60.29999923706055,
- "valid": "2023-09-19T15:00:00+00:00",
- "localTime": "2023-09-20T01:00:00+10:00",
- "deltaT": 4.308775053401366,
- "rainfall": 0.1125,
- "snow": 0,
- "tmp2m": 13.602014160156273,
- "windDirCardinal": "WNW",
- "windDirDegree": 298.81327725759263,
- "windSpeed": 26.133702035378917,
- "windGust": 84.7981583404541,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 298.81327725759263,
- "weatherIcon": "LIGHT_RAIN",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.5667505900065113,
- "growingDegreeDaysBase5": 0.35841725667317803,
- "growingDegreeDaysBase10": 0.1500839233398447,
- "thickness": 5465.575029373169
}, - {
- "apparentTemperature": 8.052498798547855,
- "cloudCoverLower": 63.46666844685872,
- "cloudCoverMiddle": 37.26666617393494,
- "cloudCoverTotal": 63.46666844685872,
- "cloudCoverUpper": 11.666666666666668,
- "dewPoint": 5.883325195312523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 59.59999974568685,
- "valid": "2023-09-19T16:00:00+00:00",
- "localTime": "2023-09-20T02:00:00+10:00",
- "deltaT": 4.376895743768587,
- "rainfall": 0.08333333333333333,
- "snow": 0,
- "tmp2m": 13.543776448567712,
- "windDirCardinal": "WNW",
- "windDirDegree": 302.1491055670608,
- "windSpeed": 23.33573008692709,
- "windGust": 72.68403768539427,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 302.1491055670608,
- "weatherIcon": "NIGHT_SHOWER",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5643240186903213,
- "growingDegreeDaysBase5": 0.35599068535698797,
- "growingDegreeDaysBase10": 0.14765735202365465,
- "thickness": 5461.169492239753
}, - {
- "apparentTemperature": 8.836447894835517,
- "cloudCoverLower": 41.13333384195963,
- "cloudCoverMiddle": 19.733333110809326,
- "cloudCoverTotal": 41.13333384195963,
- "cloudCoverUpper": 5.833333333333334,
- "dewPoint": 5.616662597656273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 58.90000025431315,
- "valid": "2023-09-19T17:00:00+00:00",
- "localTime": "2023-09-20T03:00:00+10:00",
- "deltaT": 4.444735529503374,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.485538736979208,
- "windDirCardinal": "NW",
- "windDirDegree": 306.3746481229366,
- "windSpeed": 18.761944077764674,
- "windGust": 63.83138465881348,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 306.3746481229366,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5618974473741336,
- "growingDegreeDaysBase5": 0.35356411404080035,
- "growingDegreeDaysBase10": 0.145230780707467,
- "thickness": 5456.7639551063385
}, - {
- "apparentTemperature": 9.18251093554117,
- "cloudCoverLower": 18.799999237060547,
- "cloudCoverMiddle": 2.200000047683716,
- "cloudCoverTotal": 18.799999237060547,
- "cloudCoverUpper": 0,
- "dewPoint": 5.350000000000023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 58.20000076293945,
- "valid": "2023-09-19T18:00:00+00:00",
- "localTime": "2023-09-20T04:00:00+10:00",
- "deltaT": 4.512293776009519,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.427301025390648,
- "windDirCardinal": "NW",
- "windDirDegree": 311.8300456291014,
- "windSpeed": 16.441726962072135,
- "windGust": 52.77958236694335,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 311.8300456291014,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5594708760579437,
- "growingDegreeDaysBase5": 0.3511375427246103,
- "growingDegreeDaysBase10": 0.14280420939127697,
- "thickness": 5452.358417972922
}, - {
- "apparentTemperature": 8.623673343907646,
- "cloudCoverLower": 45.86666615804036,
- "cloudCoverMiddle": 7.800000031789144,
- "cloudCoverTotal": 45.86666615804036,
- "cloudCoverUpper": 2.1000000635782876,
- "dewPoint": 5.729567464192712,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 60.06666692097982,
- "valid": "2023-09-19T19:00:00+00:00",
- "localTime": "2023-09-20T05:00:00+10:00",
- "deltaT": 4.306766903212512,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.337752278645837,
- "windDirCardinal": "NW",
- "windDirDegree": 321.7647151014976,
- "windSpeed": 19.251069575381862,
- "windGust": 63.813560485839844,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 321.7647151014976,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5557396782769098,
- "growingDegreeDaysBase5": 0.34740634494357653,
- "growingDegreeDaysBase10": 0.1390730116102432,
- "thickness": 5456.49153009057
}, - {
- "apparentTemperature": 7.543721619952805,
- "cloudCoverLower": 72.93333307902017,
- "cloudCoverMiddle": 13.400000015894571,
- "cloudCoverTotal": 72.93333307902017,
- "cloudCoverUpper": 4.200000127156575,
- "dewPoint": 6.109134928385458,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 61.93333307902018,
- "valid": "2023-09-19T20:00:00+00:00",
- "localTime": "2023-09-20T06:00:00+10:00",
- "deltaT": 4.102449045032618,
- "rainfall": 0.008333333333333335,
- "snow": 0,
- "tmp2m": 13.248203531901083,
- "windDirCardinal": "NNW",
- "windDirDegree": 329.0117034571765,
- "windSpeed": 24.73524492773093,
- "windGust": 72.64838933944702,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 329.0117034571765,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5520084804958785,
- "growingDegreeDaysBase5": 0.3436751471625451,
- "growingDegreeDaysBase10": 0.1353418138292118,
- "thickness": 5460.624642208219
}, - {
- "apparentTemperature": 6.779882986234645,
- "cloudCoverLower": 100,
- "cloudCoverMiddle": 19,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 6.300000190734863,
- "dewPoint": 6.488702392578148,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 63.79999923706055,
- "valid": "2023-09-19T21:00:00+00:00",
- "localTime": "2023-09-20T07:00:00+10:00",
- "deltaT": 3.899212820531673,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.158654785156273,
- "windDirCardinal": "NNW",
- "windDirDegree": 334.3732282540036,
- "windSpeed": 28.588554242802882,
- "windGust": 84.74254692077636,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 334.3732282540036,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.5482772827148447,
- "growingDegreeDaysBase5": 0.33994394938151135,
- "growingDegreeDaysBase10": 0.13161061604817803,
- "thickness": 5464.757754325867
}, - {
- "apparentTemperature": 7.387542907264876,
- "cloudCoverLower": 69.19999996821086,
- "cloudCoverMiddle": 12.666666666666668,
- "cloudCoverTotal": 69.19999996821086,
- "cloudCoverUpper": 4.200000127156576,
- "dewPoint": 7.248915608723962,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 69.86666615804036,
- "valid": "2023-09-19T22:00:00+00:00",
- "localTime": "2023-09-20T08:00:00+10:00",
- "deltaT": 3.233211519220287,
- "rainfall": 0.1125,
- "snow": 0,
- "tmp2m": 12.698958333333337,
- "windDirCardinal": "NW",
- "windDirDegree": 317.43751855882476,
- "windSpeed": 24.124404116065918,
- "windGust": 78.51030246734618,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 317.43751855882476,
- "weatherIcon": "SHOWER",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.529123263888889,
- "growingDegreeDaysBase5": 0.3207899305555557,
- "growingDegreeDaysBase10": 0.11245659722222237,
- "thickness": 5457.884915669759
}, - {
- "apparentTemperature": 7.428417648597863,
- "cloudCoverLower": 38.399999936421715,
- "cloudCoverMiddle": 6.333333333333334,
- "cloudCoverTotal": 38.399999936421715,
- "cloudCoverUpper": 2.100000063578288,
- "dewPoint": 8.009128824869833,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 75.93333307902019,
- "valid": "2023-09-19T23:00:00+00:00",
- "localTime": "2023-09-20T09:00:00+10:00",
- "deltaT": 2.580030177479715,
- "rainfall": 0.225,
- "snow": 0,
- "tmp2m": 12.239261881510458,
- "windDirCardinal": "WNW",
- "windDirDegree": 295.71231428667295,
- "windSpeed": 22.49812156749594,
- "windGust": 69.49813270568848,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 295.71231428667295,
- "weatherIcon": "SHOWER",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5099692450629357,
- "growingDegreeDaysBase5": 0.3016359117296024,
- "growingDegreeDaysBase10": 0.0933025783962691,
- "thickness": 5451.012077013652
}, - {
- "apparentTemperature": 6.79095416087932,
- "cloudCoverLower": 7.599999904632568,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 7.599999904632568,
- "cloudCoverUpper": 0,
- "dewPoint": 8.769342041015648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 82,
- "valid": "2023-09-20T00:00:00+00:00",
- "localTime": "2023-09-20T10:00:00+10:00",
- "deltaT": 1.9362496970740892,
- "rainfall": 0.6468750000000001,
- "snow": 0,
- "tmp2m": 11.779565429687523,
- "windDirCardinal": "W",
- "windDirDegree": 274.1395413567722,
- "windSpeed": 24.28664723722453,
- "windGust": 63.50558996200561,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 274.1395413567722,
- "weatherIcon": "SHOWER",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.4908152262369801,
- "growingDegreeDaysBase5": 0.2824818929036468,
- "growingDegreeDaysBase10": 0.07414855957031344,
- "thickness": 5444.139238357544
}, - {
- "apparentTemperature": 7.673040022589273,
- "cloudCoverLower": 38.39999993642171,
- "cloudCoverMiddle": 2,
- "cloudCoverTotal": 38.39999993642171,
- "cloudCoverUpper": 0,
- "dewPoint": 7.275771077473962,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70.03333282470703,
- "valid": "2023-09-20T01:00:00+00:00",
- "localTime": "2023-09-20T11:00:00+10:00",
- "deltaT": 3.246154849482279,
- "rainfall": 0.5350694444444445,
- "snow": 0,
- "tmp2m": 13.141239420572958,
- "windDirCardinal": "W",
- "windDirDegree": 270.2511388280248,
- "windSpeed": 25.48311522216188,
- "windGust": 59.947290802001945,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 270.2511388280248,
- "weatherIcon": "SHOWER",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.5475516425238732,
- "growingDegreeDaysBase5": 0.3392183091905399,
- "growingDegreeDaysBase10": 0.1308849758572066,
- "thickness": 5439.357825597127
}, - {
- "apparentTemperature": 8.452612836405894,
- "cloudCoverLower": 69.19999996821085,
- "cloudCoverMiddle": 4,
- "cloudCoverTotal": 69.19999996821085,
- "cloudCoverUpper": 0,
- "dewPoint": 5.782200113932333,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 58.06666564941406,
- "valid": "2023-09-20T02:00:00+00:00",
- "localTime": "2023-09-20T12:00:00+10:00",
- "deltaT": 4.642822632004641,
- "rainfall": 0.4232638888888889,
- "snow": 0,
- "tmp2m": 14.502913411458337,
- "windDirCardinal": "W",
- "windDirDegree": 266.72606067812114,
- "windSpeed": 26.786170360101895,
- "windGust": 58.92921524047851,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 266.72606067812114,
- "weatherIcon": "SHOWER",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.604288058810764,
- "growingDegreeDaysBase5": 0.3959547254774307,
- "growingDegreeDaysBase10": 0.18762139214409737,
- "thickness": 5434.576412836711
}, - {
- "apparentTemperature": 9.121244772219232,
- "cloudCoverLower": 100,
- "cloudCoverMiddle": 6,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 4.288629150390648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 46.099998474121094,
- "valid": "2023-09-20T03:00:00+00:00",
- "localTime": "2023-09-20T13:00:00+10:00",
- "deltaT": 6.176653117121653,
- "rainfall": 0.3114583333333334,
- "snow": 0,
- "tmp2m": 15.864587402343773,
- "windDirCardinal": "W",
- "windDirDegree": 263.5388235523475,
- "windSpeed": 28.18103116333138,
- "windGust": 57.91113967895507,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 263.5388235523475,
- "weatherIcon": "LIGHT_RAIN",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.6610244750976572,
- "growingDegreeDaysBase5": 0.45269114176432385,
- "growingDegreeDaysBase10": 0.24435780843099053,
- "thickness": 5429.795000076294
}, - {
- "apparentTemperature": 8.613722902302422,
- "cloudCoverLower": 90.39999898274739,
- "cloudCoverMiddle": 4,
- "cloudCoverTotal": 90.39999898274739,
- "cloudCoverUpper": 0,
- "dewPoint": 4.682194010416708,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 50.26666514078776,
- "valid": "2023-09-20T04:00:00+00:00",
- "localTime": "2023-09-20T14:00:00+10:00",
- "deltaT": 5.573674498070142,
- "rainfall": 0.3274305555555556,
- "snow": 0,
- "tmp2m": 15.037723795572958,
- "windDirCardinal": "W",
- "windDirDegree": 262.30314421754264,
- "windSpeed": 27.019034120205685,
- "windGust": 58.81242370605467,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 262.30314421754264,
- "weatherIcon": "LIGHT_RAIN",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.6265718248155399,
- "growingDegreeDaysBase5": 0.4182384914822066,
- "growingDegreeDaysBase10": 0.20990515814887326,
- "thickness": 5421.484055836995
}, - {
- "apparentTemperature": 8.085609825956123,
- "cloudCoverLower": 80.7999979654948,
- "cloudCoverMiddle": 2,
- "cloudCoverTotal": 80.7999979654948,
- "cloudCoverUpper": 0,
- "dewPoint": 5.075758870442712,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 54.43333180745442,
- "valid": "2023-09-20T05:00:00+00:00",
- "localTime": "2023-09-20T15:00:00+10:00",
- "deltaT": 5.0048726700033885,
- "rainfall": 0.34340277777777783,
- "snow": 0,
- "tmp2m": 14.210860188802087,
- "windDirCardinal": "W",
- "windDirDegree": 260.9570970747051,
- "windSpeed": 25.87072956721673,
- "windGust": 59.71370773315429,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 260.9570970747051,
- "weatherIcon": "LIGHT_RAIN",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.5921191745334202,
- "growingDegreeDaysBase5": 0.38378584120008696,
- "growingDegreeDaysBase10": 0.17545250786675362,
- "thickness": 5413.173111597697
}, - {
- "apparentTemperature": 7.537958992889838,
- "cloudCoverLower": 71.19999694824219,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 71.19999694824219,
- "cloudCoverUpper": 0,
- "dewPoint": 5.469323730468773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 58.599998474121094,
- "valid": "2023-09-20T06:00:00+00:00",
- "localTime": "2023-09-20T16:00:00+10:00",
- "deltaT": 4.465579387801654,
- "rainfall": 0.35937500000000006,
- "snow": 0,
- "tmp2m": 13.383996582031273,
- "windDirCardinal": "W",
- "windDirDegree": 259.486909369086,
- "windSpeed": 24.738024336683054,
- "windGust": 63.140616416931145,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 259.486909369086,
- "weatherIcon": "LIGHT_RAIN",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.557666524251303,
- "growingDegreeDaysBase5": 0.34933319091796966,
- "growingDegreeDaysBase10": 0.14099985758463635,
- "thickness": 5404.862167358398
}, - {
- "apparentTemperature": 7.226382216551306,
- "cloudCoverLower": 60.36666488647461,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 60.36666488647461,
- "cloudCoverUpper": 0,
- "dewPoint": 4.075769042968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 54.99999872843424,
- "valid": "2023-09-20T07:00:00+00:00",
- "localTime": "2023-09-20T17:00:00+10:00",
- "deltaT": 4.78682061574113,
- "rainfall": 0.2555555555555556,
- "snow": 0,
- "tmp2m": 12.904870605468773,
- "windDirCardinal": "WSW",
- "windDirDegree": 257.5538221554791,
- "windSpeed": 22.499532560140064,
- "windGust": 56.39399505615233,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 257.5538221554791,
- "weatherIcon": "SHOWER",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5377029418945322,
- "growingDegreeDaysBase5": 0.32936960856119885,
- "growingDegreeDaysBase10": 0.12103627522786553,
- "thickness": 5399.049842834473
}, - {
- "apparentTemperature": 7.280810137733239,
- "cloudCoverLower": 49.53333282470703,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 49.53333282470703,
- "cloudCoverUpper": 0,
- "dewPoint": 2.6822143554687727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 51.3999989827474,
- "valid": "2023-09-20T08:00:00+00:00",
- "localTime": "2023-09-20T18:00:00+10:00",
- "deltaT": 5.095306069496488,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.425744628906273,
- "windDirCardinal": "WSW",
- "windDirDegree": 255.19700653503273,
- "windSpeed": 18.44753108785493,
- "windGust": 52.172998352050776,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 255.19700653503273,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5177393595377613,
- "growingDegreeDaysBase5": 0.30940602620442803,
- "growingDegreeDaysBase10": 0.10107269287109469,
- "thickness": 5393.237518310547
}, - {
- "apparentTemperature": 6.942853292913325,
- "cloudCoverLower": 38.70000076293945,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 38.70000076293945,
- "cloudCoverUpper": 0,
- "dewPoint": 1.2886596679687727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 47.79999923706055,
- "valid": "2023-09-20T09:00:00+00:00",
- "localTime": "2023-09-20T19:00:00+10:00",
- "deltaT": 5.390470418272681,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.946618652343773,
- "windDirCardinal": "WSW",
- "windDirDegree": 252.2713538474662,
- "windSpeed": 16.47972321739565,
- "windGust": 45.954001579284665,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 252.2713538474662,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.49777577718099053,
- "growingDegreeDaysBase5": 0.28944244384765716,
- "growingDegreeDaysBase10": 0.08110911051432386,
- "thickness": 5387.425193786621
}, - {
- "apparentTemperature": 6.331581575027251,
- "cloudCoverLower": 56.6999994913737,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 56.6999994913737,
- "cloudCoverUpper": 0,
- "dewPoint": 2.015547688802087,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 53.53333282470703,
- "valid": "2023-09-20T10:00:00+00:00",
- "localTime": "2023-09-20T20:00:00+10:00",
- "deltaT": 4.72449111849771,
- "rainfall": 0.031944444444444456,
- "snow": 0,
- "tmp2m": 11.200402832031273,
- "windDirCardinal": "W",
- "windDirDegree": 259.7131450023858,
- "windSpeed": 16.533487724375274,
- "windGust": 49.83912597656249,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 259.7131450023858,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.46668345133463635,
- "growingDegreeDaysBase5": 0.25835011800130303,
- "growingDegreeDaysBase10": 0.050016784667969695,
- "thickness": 5380.991111755371
}, - {
- "apparentTemperature": 5.647131657584318,
- "cloudCoverLower": 74.69999821980795,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 74.69999821980795,
- "cloudCoverUpper": 0,
- "dewPoint": 2.7424357096354584,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 59.266666412353516,
- "valid": "2023-09-20T11:00:00+00:00",
- "localTime": "2023-09-20T21:00:00+10:00",
- "deltaT": 4.091037041179726,
- "rainfall": 0.015972222222222228,
- "snow": 0,
- "tmp2m": 10.454187011718773,
- "windDirCardinal": "W",
- "windDirDegree": 266.98543116851766,
- "windSpeed": 16.861700771461482,
- "windGust": 51.726250305175775,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 266.98543116851766,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.43559112548828216,
- "growingDegreeDaysBase5": 0.22725779215494885,
- "growingDegreeDaysBase10": 0.01892445882161553,
- "thickness": 5374.557029724121
}, - {
- "apparentTemperature": 4.8939098525898785,
- "cloudCoverLower": 92.69999694824219,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 92.69999694824219,
- "cloudCoverUpper": 0,
- "dewPoint": 3.4693237304687727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 65,
- "valid": "2023-09-20T12:00:00+00:00",
- "localTime": "2023-09-20T22:00:00+10:00",
- "deltaT": 3.4834445834368104,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 9.707971191406273,
- "windDirCardinal": "W",
- "windDirDegree": 273.87430117099177,
- "windSpeed": 17.448882114470255,
- "windGust": 53.61337463378906,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 273.87430117099177,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.40449879964192803,
- "growingDegreeDaysBase5": 0.1961654663085947,
- "growingDegreeDaysBase10": 0,
- "thickness": 5368.122947692871
}, - {
- "apparentTemperature": 4.593685526575419,
- "cloudCoverLower": 64.63333129882812,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 64.63333129882812,
- "cloudCoverUpper": 0,
- "dewPoint": 3.6424296061198334,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 67.8000005086263,
- "valid": "2023-09-20T13:00:00+00:00",
- "localTime": "2023-09-20T23:00:00+10:00",
- "deltaT": 3.1907705136451217,
- "rainfall": 0.05590277777777779,
- "snow": 0,
- "tmp2m": 9.293959554036462,
- "windDirCardinal": "W",
- "windDirDegree": 273.5015645509512,
- "windSpeed": 17.055548436283903,
- "windGust": 51.3236164855957,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 273.5015645509512,
- "weatherIcon": "NIGHT_SHOWER",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.3872483147515192,
- "growingDegreeDaysBase5": 0.1789149814181859,
- "growingDegreeDaysBase10": 0,
- "thickness": 5370.395879109701
}, - {
- "apparentTemperature": 4.289080153638885,
- "cloudCoverLower": 36.56666564941406,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 36.56666564941406,
- "cloudCoverUpper": 0,
- "dewPoint": 3.815535481770837,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70.60000101725261,
- "valid": "2023-09-20T14:00:00+00:00",
- "localTime": "2023-09-21T00:00:00+10:00",
- "deltaT": 2.9033544504515163,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 8.879947916666708,
- "windDirCardinal": "W",
- "windDirDegree": 273.11124748703105,
- "windSpeed": 16.662970629732534,
- "windGust": 49.033858337402336,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 273.11124748703105,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.36999782986111285,
- "growingDegreeDaysBase5": 0.1616644965277795,
- "growingDegreeDaysBase10": 0,
- "thickness": 5372.668810526529
}, - {
- "apparentTemperature": 3.9802642640466246,
- "cloudCoverLower": 8.5,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 8.5,
- "cloudCoverUpper": 0,
- "dewPoint": 3.9886413574218977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 73.4000015258789,
- "valid": "2023-09-20T15:00:00+00:00",
- "localTime": "2023-09-21T01:00:00+10:00",
- "deltaT": 2.6206876131298102,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 8.465936279296898,
- "windDirCardinal": "W",
- "windDirDegree": 272.7021150764204,
- "windSpeed": 16.271203405998836,
- "windGust": 44.79642934799193,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 272.7021150764204,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.35274734497070404,
- "growingDegreeDaysBase5": 0.14441401163737072,
- "growingDegreeDaysBase10": 0,
- "thickness": 5374.941741943359
}, - {
- "apparentTemperature": 3.9088195350515864,
- "cloudCoverLower": 7.333333333333333,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 7.333333333333333,
- "cloudCoverUpper": 0,
- "dewPoint": 3.915541585286462,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 74.56666819254558,
- "valid": "2023-09-20T16:00:00+00:00",
- "localTime": "2023-09-21T02:00:00+10:00",
- "deltaT": 2.4983316069245944,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 8.186385091145837,
- "windDirCardinal": "W",
- "windDirDegree": 273.02806674215554,
- "windSpeed": 15.157080124560764,
- "windGust": 43.39041326522826,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 273.02806674215554,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.3410993787977432,
- "growingDegreeDaysBase5": 0.13276604546440987,
- "growingDegreeDaysBase10": 0,
- "thickness": 5379.520055135091
}, - {
- "apparentTemperature": 3.8365251913455953,
- "cloudCoverLower": 6.166666666666666,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 6.166666666666666,
- "cloudCoverUpper": 0,
- "dewPoint": 3.8424418131510834,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 75.73333485921223,
- "valid": "2023-09-20T17:00:00+00:00",
- "localTime": "2023-09-21T03:00:00+10:00",
- "deltaT": 2.377397742456276,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 7.906833902994833,
- "windDirCardinal": "W",
- "windDirDegree": 273.4057237457032,
- "windSpeed": 14.04352520880084,
- "windGust": 41.98439718246458,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 273.4057237457032,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.3294514126247847,
- "growingDegreeDaysBase5": 0.12111807929145138,
- "growingDegreeDaysBase10": 0,
- "thickness": 5384.098368326823
}, - {
- "apparentTemperature": 3.7633800239117834,
- "cloudCoverLower": 5,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 5,
- "cloudCoverUpper": 0,
- "dewPoint": 3.7693420410156477,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 76.9000015258789,
- "valid": "2023-09-20T18:00:00+00:00",
- "localTime": "2023-09-21T04:00:00+10:00",
- "deltaT": 2.25783932479254,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 7.627282714843773,
- "windDirCardinal": "W",
- "windDirDegree": 273.8484066155122,
- "windSpeed": 12.930685497799317,
- "windGust": 40.57838109970092,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 273.8484066155122,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.31780344645182385,
- "growingDegreeDaysBase5": 0.10947011311849053,
- "growingDegreeDaysBase10": 0,
- "thickness": 5388.676681518555
}, - {
- "apparentTemperature": 3.8959931005669546,
- "cloudCoverLower": 5,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 5,
- "cloudCoverUpper": 0,
- "dewPoint": 3.6037027994792084,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 76.13333384195964,
- "valid": "2023-09-20T19:00:00+00:00",
- "localTime": "2023-09-21T05:00:00+10:00",
- "deltaT": 2.3247716792004507,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 7.583133951822958,
- "windDirCardinal": "W",
- "windDirDegree": 276.9284343587205,
- "windSpeed": 11.845149574892826,
- "windGust": 39.07885688781737,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 276.9284343587205,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.3159639146592899,
- "growingDegreeDaysBase5": 0.1076305813259566,
- "growingDegreeDaysBase10": 0,
- "thickness": 5396.225413004557
}, - {
- "apparentTemperature": 4.020804143775022,
- "cloudCoverLower": 5,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 5,
- "cloudCoverUpper": 0,
- "dewPoint": 3.438063557942712,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 75.36666615804036,
- "valid": "2023-09-20T20:00:00+00:00",
- "localTime": "2023-09-21T06:00:00+10:00",
- "deltaT": 2.391308009471034,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 7.538985188802087,
- "windDirCardinal": "W",
- "windDirDegree": 280.61665232756354,
- "windSpeed": 10.800662142069154,
- "windGust": 37.579332675933834,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 280.61665232756354,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.3141243828667536,
- "growingDegreeDaysBase5": 0.10579104953342029,
- "growingDegreeDaysBase10": 0,
- "thickness": 5403.7741444905605
}, - {
- "apparentTemperature": 4.135261399039511,
- "cloudCoverLower": 5,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 5,
- "cloudCoverUpper": 0,
- "dewPoint": 3.2724243164062727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 74.5999984741211,
- "valid": "2023-09-20T21:00:00+00:00",
- "localTime": "2023-09-21T07:00:00+10:00",
- "deltaT": 2.457445582322027,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 7.494836425781273,
- "windDirCardinal": "WNW",
- "windDirDegree": 285.0712715090343,
- "windSpeed": 9.810343022016301,
- "windGust": 36.07980846405029,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 285.0712715090343,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.31228485107421966,
- "growingDegreeDaysBase5": 0.10395151774088636,
- "growingDegreeDaysBase10": 0,
- "thickness": 5411.3228759765625
}, - {
- "apparentTemperature": 5.607440492367015,
- "cloudCoverLower": 23.90000025431315,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 23.90000025431315,
- "cloudCoverUpper": 0,
- "dewPoint": 2.5316202799479584,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 64.6666653951009,
- "valid": "2023-09-20T22:00:00+00:00",
- "localTime": "2023-09-21T08:00:00+10:00",
- "deltaT": 3.4751150492209906,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 9.246555582682333,
- "windDirCardinal": "W",
- "windDirDegree": 266.95835973316974,
- "windSpeed": 10.935509585985493,
- "windGust": 31.86030069351196,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 266.95835973316974,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.38527314927843054,
- "growingDegreeDaysBase5": 0.17693981594509722,
- "growingDegreeDaysBase10": 0,
- "thickness": 5422.2018636067705
}, - {
- "apparentTemperature": 6.854243752046582,
- "cloudCoverLower": 42.8000005086263,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 42.8000005086263,
- "cloudCoverUpper": 0,
- "dewPoint": 1.7908162434895871,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 54.733332316080734,
- "valid": "2023-09-20T23:00:00+00:00",
- "localTime": "2023-09-21T09:00:00+10:00",
- "deltaT": 4.583910492467176,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 10.998274739583337,
- "windDirCardinal": "WSW",
- "windDirDegree": 253.295614371639,
- "windSpeed": 12.912198509822153,
- "windGust": 29.20948024749756,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 253.295614371639,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.45826144748263903,
- "growingDegreeDaysBase5": 0.2499281141493057,
- "growingDegreeDaysBase10": 0.04159478081597238,
- "thickness": 5433.0808512369795
}, - {
- "apparentTemperature": 7.926607244581366,
- "cloudCoverLower": 61.70000076293945,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 61.70000076293945,
- "cloudCoverUpper": 0,
- "dewPoint": 1.0500122070312727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 44.79999923706055,
- "valid": "2023-09-21T00:00:00+00:00",
- "localTime": "2023-09-21T10:00:00+10:00",
- "deltaT": 5.822118694779805,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.749993896484398,
- "windDirCardinal": "WSW",
- "windDirDegree": 243.65005716039522,
- "windSpeed": 15.416268405980817,
- "windGust": 26.558659801483156,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 243.65005716039522,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5312497456868499,
- "growingDegreeDaysBase5": 0.32291641235351654,
- "growingDegreeDaysBase10": 0.11458307902018323,
- "thickness": 5443.9598388671875
}, - {
- "apparentTemperature": 8.524265849886635,
- "cloudCoverLower": 74.26666768391927,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 74.26666768391927,
- "cloudCoverUpper": 1.6666666666666667,
- "dewPoint": 0.8506713867187727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 42.53333282470703,
- "valid": "2023-09-21T01:00:00+00:00",
- "localTime": "2023-09-21T11:00:00+10:00",
- "deltaT": 6.16487194538005,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.359165445963583,
- "windDirCardinal": "WSW",
- "windDirDegree": 240.9045169949155,
- "windSpeed": 15.340450034739035,
- "windGust": 26.04942724227905,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 240.9045169949155,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.556631893581816,
- "growingDegreeDaysBase5": 0.3482985602484826,
- "growingDegreeDaysBase10": 0.1399652269151493,
- "thickness": 5450.884623209636
}, - {
- "apparentTemperature": 9.10889967577659,
- "cloudCoverLower": 86.83333460489908,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 86.83333460489908,
- "cloudCoverUpper": 3.3333333333333335,
- "dewPoint": 0.6513305664062727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 40.266666412353516,
- "valid": "2023-09-21T02:00:00+00:00",
- "localTime": "2023-09-21T12:00:00+10:00",
- "deltaT": 6.523022984965214,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.968336995442712,
- "windDirCardinal": "WSW",
- "windDirDegree": 238.1381252686939,
- "windSpeed": 15.300158225260262,
- "windGust": 25.54019468307495,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 238.1381252686939,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5820140414767796,
- "growingDegreeDaysBase5": 0.37368070814344634,
- "growingDegreeDaysBase10": 0.165347374810113,
- "thickness": 5457.809407552083
}, - {
- "apparentTemperature": 9.680059186660097,
- "cloudCoverLower": 99.4000015258789,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 99.4000015258789,
- "cloudCoverUpper": 5,
- "dewPoint": 0.45198974609377274,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 38,
- "valid": "2023-09-21T03:00:00+00:00",
- "localTime": "2023-09-21T13:00:00+10:00",
- "deltaT": 6.897980088157318,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.577508544921898,
- "windDirCardinal": "SW",
- "windDirDegree": 235.36362892645326,
- "windSpeed": 15.295673731950004,
- "windGust": 25.03096212387085,
- "windGustDirCardinal": "SW",
- "windGustDirDegree": 235.36362892645326,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6073961893717457,
- "growingDegreeDaysBase5": 0.3990628560384124,
- "growingDegreeDaysBase10": 0.19072952270507906,
- "thickness": 5464.734191894531
}, - {
- "apparentTemperature": 10.115595758245275,
- "cloudCoverLower": 83.26666768391927,
- "cloudCoverMiddle": 1.5333333015441895,
- "cloudCoverTotal": 83.26666768391927,
- "cloudCoverUpper": 5,
- "dewPoint": 0.6335896809895871,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 38.06666692097982,
- "valid": "2023-09-21T04:00:00+00:00",
- "localTime": "2023-09-21T14:00:00+10:00",
- "deltaT": 6.924428460516431,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.751153564453148,
- "windDirCardinal": "SW",
- "windDirDegree": 234.7873083591753,
- "windSpeed": 14.087961156237595,
- "windGust": 24.607308082580566,
- "windGustDirCardinal": "SW",
- "windGustDirDegree": 234.7873083591753,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6146313985188812,
- "growingDegreeDaysBase5": 0.4062980651855478,
- "growingDegreeDaysBase10": 0.19796473185221447,
- "thickness": 5470.801106770833
}, - {
- "apparentTemperature": 10.551116453828142,
- "cloudCoverLower": 67.13333384195963,
- "cloudCoverMiddle": 3.066666603088379,
- "cloudCoverTotal": 67.13333384195963,
- "cloudCoverUpper": 5,
- "dewPoint": 0.8151896158854584,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 38.13333384195963,
- "valid": "2023-09-21T05:00:00+00:00",
- "localTime": "2023-09-21T15:00:00+10:00",
- "deltaT": 6.950755948894818,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.924798583984398,
- "windDirCardinal": "SW",
- "windDirDegree": 234.1029959409938,
- "windSpeed": 12.881941137469292,
- "windGust": 24.183654041290286,
- "windGustDirCardinal": "SW",
- "windGustDirDegree": 234.1029959409938,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6218666076660165,
- "growingDegreeDaysBase5": 0.4135332743326832,
- "growingDegreeDaysBase10": 0.2051999409993499,
- "thickness": 5476.868021647136
}, - {
- "apparentTemperature": 10.986522458704815,
- "cloudCoverLower": 51,
- "cloudCoverMiddle": 4.599999904632568,
- "cloudCoverTotal": 51,
- "cloudCoverUpper": 5,
- "dewPoint": 0.9967895507812727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 38.20000076293945,
- "valid": "2023-09-21T06:00:00+00:00",
- "localTime": "2023-09-21T16:00:00+10:00",
- "deltaT": 6.976962800968041,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.098443603515648,
- "windDirCardinal": "SW",
- "windDirDegree": 233.27746441599712,
- "windSpeed": 11.67813806661654,
- "windGust": 23.759999999999998,
- "windGustDirCardinal": "SW",
- "windGustDirDegree": 233.27746441599712,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6291018168131519,
- "growingDegreeDaysBase5": 0.42076848347981866,
- "growingDegreeDaysBase10": 0.2124351501464853,
- "thickness": 5482.9349365234375
}, - {
- "apparentTemperature": 10.296220544705903,
- "cloudCoverLower": 43.13333320617676,
- "cloudCoverMiddle": 3.066666603088379,
- "cloudCoverTotal": 43.13333320617676,
- "cloudCoverUpper": 4.066666682561238,
- "dewPoint": 1.6495808919270871,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 43.800000508626304,
- "valid": "2023-09-21T07:00:00+00:00",
- "localTime": "2023-09-21T17:00:00+10:00",
- "deltaT": 6.133560081235066,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.983595784505212,
- "windDirCardinal": "SW",
- "windDirDegree": 221.73019765568267,
- "windSpeed": 10.238839173840738,
- "windGust": 19.803662109375,
- "windGustDirCardinal": "SW",
- "windGustDirDegree": 221.73019765568267,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5826498243543838,
- "growingDegreeDaysBase5": 0.37431649102105047,
- "growingDegreeDaysBase10": 0.16598315768771715,
- "thickness": 5484.306457519531
}, - {
- "apparentTemperature": 9.470083486324103,
- "cloudCoverLower": 35.266666412353516,
- "cloudCoverMiddle": 1.5333333015441895,
- "cloudCoverTotal": 35.266666412353516,
- "cloudCoverUpper": 3.1333333651224775,
- "dewPoint": 2.3023722330729584,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 49.40000025431315,
- "valid": "2023-09-21T08:00:00+00:00",
- "localTime": "2023-09-21T18:00:00+10:00",
- "deltaT": 5.362135046880882,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.868747965494833,
- "windDirCardinal": "SSW",
- "windDirDegree": 207.22519557998748,
- "windSpeed": 9.333401882603582,
- "windGust": 18.007324218749996,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 207.22519557998748,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.536197831895618,
- "growingDegreeDaysBase5": 0.3278644985622847,
- "growingDegreeDaysBase10": 0.11953116522895138,
- "thickness": 5485.677978515625
}, - {
- "apparentTemperature": 8.480275093050938,
- "cloudCoverLower": 27.399999618530273,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 27.399999618530273,
- "cloudCoverUpper": 2.200000047683716,
- "dewPoint": 2.9551635742187727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 55,
- "valid": "2023-09-21T09:00:00+00:00",
- "localTime": "2023-09-21T19:00:00+10:00",
- "deltaT": 4.648863259862408,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.753900146484398,
- "windDirCardinal": "S",
- "windDirDegree": 190.89792416139198,
- "windSpeed": 9.122203567460854,
- "windGust": 16.210986328125,
- "windGustDirCardinal": "S",
- "windGustDirDegree": 190.89792416139198,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4897458394368499,
- "growingDegreeDaysBase5": 0.28141250610351654,
- "growingDegreeDaysBase10": 0.07307917277018323,
- "thickness": 5487.049499511719
}, - {
- "apparentTemperature": 8.376349102581854,
- "cloudCoverLower": 19.766666412353516,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 19.933333079020183,
- "cloudCoverUpper": 3.133333365122477,
- "dewPoint": 3.137465413411462,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 60.06666564941406,
- "valid": "2023-09-21T10:00:00+00:00",
- "localTime": "2023-09-21T20:00:00+10:00",
- "deltaT": 4.042639803054602,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 10.724165852864587,
- "windDirCardinal": "S",
- "windDirDegree": 185.8329008026003,
- "windSpeed": 4.619463350010103,
- "windGust": 12.386014652252197,
- "windGustDirCardinal": "S",
- "windGustDirDegree": 185.8329008026003,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4468402438693578,
- "growingDegreeDaysBase5": 0.23850691053602446,
- "growingDegreeDaysBase10": 0.030173577202691128,
- "thickness": 5489.704345703125
}, - {
- "apparentTemperature": 8.11677680206857,
- "cloudCoverLower": 12.133333206176758,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 12.466666539510092,
- "cloudCoverUpper": 4.066666682561238,
- "dewPoint": 3.3197672526042084,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 65.13333129882812,
- "valid": "2023-09-21T11:00:00+00:00",
- "localTime": "2023-09-21T21:00:00+10:00",
- "deltaT": 3.469897655055888,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 9.694431559244833,
- "windDirCardinal": "ESE",
- "windDirDegree": 106.54448837158978,
- "windSpeed": 0.8196472160736297,
- "windGust": 8.561042976379394,
- "windGustDirCardinal": "ESE",
- "windGustDirDegree": 106.54448837158978,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "UNSUITABLE",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "UNSUITABLE",
- "growingDegreeDaysBase0": 0.40393464830186804,
- "growingDegreeDaysBase5": 0.19560131496853472,
- "growingDegreeDaysBase10": 0,
- "thickness": 5492.359191894531
}, - {
- "apparentTemperature": 6.365267037691185,
- "cloudCoverLower": 4.5,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 5,
- "cloudCoverUpper": 5,
- "dewPoint": 3.5020690917968977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70.19999694824219,
- "valid": "2023-09-21T12:00:00+00:00",
- "localTime": "2023-09-21T22:00:00+10:00",
- "deltaT": 2.9255319204523076,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 8.664697265625023,
- "windDirCardinal": "NNE",
- "windDirDegree": 26.30378920642047,
- "windSpeed": 4.605620227112478,
- "windGust": 4.736071300506591,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 26.30378920642047,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.3610290527343759,
- "growingDegreeDaysBase5": 0.1526957194010426,
- "growingDegreeDaysBase10": 0,
- "thickness": 5495.0140380859375
}, - {
- "apparentTemperature": 5.653302006982168,
- "cloudCoverLower": 3,
- "cloudCoverMiddle": 1.6666666666666667,
- "cloudCoverTotal": 7.799999872843424,
- "cloudCoverUpper": 7.799999872843424,
- "dewPoint": 3.0847106933593977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70.7999979654948,
- "valid": "2023-09-21T13:00:00+00:00",
- "localTime": "2023-09-21T23:00:00+10:00",
- "deltaT": 2.8343998868276614,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 8.112634277343773,
- "windDirCardinal": "NNE",
- "windDirDegree": 22.34161057864945,
- "windSpeed": 5.047493144901961,
- "windGust": 6.5366827011108395,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 22.34161057864945,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.33802642822265716,
- "growingDegreeDaysBase5": 0.12969309488932385,
- "growingDegreeDaysBase10": 0,
- "thickness": 5498.316467285156
}, - {
- "apparentTemperature": 4.938927523404763,
- "cloudCoverLower": 1.5,
- "cloudCoverMiddle": 3.3333333333333335,
- "cloudCoverTotal": 10.599999745686848,
- "cloudCoverUpper": 10.599999745686848,
- "dewPoint": 2.6673522949218977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 71.39999898274739,
- "valid": "2023-09-21T14:00:00+00:00",
- "localTime": "2023-09-22T00:00:00+10:00",
- "deltaT": 2.7451516005196535,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 7.560571289062523,
- "windDirCardinal": "NNE",
- "windDirDegree": 19.030300496927367,
- "windSpeed": 5.509572643598779,
- "windGust": 8.337294101715088,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 19.030300496927367,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.3150238037109384,
- "growingDegreeDaysBase5": 0.10669047037760511,
- "growingDegreeDaysBase10": 0,
- "thickness": 5501.618896484375
}, - {
- "apparentTemperature": 4.22304375103155,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 5,
- "cloudCoverTotal": 13.399999618530273,
- "cloudCoverUpper": 13.399999618530273,
- "dewPoint": 2.2499938964843977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 72,
- "valid": "2023-09-21T15:00:00+00:00",
- "localTime": "2023-09-22T01:00:00+10:00",
- "deltaT": 2.6577608909488415,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 7.008508300781273,
- "windDirCardinal": "NNE",
- "windDirDegree": 16.23915083294814,
- "windSpeed": 5.987182031487504,
- "windGust": 10.137905502319335,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 16.23915083294814,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.29202117919921966,
- "growingDegreeDaysBase5": 0.08368784586588636,
- "growingDegreeDaysBase10": 0,
- "thickness": 5504.921325683594
}, - {
- "apparentTemperature": 3.8776836745845165,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 18.166666666666664,
- "cloudCoverTotal": 41.33333206176758,
- "cloudCoverUpper": 41.33333206176758,
- "dewPoint": 1.9726399739583371,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 71.5,
- "valid": "2023-09-21T16:00:00+00:00",
- "localTime": "2023-09-22T02:00:00+10:00",
- "deltaT": 2.6877318379157717,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 6.798730468750023,
- "windDirCardinal": "NNE",
- "windDirDegree": 15.212275993931556,
- "windSpeed": 6.425906832276581,
- "windGust": 12.808266448974608,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 15.212275993931556,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.2832804361979176,
- "growingDegreeDaysBase5": 0.07494710286458428,
- "growingDegreeDaysBase10": 0,
- "thickness": 5505.934534708658
}, - {
- "apparentTemperature": 3.5328683782168246,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 31.333333333333332,
- "cloudCoverTotal": 69.26666450500488,
- "cloudCoverUpper": 69.26666450500488,
- "dewPoint": 1.6952860514323334,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 71,
- "valid": "2023-09-21T17:00:00+00:00",
- "localTime": "2023-09-22T03:00:00+10:00",
- "deltaT": 2.716981031672322,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 6.588952636718773,
- "windDirCardinal": "NNE",
- "windDirDegree": 14.316904416179526,
- "windSpeed": 6.86643158476626,
- "windGust": 15.478627395629882,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 14.316904416179526,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.27453969319661553,
- "growingDegreeDaysBase5": 0.06620635986328219,
- "growingDegreeDaysBase10": 0,
- "thickness": 5506.947743733725
}, - {
- "apparentTemperature": 3.1886476828247057,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 44.5,
- "cloudCoverTotal": 97.19999694824219,
- "cloudCoverUpper": 97.19999694824219,
- "dewPoint": 1.4179321289062727,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 70.5,
- "valid": "2023-09-21T18:00:00+00:00",
- "localTime": "2023-09-22T04:00:00+10:00",
- "deltaT": 2.7455017115919986,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 6.379174804687523,
- "windDirCardinal": "NNE",
- "windDirDegree": 13.529660021236424,
- "windSpeed": 7.308430813225051,
- "windGust": 18.148988342285154,
- "windGustDirCardinal": "NNE",
- "windGustDirDegree": 13.529660021236424,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.2657989501953134,
- "growingDegreeDaysBase5": 0.05746561686198011,
- "growingDegreeDaysBase10": 0,
- "thickness": 5507.960952758789
}, - {
- "apparentTemperature": 3.553162025951851,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 62.73333231608073,
- "cloudCoverTotal": 98.13333129882812,
- "cloudCoverUpper": 98.13333129882812,
- "dewPoint": 1.3211812337239621,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 67.63333384195964,
- "valid": "2023-09-21T19:00:00+00:00",
- "localTime": "2023-09-22T05:00:00+10:00",
- "deltaT": 3.026190159264658,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 6.915490722656273,
- "windDirCardinal": "N",
- "windDirDegree": 9.064201500241722,
- "windSpeed": 8.138910420847697,
- "windGust": 25.322550201416018,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 9.064201500241722,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.28814544677734466,
- "growingDegreeDaysBase5": 0.07981211344401136,
- "growingDegreeDaysBase10": 0,
- "thickness": 5506.409606933594
}, - {
- "apparentTemperature": 3.9055867558620765,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 80.96666463216145,
- "cloudCoverTotal": 99.06666564941406,
- "cloudCoverUpper": 99.06666564941406,
- "dewPoint": 1.2244303385417084,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 64.76666768391927,
- "valid": "2023-09-21T20:00:00+00:00",
- "localTime": "2023-09-22T06:00:00+10:00",
- "deltaT": 3.3135292675172536,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 7.451806640625023,
- "windDirCardinal": "N",
- "windDirDegree": 5.44313987508599,
- "windSpeed": 9.009561990412534,
- "windGust": 30.68121322631836,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 5.44313987508599,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.3104919433593759,
- "growingDegreeDaysBase5": 0.10215861002604261,
- "growingDegreeDaysBase10": 0,
- "thickness": 5504.858261108398
}, - {
- "apparentTemperature": 4.247710884099085,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 99.19999694824219,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 1.1276794433593977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 61.900001525878906,
- "valid": "2023-09-21T21:00:00+00:00",
- "localTime": "2023-09-22T07:00:00+10:00",
- "deltaT": 3.6081963567914634,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 7.988122558593773,
- "windDirCardinal": "N",
- "windDirDegree": 2.46981088467912,
- "windSpeed": 9.90980293513481,
- "windGust": 37.678052444458004,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 2.46981088467912,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.33283843994140716,
- "growingDegreeDaysBase5": 0.12450510660807386,
- "growingDegreeDaysBase10": 0,
- "thickness": 5503.306915283203
}, - {
- "apparentTemperature": 6.162218094931532,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 99.46666463216145,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 1.4513692220052121,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 55.50000127156576,
- "valid": "2023-09-21T22:00:00+00:00",
- "localTime": "2023-09-22T08:00:00+10:00",
- "deltaT": 4.415139025228921,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 10.191654459635458,
- "windDirCardinal": "N",
- "windDirDegree": 352.9261912525628,
- "windSpeed": 11.847944343605132,
- "windGust": 35.08136824607848,
- "windGustDirCardinal": "N",
- "windGustDirDegree": 352.9261912525628,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4246522691514774,
- "growingDegreeDaysBase5": 0.2163189358181441,
- "growingDegreeDaysBase10": 0.007985602484810764,
- "thickness": 5500.517903645833
}, - {
- "apparentTemperature": 7.99724048319986,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 99.73333231608073,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 1.7750590006510834,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 49.1000010172526,
- "valid": "2023-09-21T23:00:00+00:00",
- "localTime": "2023-09-22T09:00:00+10:00",
- "deltaT": 5.325118767614757,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.395186360677087,
- "windDirCardinal": "NNW",
- "windDirDegree": 346.1960550045967,
- "windSpeed": 14.019849489766505,
- "windGust": 31.072306480407715,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 346.1960550045967,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5164660983615452,
- "growingDegreeDaysBase5": 0.30813276502821196,
- "growingDegreeDaysBase10": 0.09979943169487862,
- "thickness": 5497.728892008464
}, - {
- "apparentTemperature": 9.759709443135016,
- "cloudCoverLower": 0,
- "cloudCoverMiddle": 100,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 2.0987487792968977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 42.70000076293945,
- "valid": "2023-09-22T00:00:00+00:00",
- "localTime": "2023-09-22T10:00:00+10:00",
- "deltaT": 6.361674810861636,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.598718261718773,
- "windDirCardinal": "NNW",
- "windDirDegree": 341.31921064679534,
- "windSpeed": 16.33252515237097,
- "windGust": 28.588521595001218,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 341.31921064679534,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6082799275716155,
- "growingDegreeDaysBase5": 0.39994659423828216,
- "growingDegreeDaysBase10": 0.19161326090494885,
- "thickness": 5494.939880371094
}, - {
- "apparentTemperature": 11.367029036609853,
- "cloudCoverLower": 5.366666793823242,
- "cloudCoverMiddle": 98.53333282470703,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 2.243849690755212,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 39.6000010172526,
- "valid": "2023-09-22T01:00:00+00:00",
- "localTime": "2023-09-22T11:00:00+10:00",
- "deltaT": 6.993282153917082,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 16.063094075520837,
- "windDirCardinal": "NNW",
- "windDirDegree": 331.9049887732842,
- "windSpeed": 15.822058054648723,
- "windGust": 28.848017807006833,
- "windGustDirCardinal": "NNW",
- "windGustDirDegree": 331.9049887732842,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6692955864800348,
- "growingDegreeDaysBase5": 0.46096225314670153,
- "growingDegreeDaysBase10": 0.2526289198133682,
- "thickness": 5494.653213500977
}, - {
- "apparentTemperature": 12.8705871518939,
- "cloudCoverLower": 10.733333587646484,
- "cloudCoverMiddle": 97.06666564941406,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 2.3889506022135834,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 36.50000127156576,
- "valid": "2023-09-22T02:00:00+00:00",
- "localTime": "2023-09-22T12:00:00+10:00",
- "deltaT": 7.679630359963813,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.52746988932296,
- "windDirCardinal": "NW",
- "windDirDegree": 322.1452639732147,
- "windSpeed": 15.759648740084282,
- "windGust": 29.10751401901245,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 322.1452639732147,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7303112453884566,
- "growingDegreeDaysBase5": 0.5219779120551232,
- "growingDegreeDaysBase10": 0.3136445787217899,
- "thickness": 5494.366546630859
}, - {
- "apparentTemperature": 14.266198151294017,
- "cloudCoverLower": 16.100000381469727,
- "cloudCoverMiddle": 95.5999984741211,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 2.5340515136718977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 33.400001525878906,
- "valid": "2023-09-22T03:00:00+00:00",
- "localTime": "2023-09-22T13:00:00+10:00",
- "deltaT": 8.42751793606347,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 18.991845703125023,
- "windDirCardinal": "NW",
- "windDirDegree": 312.5858938856175,
- "windSpeed": 16.150492247338065,
- "windGust": 29.367010231018064,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 312.5858938856175,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.7913269042968759,
- "growingDegreeDaysBase5": 0.5829935709635425,
- "growingDegreeDaysBase10": 0.3746602376302093,
- "thickness": 5494.079879760742
}, - {
- "apparentTemperature": 14.577182898862066,
- "cloudCoverLower": 44.06666692097981,
- "cloudCoverMiddle": 65.3999989827474,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 2.726118977864587,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 33.70000076293945,
- "valid": "2023-09-22T04:00:00+00:00",
- "localTime": "2023-09-22T14:00:00+10:00",
- "deltaT": 8.395425410130812,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.044946289062523,
- "windDirCardinal": "NW",
- "windDirDegree": 309.4296591298021,
- "windSpeed": 14.977287485440167,
- "windGust": 28.030086250305175,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 309.4296591298021,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7935394287109384,
- "growingDegreeDaysBase5": 0.585206095377605,
- "growingDegreeDaysBase10": 0.3768727620442718,
- "thickness": 5492.388631184896
}, - {
- "apparentTemperature": 14.878017881094365,
- "cloudCoverLower": 72.0333334604899,
- "cloudCoverMiddle": 35.1999994913737,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 2.9181864420573334,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 34,
- "valid": "2023-09-22T05:00:00+00:00",
- "localTime": "2023-09-22T15:00:00+10:00",
- "deltaT": 8.363284228116981,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.098046875000023,
- "windDirCardinal": "NW",
- "windDirDegree": 305.75040113925695,
- "windSpeed": 13.85714196358394,
- "windGust": 26.693162269592285,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 305.75040113925695,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7957519531250009,
- "growingDegreeDaysBase5": 0.5874186197916675,
- "growingDegreeDaysBase10": 0.3790852864583343,
- "thickness": 5490.697382609049
}, - {
- "apparentTemperature": 15.165994566772035,
- "cloudCoverLower": 100,
- "cloudCoverMiddle": 5,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 100,
- "dewPoint": 3.1102539062500227,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 34.29999923706055,
- "valid": "2023-09-22T06:00:00+00:00",
- "localTime": "2023-09-22T16:00:00+10:00",
- "deltaT": 8.331093873118101,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 19.151147460937523,
- "windDirCardinal": "WNW",
- "windDirDegree": 301.44554850481603,
- "windSpeed": 12.803988783325142,
- "windGust": 25.356238288879396,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 301.44554850481603,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7979644775390634,
- "growingDegreeDaysBase5": 0.58963114420573,
- "growingDegreeDaysBase10": 0.3812978108723968,
- "thickness": 5489.006134033203
}, - {
- "apparentTemperature": 14.690887615834331,
- "cloudCoverLower": 81.40000025431316,
- "cloudCoverMiddle": 30.833333333333332,
- "cloudCoverTotal": 94.26666768391927,
- "cloudCoverUpper": 88.76666768391927,
- "dewPoint": 3.9888244628906477,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 40.59999974568685,
- "valid": "2023-09-22T07:00:00+00:00",
- "localTime": "2023-09-22T17:00:00+10:00",
- "deltaT": 7.192989129865561,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 17.817427571614587,
- "windDirCardinal": "WNW",
- "windDirDegree": 286.4530227322323,
- "windSpeed": 9.533777199622568,
- "windGust": 24.863032150268552,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 286.4530227322323,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.7423928154839411,
- "growingDegreeDaysBase5": 0.5340594821506077,
- "growingDegreeDaysBase10": 0.32572614881727446,
- "thickness": 5482.53490193685
}, - {
- "apparentTemperature": 13.926275778902866,
- "cloudCoverLower": 62.800000508626304,
- "cloudCoverMiddle": 56.666666666666664,
- "cloudCoverTotal": 88.53333536783855,
- "cloudCoverUpper": 77.53333536783855,
- "dewPoint": 4.867395019531273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 46.90000025431315,
- "valid": "2023-09-22T08:00:00+00:00",
- "localTime": "2023-09-22T18:00:00+10:00",
- "deltaT": 6.177489809505271,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 16.48370768229171,
- "windDirCardinal": "W",
- "windDirDegree": 260.1444743739717,
- "windSpeed": 7.4735240190833245,
- "windGust": 24.369826011657715,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 260.1444743739717,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6868211534288211,
- "growingDegreeDaysBase5": 0.47848782009548785,
- "growingDegreeDaysBase10": 0.2701544867621545,
- "thickness": 5476.063669840494
}, - {
- "apparentTemperature": 12.675164033680268,
- "cloudCoverLower": 44.20000076293945,
- "cloudCoverMiddle": 82.5,
- "cloudCoverTotal": 82.80000305175781,
- "cloudCoverUpper": 66.30000305175781,
- "dewPoint": 5.745965576171898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 53.20000076293945,
- "valid": "2023-09-22T09:00:00+00:00",
- "localTime": "2023-09-22T19:00:00+10:00",
- "deltaT": 5.258125994891909,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 15.149987792968773,
- "windDirCardinal": "SW",
- "windDirDegree": 226.71402268049027,
- "windSpeed": 7.669686400292575,
- "windGust": 23.876619873046874,
- "windGustDirCardinal": "SW",
- "windGustDirDegree": 226.71402268049027,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6312494913736988,
- "growingDegreeDaysBase5": 0.42291615804036553,
- "growingDegreeDaysBase10": 0.2145828247070322,
- "thickness": 5469.592437744141
}, - {
- "apparentTemperature": 12.606361910985566,
- "cloudCoverLower": 36.26666704813639,
- "cloudCoverMiddle": 68.36666615804036,
- "cloudCoverTotal": 77.93333435058594,
- "cloudCoverUpper": 65.80000305175781,
- "dewPoint": 5.880639648437523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 55.70000076293945,
- "valid": "2023-09-22T10:00:00+00:00",
- "localTime": "2023-09-22T20:00:00+10:00",
- "deltaT": 4.9166662042234375,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.630843098958337,
- "windDirCardinal": "WSW",
- "windDirDegree": 243.92591788295965,
- "windSpeed": 5.549079251424928,
- "windGust": 22.398562431335446,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 243.92591788295965,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.6096184624565973,
- "growingDegreeDaysBase5": 0.40128512912326403,
- "growingDegreeDaysBase10": 0.1929517957899307,
- "thickness": 5466.5873463948565
}, - {
- "apparentTemperature": 12.342071598107601,
- "cloudCoverLower": 28.333333333333336,
- "cloudCoverMiddle": 54.233332316080734,
- "cloudCoverTotal": 73.06666564941406,
- "cloudCoverUpper": 65.30000305175781,
- "dewPoint": 6.015313720703148,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 58.20000076293945,
- "valid": "2023-09-22T11:00:00+00:00",
- "localTime": "2023-09-22T21:00:00+10:00",
- "deltaT": 4.586079603246526,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.111698404947958,
- "windDirCardinal": "W",
- "windDirDegree": 274.96046331154446,
- "windSpeed": 4.402071481199626,
- "windGust": 19.0186408996582,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 274.96046331154446,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5879874335394982,
- "growingDegreeDaysBase5": 0.3796541002061649,
- "growingDegreeDaysBase10": 0.1713207668728316,
- "thickness": 5463.582255045573
}, - {
- "apparentTemperature": 11.740797322746552,
- "cloudCoverLower": 20.399999618530273,
- "cloudCoverMiddle": 40.099998474121094,
- "cloudCoverTotal": 68.19999694824219,
- "cloudCoverUpper": 64.80000305175781,
- "dewPoint": 6.149987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 60.70000076293945,
- "valid": "2023-09-22T12:00:00+00:00",
- "localTime": "2023-09-22T22:00:00+10:00",
- "deltaT": 4.265499146811834,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.592553710937523,
- "windDirCardinal": "NW",
- "windDirDegree": 310.2013769881718,
- "windSpeed": 4.958018539681164,
- "windGust": 17.674952316284177,
- "windGustDirCardinal": "NW",
- "windGustDirDegree": 310.2013769881718,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5663564046223968,
- "growingDegreeDaysBase5": 0.3580230712890634,
- "growingDegreeDaysBase10": 0.1496897379557301,
- "thickness": 5460.577163696289
}, - {
- "apparentTemperature": 10.980528764067989,
- "cloudCoverLower": 22.399999618530273,
- "cloudCoverMiddle": 26.733332316080727,
- "cloudCoverTotal": 54.26666450500488,
- "cloudCoverUpper": 43.200002034505204,
- "dewPoint": 6.306939697265648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 64.86666615804036,
- "valid": "2023-09-22T13:00:00+00:00",
- "localTime": "2023-09-22T23:00:00+10:00",
- "deltaT": 3.758487728597629,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.811710611979208,
- "windDirCardinal": "WNW",
- "windDirDegree": 301.6804541109001,
- "windSpeed": 5.101769777251687,
- "windGust": 19.030788230895993,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 301.6804541109001,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5338212754991336,
- "growingDegreeDaysBase5": 0.32548794216580035,
- "growingDegreeDaysBase10": 0.117154608832467,
- "thickness": 5457.52806599935
}, - {
- "apparentTemperature": 10.186260183155706,
- "cloudCoverLower": 24.399999618530273,
- "cloudCoverMiddle": 13.366666158040363,
- "cloudCoverTotal": 40.33333206176758,
- "cloudCoverUpper": 21.600001017252602,
- "dewPoint": 6.463891601562523,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 69.03333155314128,
- "valid": "2023-09-22T14:00:00+00:00",
- "localTime": "2023-09-23T00:00:00+10:00",
- "deltaT": 3.2717053496288973,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.030867513020837,
- "windDirCardinal": "WNW",
- "windDirDegree": 293.78934046186225,
- "windSpeed": 5.350917586678682,
- "windGust": 22.425286560058595,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 293.78934046186225,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5012861463758682,
- "growingDegreeDaysBase5": 0.29295281304253484,
- "growingDegreeDaysBase10": 0.08461947970920154,
- "thickness": 5454.478968302408
}, - {
- "apparentTemperature": 9.36176775853893,
- "cloudCoverLower": 26.399999618530273,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 26.399999618530273,
- "cloudCoverUpper": 0,
- "dewPoint": 6.620843505859398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 73.19999694824219,
- "valid": "2023-09-22T15:00:00+00:00",
- "localTime": "2023-09-23T01:00:00+10:00",
- "deltaT": 2.802641024860476,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.250024414062523,
- "windDirCardinal": "WNW",
- "windDirDegree": 286.72046423803874,
- "windSpeed": 5.691637753570371,
- "windGust": 23.916706066131592,
- "windGustDirCardinal": "WNW",
- "windGustDirDegree": 286.72046423803874,
- "weatherIcon": "NIGHT_CLEAR",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4687510172526051,
- "growingDegreeDaysBase5": 0.2604176839192718,
- "growingDegreeDaysBase10": 0.052084350585938445,
- "thickness": 5451.429870605469
}, - {
- "apparentTemperature": 9.018996229038938,
- "cloudCoverLower": 49.133332570393875,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 49.133332570393875,
- "cloudCoverUpper": 0,
- "dewPoint": 7.101220703125023,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 77.16666412353516,
- "valid": "2023-09-22T16:00:00+00:00",
- "localTime": "2023-09-23T02:00:00+10:00",
- "deltaT": 2.392998762643524,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 10.978387451171898,
- "windDirCardinal": "W",
- "windDirDegree": 274.5498673323017,
- "windSpeed": 6.642941953421507,
- "windGust": 26.12714424133301,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 274.5498673323017,
- "weatherIcon": "NIGHT_PARTLY_CLOUDY",
- "timeOfDay": "NIGHT",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4574328104654957,
- "growingDegreeDaysBase5": 0.2490994771321624,
- "growingDegreeDaysBase10": 0.04076614379882907,
- "thickness": 5448.214619954427
}, - {
- "apparentTemperature": 8.628105839217504,
- "cloudCoverLower": 71.86666552225748,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 71.86666552225748,
- "cloudCoverUpper": 0,
- "dewPoint": 7.581597900390648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 81.13333129882812,
- "valid": "2023-09-22T17:00:00+00:00",
- "localTime": "2023-09-23T03:00:00+10:00",
- "deltaT": 1.9857788528567912,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 10.706750488281273,
- "windDirCardinal": "W",
- "windDirDegree": 265.71745123270256,
- "windSpeed": 7.814841163193901,
- "windGust": 28.33758241653442,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 265.71745123270256,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.44611460367838635,
- "growingDegreeDaysBase5": 0.23778127034505303,
- "growingDegreeDaysBase10": 0.029447937011719695,
- "thickness": 5444.999369303386
}, - {
- "apparentTemperature": 8.205683226707993,
- "cloudCoverLower": 94.5999984741211,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 94.5999984741211,
- "cloudCoverUpper": 0,
- "dewPoint": 8.061975097656273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 85.0999984741211,
- "valid": "2023-09-22T18:00:00+00:00",
- "localTime": "2023-09-23T04:00:00+10:00",
- "deltaT": 1.5803287221064686,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 10.435113525390648,
- "windDirCardinal": "W",
- "windDirDegree": 259.2979180748196,
- "windSpeed": 9.122715283627697,
- "windGust": 30.548020591735842,
- "windGustDirCardinal": "W",
- "windGustDirDegree": 259.2979180748196,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "MARGINAL",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.43479639689127697,
- "growingDegreeDaysBase5": 0.22646306355794366,
- "growingDegreeDaysBase10": 0.01812973022461032,
- "thickness": 5441.784118652344
}, - {
- "apparentTemperature": 8.436450198846538,
- "cloudCoverLower": 96.39999898274739,
- "cloudCoverMiddle": 0.6999999682108561,
- "cloudCoverTotal": 96.39999898274739,
- "cloudCoverUpper": 0,
- "dewPoint": 6.813063557942712,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 76.29999923706055,
- "valid": "2023-09-22T19:00:00+00:00",
- "localTime": "2023-09-23T05:00:00+10:00",
- "deltaT": 2.4814159649197727,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.020654296875023,
- "windDirCardinal": "WSW",
- "windDirDegree": 253.38222904235195,
- "windSpeed": 9.711394452849168,
- "windGust": 28.321350803375243,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 253.38222904235195,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4591939290364593,
- "growingDegreeDaysBase5": 0.2508605957031259,
- "growingDegreeDaysBase10": 0.04252726236979261,
- "thickness": 5440.729507446289
}, - {
- "apparentTemperature": 8.624247717200257,
- "cloudCoverLower": 98.1999994913737,
- "cloudCoverMiddle": 1.3999999364217122,
- "cloudCoverTotal": 98.1999994913737,
- "cloudCoverUpper": 0,
- "dewPoint": 5.564152018229208,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 67.5,
- "valid": "2023-09-22T20:00:00+00:00",
- "localTime": "2023-09-23T06:00:00+10:00",
- "deltaT": 3.3944633813569123,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.606195068359398,
- "windDirCardinal": "WSW",
- "windDirDegree": 248.19084801215695,
- "windSpeed": 10.391280244111075,
- "windGust": 26.09468101501465,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 248.19084801215695,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.48359146118164154,
- "growingDegreeDaysBase5": 0.2752581278483082,
- "growingDegreeDaysBase10": 0.0669247945149749,
- "thickness": 5439.674896240234
}, - {
- "apparentTemperature": 8.7709011946617,
- "cloudCoverLower": 100,
- "cloudCoverMiddle": 2.0999999046325684,
- "cloudCoverTotal": 100,
- "cloudCoverUpper": 0,
- "dewPoint": 4.315240478515648,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 58.70000076293945,
- "valid": "2023-09-22T21:00:00+00:00",
- "localTime": "2023-09-23T07:00:00+10:00",
- "deltaT": 4.328713033815609,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.191735839843773,
- "windDirCardinal": "WSW",
- "windDirDegree": 243.6690213965582,
- "windSpeed": 11.14569436260501,
- "windGust": 23.868011226654055,
- "windGustDirCardinal": "WSW",
- "windGustDirDegree": 243.6690213965582,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5079889933268238,
- "growingDegreeDaysBase5": 0.29965565999349053,
- "growingDegreeDaysBase10": 0.09132232666015719,
- "thickness": 5438.62028503418
}, - {
- "apparentTemperature": 9.068721951805252,
- "cloudCoverLower": 74.56666692097981,
- "cloudCoverMiddle": 1.3999999364217124,
- "cloudCoverTotal": 74.56666692097981,
- "cloudCoverUpper": 0,
- "dewPoint": 4.126824951171898,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 55.86666742960612,
- "valid": "2023-09-22T22:00:00+00:00",
- "localTime": "2023-09-23T08:00:00+10:00",
- "deltaT": 4.6822418827397705,
- "rainfall": 0.020833333333333332,
- "snow": 0,
- "tmp2m": 12.776615397135458,
- "windDirCardinal": "SW",
- "windDirDegree": 232.83225082560145,
- "windSpeed": 12.465907214154685,
- "windGust": 23.58206657409668,
- "windGustDirCardinal": "SW",
- "windGustDirDegree": 232.83225082560145,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5323589748806441,
- "growingDegreeDaysBase5": 0.3240256415473107,
- "growingDegreeDaysBase10": 0.11569230821397743,
- "thickness": 5437.937469482422
}, - {
- "apparentTemperature": 9.290484152709109,
- "cloudCoverLower": 49.13333384195963,
- "cloudCoverMiddle": 0.6999999682108562,
- "cloudCoverTotal": 49.13333384195963,
- "cloudCoverUpper": 0,
- "dewPoint": 3.9384094238281477,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 53.03333409627279,
- "valid": "2023-09-22T23:00:00+00:00",
- "localTime": "2023-09-23T09:00:00+10:00",
- "deltaT": 5.048633692278585,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.361494954427087,
- "windDirCardinal": "SW",
- "windDirDegree": 224.31034793175436,
- "windSpeed": 14.14101037706851,
- "windGust": 23.296121921539306,
- "windGustDirCardinal": "SW",
- "windGustDirDegree": 224.31034793175436,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.556728956434462,
- "growingDegreeDaysBase5": 0.3483956231011286,
- "growingDegreeDaysBase10": 0.14006228976779528,
- "thickness": 5437.254653930664
}, - {
- "apparentTemperature": 9.457265330596835,
- "cloudCoverLower": 23.700000762939453,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 23.700000762939453,
- "cloudCoverUpper": 0,
- "dewPoint": 3.7499938964843977,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 50.20000076293945,
- "valid": "2023-09-23T00:00:00+00:00",
- "localTime": "2023-09-23T10:00:00+10:00",
- "deltaT": 5.429205059396921,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.946374511718773,
- "windDirCardinal": "SW",
- "windDirDegree": 217.70545748780916,
- "windSpeed": 16.060339294732895,
- "windGust": 23.010177268981934,
- "windGustDirCardinal": "SW",
- "windGustDirDegree": 217.70545748780916,
- "weatherIcon": "SUNNY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5810989379882822,
- "growingDegreeDaysBase5": 0.37276560465494885,
- "growingDegreeDaysBase10": 0.16443227132161553,
- "thickness": 5436.571838378906
}, - {
- "apparentTemperature": 9.850942159116627,
- "cloudCoverLower": 38.8000005086263,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 38.8000005086263,
- "cloudCoverUpper": 0,
- "dewPoint": 3.833815511067712,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 49.46666717529297,
- "valid": "2023-09-23T01:00:00+00:00",
- "localTime": "2023-09-23T11:00:00+10:00",
- "deltaT": 5.556293876942332,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.281060791015648,
- "windDirCardinal": "SSW",
- "windDirDegree": 208.11395618807143,
- "windSpeed": 15.85143960003166,
- "windGust": 22.871655292510987,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 208.11395618807143,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "GOOD",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5950441996256519,
- "growingDegreeDaysBase5": 0.38671086629231866,
- "growingDegreeDaysBase10": 0.1783775329589853,
- "thickness": 5436.3921457926435
}, - {
- "apparentTemperature": 10.156781491518185,
- "cloudCoverLower": 53.90000025431315,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 53.90000025431315,
- "cloudCoverUpper": 0,
- "dewPoint": 3.9176371256510834,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 48.733333587646484,
- "valid": "2023-09-23T02:00:00+00:00",
- "localTime": "2023-09-23T12:00:00+10:00",
- "deltaT": 5.685617409121106,
- "rainfall": 0.010416666666666668,
- "snow": 0,
- "tmp2m": 14.615747070312523,
- "windDirCardinal": "SSW",
- "windDirDegree": 198.54097941119392,
- "windSpeed": 16.091126845993525,
- "windGust": 22.733133316040036,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 198.54097941119392,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6089894612630218,
- "growingDegreeDaysBase5": 0.4006561279296884,
- "growingDegreeDaysBase10": 0.1923227945963551,
- "thickness": 5436.21245320638
}, - {
- "apparentTemperature": 10.37849213155291,
- "cloudCoverLower": 69,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 69,
- "cloudCoverUpper": 0,
- "dewPoint": 4.001458740234398,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 48,
- "valid": "2023-09-23T03:00:00+00:00",
- "localTime": "2023-09-23T13:00:00+10:00",
- "deltaT": 5.817228735152122,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.950433349609398,
- "windDirCardinal": "S",
- "windDirDegree": 189.49153227033509,
- "windSpeed": 16.760166335783975,
- "windGust": 22.59461133956909,
- "windGustDirCardinal": "S",
- "windGustDirDegree": 189.49153227033509,
- "weatherIcon": "PARTLY_CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.6229347229003915,
- "growingDegreeDaysBase5": 0.4146013895670582,
- "growingDegreeDaysBase10": 0.2062680562337249,
- "thickness": 5436.032760620117
}, - {
- "apparentTemperature": 9.710276505982344,
- "cloudCoverLower": 79.26666768391927,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 79.26666768391927,
- "cloudCoverUpper": 0,
- "dewPoint": 4.342879231770837,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 52.40000025431315,
- "valid": "2023-09-23T04:00:00+00:00",
- "localTime": "2023-09-23T14:00:00+10:00",
- "deltaT": 5.206707315705188,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 14.062910970052087,
- "windDirCardinal": "S",
- "windDirDegree": 190.43451791570516,
- "windSpeed": 16.059234465173308,
- "windGust": 22.348919677734372,
- "windGustDirCardinal": "S",
- "windGustDirDegree": 190.43451791570516,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5859546237521702,
- "growingDegreeDaysBase5": 0.37762129041883696,
- "growingDegreeDaysBase10": 0.16928795708550362,
- "thickness": 5436.8590037028
}, - {
- "apparentTemperature": 9.022419582941374,
- "cloudCoverLower": 89.53333536783855,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 89.53333536783855,
- "cloudCoverUpper": 0,
- "dewPoint": 4.684299723307333,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 56.800000508626304,
- "valid": "2023-09-23T05:00:00+00:00",
- "localTime": "2023-09-23T15:00:00+10:00",
- "deltaT": 4.631258429163314,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 13.175388590494833,
- "windDirCardinal": "SSW",
- "windDirDegree": 191.46326762220457,
- "windSpeed": 15.363048815363177,
- "windGust": 22.10322801589966,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 191.46326762220457,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "MARGINAL",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "MARGINAL",
- "growingDegreeDaysBase0": 0.5489745246039514,
- "growingDegreeDaysBase5": 0.34064119127061804,
- "growingDegreeDaysBase10": 0.13230785793728472,
- "thickness": 5437.6852467854815
}, - {
- "apparentTemperature": 8.316417597566437,
- "cloudCoverLower": 99.80000305175781,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 99.80000305175781,
- "cloudCoverUpper": 0,
- "dewPoint": 5.025720214843773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 61.20000076293945,
- "valid": "2023-09-23T06:00:00+00:00",
- "localTime": "2023-09-23T16:00:00+10:00",
- "deltaT": 4.085947614120471,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.287866210937523,
- "windDirCardinal": "SSW",
- "windDirDegree": 192.58927550105756,
- "windSpeed": 14.672285012587897,
- "windGust": 19.87048759460449,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 192.58927550105756,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.51199442545573,
- "growingDegreeDaysBase5": 0.3036610921223968,
- "growingDegreeDaysBase10": 0.09532775878906344,
- "thickness": 5438.511489868164
}, - {
- "apparentTemperature": 8.263102610760946,
- "cloudCoverLower": 99.06666819254558,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 99.06666819254558,
- "cloudCoverUpper": 0,
- "dewPoint": 4.900476074218773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 61.40000025431315,
- "valid": "2023-09-23T07:00:00+00:00",
- "localTime": "2023-09-23T17:00:00+10:00",
- "deltaT": 4.0507379938298484,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 12.132653808593773,
- "windDirCardinal": "SSW",
- "windDirDegree": 191.90974520346379,
- "windSpeed": 14.045763794308195,
- "windGust": 23.43412462234497,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 191.90974520346379,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.5055272420247405,
- "growingDegreeDaysBase5": 0.29719390869140716,
- "growingDegreeDaysBase10": 0.08886057535807386,
- "thickness": 5441.572606404622
}, - {
- "apparentTemperature": 8.209439227346037,
- "cloudCoverLower": 98.33333333333333,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 98.33333333333333,
- "cloudCoverUpper": 0,
- "dewPoint": 4.775231933593773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 61.59999974568685,
- "valid": "2023-09-23T08:00:00+00:00",
- "localTime": "2023-09-23T18:00:00+10:00",
- "deltaT": 4.015741557610559,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.977441406250023,
- "windDirCardinal": "S",
- "windDirDegree": 191.16687889198187,
- "windSpeed": 13.421402544716818,
- "windGust": 25.010712890624998,
- "windGustDirCardinal": "S",
- "windGustDirDegree": 191.16687889198187,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4990600585937509,
- "growingDegreeDaysBase5": 0.2907267252604176,
- "growingDegreeDaysBase10": 0.08239339192708428,
- "thickness": 5444.633722941081
}, - {
- "apparentTemperature": 8.155366536895766,
- "cloudCoverLower": 97.5999984741211,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 97.5999984741211,
- "cloudCoverUpper": 0,
- "dewPoint": 4.649987792968773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 61.79999923706055,
- "valid": "2023-09-23T09:00:00+00:00",
- "localTime": "2023-09-23T19:00:00+10:00",
- "deltaT": 3.9809571949742466,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.822229003906273,
- "windDirCardinal": "S",
- "windDirDegree": 190.35167749385403,
- "windSpeed": 12.799517357936113,
- "windGust": 26.587301158905028,
- "windGustDirCardinal": "S",
- "windGustDirDegree": 190.35167749385403,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.49259287516276135,
- "growingDegreeDaysBase5": 0.28425954182942803,
- "growingDegreeDaysBase10": 0.07592620849609469,
- "thickness": 5447.694839477539
}, - {
- "apparentTemperature": 7.985697035856754,
- "cloudCoverLower": 94.93333180745442,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 94.93333180745442,
- "cloudCoverUpper": 0,
- "dewPoint": 4.616662597656273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 63.13333384195963,
- "valid": "2023-09-23T10:00:00+00:00",
- "localTime": "2023-09-23T20:00:00+10:00",
- "deltaT": 3.811787672579216,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.422224934895837,
- "windDirCardinal": "SSW",
- "windDirDegree": 195.23687208602348,
- "windSpeed": 11.541541884174721,
- "windGust": 26.362109870910647,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 195.23687208602348,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4759260389539932,
- "growingDegreeDaysBase5": 0.26759270562065984,
- "growingDegreeDaysBase10": 0.05925937228732654,
- "thickness": 5452.005157470703
}, - {
- "apparentTemperature": 7.794424616759223,
- "cloudCoverLower": 92.26666514078777,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 92.26666514078777,
- "cloudCoverUpper": 0,
- "dewPoint": 4.583337402343773,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 64.46666844685872,
- "valid": "2023-09-23T11:00:00+00:00",
- "localTime": "2023-09-23T21:00:00+10:00",
- "deltaT": 3.646000125381157,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 11.022220865885458,
- "windDirCardinal": "SSW",
- "windDirDegree": 201.2602775690472,
- "windSpeed": 10.387410497716006,
- "windGust": 26.136918582916255,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 201.2602775690472,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4592592027452274,
- "growingDegreeDaysBase5": 0.2509258694118941,
- "growingDegreeDaysBase10": 0.04259253607856076,
- "thickness": 5456.315475463867
}, - {
- "apparentTemperature": 7.574151128184628,
- "cloudCoverLower": 89.5999984741211,
- "cloudCoverMiddle": 0,
- "cloudCoverTotal": 89.5999984741211,
- "cloudCoverUpper": 0,
- "dewPoint": 4.550012207031273,
- "frostRisk": "NO_FROST",
- "relativeHumidity": 65.80000305175781,
- "valid": "2023-09-23T12:00:00+00:00",
- "localTime": "2023-09-23T22:00:00+10:00",
- "deltaT": 3.483466196455012,
- "rainfall": 0,
- "snow": 0,
- "tmp2m": 10.622216796875023,
- "windDirCardinal": "SSW",
- "windDirDegree": 208.68233190234974,
- "windSpeed": 9.3755516076555,
- "windGust": 25.911727294921874,
- "windGustDirCardinal": "SSW",
- "windGustDirDegree": 208.68233190234974,
- "weatherIcon": "CLOUDY",
- "timeOfDay": "DAY",
- "sprayingConditionRating": "GOOD",
- "airTemperatureSprayingRating": "GOOD",
- "deltaTSprayingRating": "GOOD",
- "cloudCoverTotalSprayingRating": "UNSUITABLE",
- "windSpeedSprayingRating": "GOOD",
- "growingDegreeDaysBase0": 0.4425923665364593,
- "growingDegreeDaysBase5": 0.23425903320312594,
- "growingDegreeDaysBase10": 0.025925699869792613,
- "thickness": 5460.625793457031
}
]
}
The observation summary. Currently only supports station id '94894' in VIC.
state_territory required | string Value: "vic" Australian state or territory |
station required | string Station ID |
{- "metadata": {
- "sender": "Australian Government Bureau of Meteorology",
- "region": "Victoria",
- "identifier": "IDV60920",
- "issue_time_utc": "2023-10-12T08:21:05+00:00",
- "issue_time_local": "2023-10-12T19:21:05+11:00"
}, - "station_info": {
- "bom_id": "083024",
- "wmo_id": "94894",
- "description": "Mount Buller",
- "lat": -37.145,
- "lon": 146.4394,
- "stn_height": 1707,
- "stn_name": "MOUNT BULLER",
- "tz": "Australia/Melbourne"
}, - "observations": {
- "period": {
- "time_local": "2023-10-12T19:20:00+11:00",
- "time_utc": "2023-10-12T08:20:00+00:00",
- "wind_src": "OMD"
}, - "data": [
- {
- "type": "apparent_temp",
- "units": "Celsius",
- "value": -6.2,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "delta_t",
- "units": "Celsius",
- "value": 0,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "gust_kmh",
- "units": "km/h",
- "value": 33,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "wind_gust_spd",
- "units": "knots",
- "value": 18,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "air_temperature",
- "units": "Celsius",
- "value": 0,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "dew_point",
- "units": "Celsius",
- "value": 0,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "rel_humidity",
- "units": "%",
- "value": 100,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "wind_dir",
- "units": null,
- "value": "SSW",
- "time_utc": null,
- "time_local": null
}, - {
- "type": "wind_dir_deg",
- "units": "deg",
- "value": 199,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "wind_spd_kmh",
- "units": "km/h",
- "value": 22,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "wind_spd",
- "units": "knots",
- "value": 12,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "rainfall",
- "units": "mm",
- "value": 14,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "rainfall_24hr",
- "units": "mm",
- "value": 0,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "maximum_air_temperature",
- "units": "Celsius",
- "value": 9.1,
- "time_utc": "2023-10-11T20:18:00+00:00",
- "time_local": "2023-10-12T07:18:00+11:00"
}, - {
- "type": "minimum_air_temperature",
- "units": "Celsius",
- "value": -0.2,
- "time_utc": "2023-10-12T08:18:00+00:00",
- "time_local": "2023-10-12T19:18:00+11:00"
}, - {
- "type": "maximum_gust_spd",
- "units": "knots",
- "value": 51,
- "time_utc": "2023-10-11T23:43:00+00:00",
- "time_local": "2023-10-12T10:43:00+11:00"
}, - {
- "type": "maximum_gust_kmh",
- "units": "km/h",
- "value": 95,
- "time_utc": "2023-10-11T23:43:00+00:00",
- "time_local": "2023-10-12T10:43:00+11:00"
}, - {
- "type": "maximum_gust_dir",
- "units": null,
- "value": "N",
- "time_utc": "2023-10-11T23:43:00+00:00",
- "time_local": "2023-10-12T10:43:00+11:00"
}, - {
- "type": "vis_km",
- "units": "km",
- "value": null,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "cloud_oktas",
- "units": null,
- "value": null,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "msl_pres",
- "units": "hPa",
- "value": null,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "qnh_pres",
- "units": "hPa",
- "value": null,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "cloud_base_m",
- "units": "m",
- "value": null,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "cloud",
- "units": null,
- "value": null,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "rain_hour",
- "units": "mm",
- "value": null,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "weather",
- "units": null,
- "value": null,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "rain_ten",
- "units": "mm",
- "value": null,
- "time_utc": null,
- "time_local": null
}, - {
- "type": "pres",
- "units": "hPa",
- "value": null,
- "time_utc": null,
- "time_local": null
}
]
}
}
We can provide specific guidance on a range of variables through our Alerts Service.
This API returns whether or not conditions are met on each hour for the duration of the forecast.
This API includes the following calculated variables, with more in development. See the example code in this section for a demonstration on how each Alert can perform.
Frost risk (also listed in main API), hourly values
Good spraying conditions (also listed in main API), hourly values
Growing degree days, daily values
Weather conducive to Downy Mildew (Millioncast), hourly values
Evapotranspiration (to determine irrigation needs), daily values
Heat stress and Wind Chill (Feels Like Temperature), hourly values
Comfort index (Dew Point Temperature), hourly values
Ideas to try:
TEMPERATURE (tmp2m, apparentTemperature, dewPoint, thickness)
Cold Temperatures: Every hour that the Temperature could fall below the threshold
Hot Temperatures: Every hour that the Temperature could rise above the threshold
Wind Chill: Every hour that the Feels Like Temperature could fall below the threshold
Heat Stress: Every hour that the Feels Like Temperature could rise above the threshold
Comfort Index: Every hour that the air feels Humid or Tropical (when the Dew Point Temperature rises to 14C or above for Humid, and 20C or above for Tropical)
Thickness: Every hour that the temperature of the airmass rises above or below a threshold. Extreme heat is a risk above a thickness of 572, and likely above 576. Snow is likely to fall down to 1500m below 540, to 1200m below 536, 900m below 532, 600m below 528, 300m below 524 and to sea level at 520. Wintry hail is possible in showers when thickness is below 540.
PRECIPITATION (dailyRainTotal, dailySnowTotal, rainfall, snow)
Daily Rain: Every day (midnight to midnight) that the total rain could be more than the threshold
Daily Snow: Every day (midnight to midnight) that the total snow could be more than the threshold
Hourly Rain: Every hour that the rain could be more than the threshold (try 0.1mm to see every hour that rain is possible)
Hourly Snow: Every hour that the snow could be more than the threshold (try 0.1cm to see every hour that snow is possible)
WEATHER
Weather Conditions: Every hour that the Weather Icon matches certain criteria (ie Sunny, Cloudy, Rain, Storm - see the full list of icon options: https://bit.ly/jw-icon-details)
Good Spraying Conditions: Every hour that conditions are likely to be rated Good for Spraying (our rating that considers delta t, wind speed, cloud cover, temperature and rainfall)
Frost Risk: Every hour that brings the Risk of Frost (our risk index that considers temperature, wind speed and cloud cover)
Strong Winds: Every hour that the Wind could Gust more than the threshold (try 40km/h for strong winds, 63km/h for gales, 90km/h for damaging winds, 125km/h for destructive gusts).
Downy Mildew Risk: Every time period that could lie within the 10/10/24 rule (more than 10C, delivering more than 10mm, within a 24 hour period)
Growing Degree Days: daily and accumulated (accumulation from the beginning of the model run).
Evapotranspiration: the daily eTo value
COMING SOON Brassica White Blister Risk, Powdery Mildew Risk, Dark Leaf Spot Risk, Botrytis Risk, Ringspot Risk, Anthracnose Risk, Dollar Spot Risk, Fusarium Risk, Helminthosporium Complex Risk, Pythium Risk, Brown Patch Risk, Spring Dead Spot Risk, Summer grass Risk, Crowfoot grass Risk, Winter grass Risk, UV Level, Ground Temperature, Soil Temperature, Solar Radiation.
Full Set of Variable names:
'air_temperature', 'apparent_air_temperature', 'atmosphere_convective_available_potential_energy_wrt_surface', 'convective_rainfall_amount', 'cloud_area_fraction', 'delta_t', 'dew_point_temperature', 'downy_mildew', 'eastward_wind', 'frost_risk', 'growing_degree_days_base_0', 'growing_degree_days_base_5', 'growing_degree_days_base_10', 'high_type_cloud_area_fraction', 'low_type_cloud_area_fraction', 'medium_type_cloud_area_fraction', 'northward_wind', 'precipitation_amount', 'relative_humidity', 'spraying_condition_rating', 'snow', 'thunderstorm_probability', 'weather_icon', 'wind_speed', 'wind_speed_of_gust', 'wind_from_direction', 'wind_angle_arithmetic', 'wind_angle_azimuth'",
rule, max_value, min_value, equal_value
greater = Returns true if the forecast value is greater than min_value
greater equal = Returns true if the forecast value is greater than or equal to min_value
less = Returns true if the forecast value is less than min_value
less equal = Returns true if the forecast value is less than or equal to min_value
between = Returns true if the forecast value is greater than min_value and less than to max_value
equals = Equals the values in a list
For weather_icon, wind_from_direction and frost_risk the values must be equal to the pre-set value for these variables or an error will occur.
All other variables can have a value that is any real number.
Values that meet the conditions provided will return ‘valueInBounds’ = True value, otherwise False.
hourlyTimeStep, hourlyRule, hourlyMethod
These three options MUST be applied together. Hours don’t have to be consecutive, but must go from smallest to largest.
hourlyTimeStep = Change the time step of the data. Values can be between 1 and 9.
Entries must have a H added (e.g. 2H for a two hour time step, 3H for a 3H timestep)
hourlyRule = Change the time step from hourly to n-hourly.
Options:
max: the maximum across the time steps.
min: the minimum across the time steps.
mean: the mean across the time steps.
sum: the total value across the time steps.
non-zero min: the minimum value that is non-zero across the time steps.
hourlyMethod
Options:
rolling: at each time step applies the hourlyRule across hourlyTimeStep
resample: at each hourlyTimeStep applies the hourlyRule
Example: Convert the data to three hour time steps by taking the max of consecutive time steps in a three hour window.
hourlyTimeStep = 3H, hourlyRule = ‘max’, hourlyMethod='rolling'
dailyTimeStep, dailyRule, dailyMethod
These three options MUST be applied together.
The same as hourly time alterations, but the grouping is by days instead of by hours.
dailyTimeStep = Same as hourlyTimeStep, but changes the time step to days.
Examples: 2D, 3D, 4D
dailyRule = See hourlyRule, but for daily groups
dailyMethod = See hourlyMethod, but for daily groups
model required | string Enum: "gfs.0p25" "gem.0p1" "access-g.13km" "ecmwf.0p4" "ml" "consensus" Forecast model |
lat required | number <float> [ -90 .. 90 ] Example: lat=-37.840935 Latitude |
lng required | number <float> [ -180 .. 180 ] Example: lng=144.946457 Longitude |
max_ut | string <date-time> Set the forecast Max Updated Time (UTC). Use with ct parameter to view older Consensus runs. |
rt | string <date-time> Reference Time (UTC). Use with ct parameter to view previous model runs. |
pid | string Google API Place ID. Use with select mountain locations to adjust temperature by elevation. |
Array of objects (Forecast Alert Config Item) | |||||||||||||||||||||||||||
Array
|
{- "config": [
- {
- "id": "5c5bdf3a-a5f9-4f25-a845-57b83d802995",
- "variable": "air_temperature",
- "rule": "between",
- "minValue": 12,
- "maxValue": 29
}
]
}
{- "metadata": {
- "model": "gfs.0p25",
- "variable": "air_temperature",
- "reference_time": "2022-11-21T06:00:00+00:00",
- "updated_at": "2022-11-21T10:46:00+00:00",
- "next_update": "2022-11-21T17:00:00+00:00",
- "dataset_length": 240,
- "units": "degC",
- "search": {
- "latitude": -37.840935,
- "longitude": 144.946457,
- "place_id": null
}, - "consensus_members": null,
- "location": {
- "lat": -37.840935,
- "lon": 144.946457,
- "timezone": {
- "location": "Australia/Melbourne"
}
}
}, - "alertParams": {
- "variable": "air_temperature",
- "rule": "between",
- "max_value": 15,
- "min_value": 12,
- "equal_value": null,
- "hours": null,
- "hourly_time_step": null,
- "hourly_rule": null,
- "hourly_method": null,
- "daily_rule": null,
- "daily_time_step": null,
- "daily_method": null
}, - "forecast": [
- {
- "localTime": "2022-11-22T09:00:00+11:00",
- "valueInBounds": false,
- "value": 10.644555664062523
}, - {
- "localTime": "2022-11-22T10:00:00+11:00",
- "valueInBounds": false,
- "value": 11.759362792968773
}, - {
- "localTime": "2022-11-22T11:00:00+11:00",
- "valueInBounds": true,
- "value": 12.045312500000023
}, - {
- "localTime": "2022-11-22T12:00:00+11:00",
- "valueInBounds": true,
- "value": 12.944970703125023
}, - {
- "localTime": "2022-11-22T13:00:00+11:00",
- "valueInBounds": true,
- "value": 12.521783447265648
}, - {
- "localTime": "2022-11-22T14:00:00+11:00",
- "valueInBounds": true,
- "value": 12.570092773437523
}, - {
- "localTime": "2022-11-22T15:00:00+11:00",
- "valueInBounds": true,
- "value": 12.877709960937523
}, - {
- "localTime": "2022-11-22T16:00:00+11:00",
- "valueInBounds": false,
- "value": 15.787133789062523
}, - {
- "localTime": "2022-11-22T17:00:00+11:00",
- "valueInBounds": true,
- "value": 14.535882568359398
}, - {
- "localTime": "2022-11-22T18:00:00+11:00",
- "valueInBounds": false,
- "value": 15.006341552734398
}, - {
- "localTime": "2022-11-22T19:00:00+11:00",
- "valueInBounds": true,
- "value": 14.720635986328148
}, - {
- "localTime": "2022-11-22T20:00:00+11:00",
- "valueInBounds": true,
- "value": 13.295617675781273
}, - {
- "localTime": "2022-11-22T21:00:00+11:00",
- "valueInBounds": true,
- "value": 12.213250732421898
}, - {
- "localTime": "2022-11-22T22:00:00+11:00",
- "valueInBounds": true,
- "value": 12.403009033203148
}, - {
- "localTime": "2022-11-22T23:00:00+11:00",
- "valueInBounds": true,
- "value": 12.149346923828148
}, - {
- "localTime": "2022-11-23T00:00:00+11:00",
- "valueInBounds": false,
- "value": 11.998406982421898
}, - {
- "localTime": "2022-11-23T01:00:00+11:00",
- "valueInBounds": false,
- "value": 11.816033935546898
}, - {
- "localTime": "2022-11-23T02:00:00+11:00",
- "valueInBounds": false,
- "value": 11.528466796875023
}, - {
- "localTime": "2022-11-23T03:00:00+11:00",
- "valueInBounds": false,
- "value": 11.279840087890648
}, - {
- "localTime": "2022-11-23T04:00:00+11:00",
- "valueInBounds": false,
- "value": 11.124169921875023
}, - {
- "localTime": "2022-11-23T05:00:00+11:00",
- "valueInBounds": false,
- "value": 11.012384033203148
}, - {
- "localTime": "2022-11-23T06:00:00+11:00",
- "valueInBounds": false,
- "value": 10.510949707031273
}, - {
- "localTime": "2022-11-23T07:00:00+11:00",
- "valueInBounds": false,
- "value": 10.964044189453148
}, - {
- "localTime": "2022-11-23T08:00:00+11:00",
- "valueInBounds": false,
- "value": 11.925164794921898
}, - {
- "localTime": "2022-11-23T09:00:00+11:00",
- "valueInBounds": true,
- "value": 13.262902832031273
}, - {
- "localTime": "2022-11-23T10:00:00+11:00",
- "valueInBounds": true,
- "value": 14.622918701171898
}, - {
- "localTime": "2022-11-23T11:00:00+11:00",
- "valueInBounds": false,
- "value": 15.611871337890648
}, - {
- "localTime": "2022-11-23T12:00:00+11:00",
- "valueInBounds": false,
- "value": 15.914147949218773
}, - {
- "localTime": "2022-11-23T13:00:00+11:00",
- "valueInBounds": false,
- "value": 16.139245605468773
}, - {
- "localTime": "2022-11-23T14:00:00+11:00",
- "valueInBounds": false,
- "value": 16.869500732421898
}, - {
- "localTime": "2022-11-23T15:00:00+11:00",
- "valueInBounds": false,
- "value": 16.308770751953148
}, - {
- "localTime": "2022-11-23T16:00:00+11:00",
- "valueInBounds": false,
- "value": 16.258782958984398
}, - {
- "localTime": "2022-11-23T17:00:00+11:00",
- "valueInBounds": false,
- "value": 15.635827636718773
}, - {
- "localTime": "2022-11-23T18:00:00+11:00",
- "valueInBounds": false,
- "value": 15.248681640625023
}, - {
- "localTime": "2022-11-23T19:00:00+11:00",
- "valueInBounds": true,
- "value": 14.260095214843773
}, - {
- "localTime": "2022-11-23T20:00:00+11:00",
- "valueInBounds": true,
- "value": 13.331689453125023
}, - {
- "localTime": "2022-11-23T21:00:00+11:00",
- "valueInBounds": true,
- "value": 13.070550537109398
}, - {
- "localTime": "2022-11-23T22:00:00+11:00",
- "valueInBounds": true,
- "value": 12.190728759765648
}, - {
- "localTime": "2022-11-23T23:00:00+11:00",
- "valueInBounds": true,
- "value": 12.202325439453148
}, - {
- "localTime": "2022-11-24T00:00:00+11:00",
- "valueInBounds": false,
- "value": 11.904565429687523
}, - {
- "localTime": "2022-11-24T01:00:00+11:00",
- "valueInBounds": false,
- "value": 11.370202636718773
}, - {
- "localTime": "2022-11-24T02:00:00+11:00",
- "valueInBounds": false,
- "value": 11.208276367187523
}, - {
- "localTime": "2022-11-24T03:00:00+11:00",
- "valueInBounds": false,
- "value": 10.158990478515648
}, - {
- "localTime": "2022-11-24T04:00:00+11:00",
- "valueInBounds": false,
- "value": 9.670404052734398
}, - {
- "localTime": "2022-11-24T05:00:00+11:00",
- "valueInBounds": false,
- "value": 9.334741210937523
}, - {
- "localTime": "2022-11-24T06:00:00+11:00",
- "valueInBounds": false,
- "value": 9.036645507812523
}, - {
- "localTime": "2022-11-24T07:00:00+11:00",
- "valueInBounds": false,
- "value": 10.058679199218773
}, - {
- "localTime": "2022-11-24T08:00:00+11:00",
- "valueInBounds": false,
- "value": 11.833947753906273
}, - {
- "localTime": "2022-11-24T09:00:00+11:00",
- "valueInBounds": true,
- "value": 13.726770019531273
}, - {
- "localTime": "2022-11-24T10:00:00+11:00",
- "valueInBounds": false,
- "value": 15.590020751953148
}, - {
- "localTime": "2022-11-24T11:00:00+11:00",
- "valueInBounds": false,
- "value": 17.229028320312523
}, - {
- "localTime": "2022-11-24T12:00:00+11:00",
- "valueInBounds": false,
- "value": 18.289880371093773
}, - {
- "localTime": "2022-11-24T13:00:00+11:00",
- "valueInBounds": false,
- "value": 19.252008056640648
}, - {
- "localTime": "2022-11-24T14:00:00+11:00",
- "valueInBounds": false,
- "value": 19.714868164062523
}, - {
- "localTime": "2022-11-24T15:00:00+11:00",
- "valueInBounds": false,
- "value": 19.761987304687523
}, - {
- "localTime": "2022-11-24T16:00:00+11:00",
- "valueInBounds": false,
- "value": 19.505120849609398
}, - {
- "localTime": "2022-11-24T17:00:00+11:00",
- "valueInBounds": false,
- "value": 18.158837890625023
}, - {
- "localTime": "2022-11-24T18:00:00+11:00",
- "valueInBounds": false,
- "value": 16.678857421875023
}, - {
- "localTime": "2022-11-24T19:00:00+11:00",
- "valueInBounds": false,
- "value": 15.102319335937523
}, - {
- "localTime": "2022-11-24T20:00:00+11:00",
- "valueInBounds": true,
- "value": 13.851281738281273
}, - {
- "localTime": "2022-11-24T21:00:00+11:00",
- "valueInBounds": true,
- "value": 12.982537841796898
}, - {
- "localTime": "2022-11-24T22:00:00+11:00",
- "valueInBounds": true,
- "value": 12.353173828125023
}, - {
- "localTime": "2022-11-24T23:00:00+11:00",
- "valueInBounds": false,
- "value": 11.682153320312523
}, - {
- "localTime": "2022-11-25T00:00:00+11:00",
- "valueInBounds": false,
- "value": 11.245263671875023
}, - {
- "localTime": "2022-11-25T01:00:00+11:00",
- "valueInBounds": false,
- "value": 10.791223144531273
}, - {
- "localTime": "2022-11-25T02:00:00+11:00",
- "valueInBounds": false,
- "value": 10.479241943359398
}, - {
- "localTime": "2022-11-25T03:00:00+11:00",
- "valueInBounds": false,
- "value": 10.292687988281273
}, - {
- "localTime": "2022-11-25T04:00:00+11:00",
- "valueInBounds": false,
- "value": 10.026666259765648
}, - {
- "localTime": "2022-11-25T05:00:00+11:00",
- "valueInBounds": false,
- "value": 10.677514648437523
}, - {
- "localTime": "2022-11-25T06:00:00+11:00",
- "valueInBounds": false,
- "value": 10.791619873046898
}, - {
- "localTime": "2022-11-25T07:00:00+11:00",
- "valueInBounds": false,
- "value": 11.077905273437523
}, - {
- "localTime": "2022-11-25T08:00:00+11:00",
- "valueInBounds": true,
- "value": 12.797998046875023
}, - {
- "localTime": "2022-11-25T09:00:00+11:00",
- "valueInBounds": true,
- "value": 14.452691650390648
}, - {
- "localTime": "2022-11-25T10:00:00+11:00",
- "valueInBounds": false,
- "value": 16.510766601562523
}, - {
- "localTime": "2022-11-25T11:00:00+11:00",
- "valueInBounds": false,
- "value": 18.152490234375023
}, - {
- "localTime": "2022-11-25T12:00:00+11:00",
- "valueInBounds": false,
- "value": 19.290490722656273
}, - {
- "localTime": "2022-11-25T13:00:00+11:00",
- "valueInBounds": false,
- "value": 19.819818115234398
}, - {
- "localTime": "2022-11-25T14:00:00+11:00",
- "valueInBounds": false,
- "value": 20.074761962890648
}, - {
- "localTime": "2022-11-25T15:00:00+11:00",
- "valueInBounds": false,
- "value": 20.011499023437523
}, - {
- "localTime": "2022-11-25T16:00:00+11:00",
- "valueInBounds": false,
- "value": 20.051995849609398
}, - {
- "localTime": "2022-11-25T17:00:00+11:00",
- "valueInBounds": false,
- "value": 20.084283447265648
}, - {
- "localTime": "2022-11-25T18:00:00+11:00",
- "valueInBounds": false,
- "value": 19.098443603515648
}, - {
- "localTime": "2022-11-25T19:00:00+11:00",
- "valueInBounds": false,
- "value": 17.721978759765648
}, - {
- "localTime": "2022-11-25T20:00:00+11:00",
- "valueInBounds": false,
- "value": 16.273522949218773
}, - {
- "localTime": "2022-11-25T21:00:00+11:00",
- "valueInBounds": false,
- "value": 15.493310546875023
}, - {
- "localTime": "2022-11-25T22:00:00+11:00",
- "valueInBounds": false,
- "value": 15.016870117187523
}, - {
- "localTime": "2022-11-25T23:00:00+11:00",
- "valueInBounds": true,
- "value": 13.754846191406273
}, - {
- "localTime": "2022-11-26T00:00:00+11:00",
- "valueInBounds": true,
- "value": 13.250573730468773
}, - {
- "localTime": "2022-11-26T01:00:00+11:00",
- "valueInBounds": true,
- "value": 13.012719726562523
}, - {
- "localTime": "2022-11-26T02:00:00+11:00",
- "valueInBounds": true,
- "value": 12.914849853515648
}, - {
- "localTime": "2022-11-26T03:00:00+11:00",
- "valueInBounds": true,
- "value": 12.416650390625023
}, - {
- "localTime": "2022-11-26T04:00:00+11:00",
- "valueInBounds": true,
- "value": 12.638330078125023
}, - {
- "localTime": "2022-11-26T05:00:00+11:00",
- "valueInBounds": true,
- "value": 12.495599365234398
}, - {
- "localTime": "2022-11-26T06:00:00+11:00",
- "valueInBounds": true,
- "value": 12.844812011718773
}, - {
- "localTime": "2022-11-26T07:00:00+11:00",
- "valueInBounds": true,
- "value": 14.057641601562523
}, - {
- "localTime": "2022-11-26T08:00:00+11:00",
- "valueInBounds": false,
- "value": 16.348474121093773
}, - {
- "localTime": "2022-11-26T09:00:00+11:00",
- "valueInBounds": false,
- "value": 19.222161865234398
}, - {
- "localTime": "2022-11-26T10:00:00+11:00",
- "valueInBounds": false,
- "value": 21.838342285156273
}, - {
- "localTime": "2022-11-26T11:00:00+11:00",
- "valueInBounds": false,
- "value": 22.854760742187523
}, - {
- "localTime": "2022-11-26T12:00:00+11:00",
- "valueInBounds": false,
- "value": 23.690240478515648
}, - {
- "localTime": "2022-11-26T13:00:00+11:00",
- "valueInBounds": false,
- "value": 23.192224121093773
}, - {
- "localTime": "2022-11-26T14:00:00+11:00",
- "valueInBounds": false,
- "value": 22.591912841796898
}, - {
- "localTime": "2022-11-26T15:00:00+11:00",
- "valueInBounds": false,
- "value": 23.531182861328148
}, - {
- "localTime": "2022-11-26T16:00:00+11:00",
- "valueInBounds": false,
- "value": 21.979211425781273
}, - {
- "localTime": "2022-11-26T17:00:00+11:00",
- "valueInBounds": false,
- "value": 23.535882568359398
}, - {
- "localTime": "2022-11-26T18:00:00+11:00",
- "valueInBounds": false,
- "value": 21.920393880208337
}, - {
- "localTime": "2022-11-26T19:00:00+11:00",
- "valueInBounds": false,
- "value": 20.304905192057333
}, - {
- "localTime": "2022-11-26T20:00:00+11:00",
- "valueInBounds": false,
- "value": 18.689416503906273
}, - {
- "localTime": "2022-11-26T21:00:00+11:00",
- "valueInBounds": false,
- "value": 18.298486328125023
}, - {
- "localTime": "2022-11-26T22:00:00+11:00",
- "valueInBounds": false,
- "value": 17.907556152343773
}, - {
- "localTime": "2022-11-26T23:00:00+11:00",
- "valueInBounds": false,
- "value": 17.516625976562523
}, - {
- "localTime": "2022-11-27T00:00:00+11:00",
- "valueInBounds": false,
- "value": 16.705926513671898
}, - {
- "localTime": "2022-11-27T01:00:00+11:00",
- "valueInBounds": false,
- "value": 15.895227050781273
}, - {
- "localTime": "2022-11-27T02:00:00+11:00",
- "valueInBounds": false,
- "value": 15.084527587890648
}, - {
- "localTime": "2022-11-27T03:00:00+11:00",
- "valueInBounds": true,
- "value": 14.593784586588583
}, - {
- "localTime": "2022-11-27T04:00:00+11:00",
- "valueInBounds": true,
- "value": 14.103041585286462
}, - {
- "localTime": "2022-11-27T05:00:00+11:00",
- "valueInBounds": true,
- "value": 13.612298583984398
}, - {
- "localTime": "2022-11-27T06:00:00+11:00",
- "valueInBounds": true,
- "value": 14.396386718750023
}, - {
- "localTime": "2022-11-27T07:00:00+11:00",
- "valueInBounds": false,
- "value": 15.180474853515648
}, - {
- "localTime": "2022-11-27T08:00:00+11:00",
- "valueInBounds": false,
- "value": 15.964562988281273
}, - {
- "localTime": "2022-11-27T09:00:00+11:00",
- "valueInBounds": false,
- "value": 18.379042561848962
}, - {
- "localTime": "2022-11-27T10:00:00+11:00",
- "valueInBounds": false,
- "value": 20.79352213541671
}, - {
- "localTime": "2022-11-27T11:00:00+11:00",
- "valueInBounds": false,
- "value": 23.208001708984398
}, - {
- "localTime": "2022-11-27T12:00:00+11:00",
- "valueInBounds": false,
- "value": 22.677545166015648
}, - {
- "localTime": "2022-11-27T13:00:00+11:00",
- "valueInBounds": false,
- "value": 22.147088623046898
}, - {
- "localTime": "2022-11-27T14:00:00+11:00",
- "valueInBounds": false,
- "value": 21.616632080078148
}, - {
- "localTime": "2022-11-27T15:00:00+11:00",
- "valueInBounds": false,
- "value": 22.018019612630212
}, - {
- "localTime": "2022-11-27T16:00:00+11:00",
- "valueInBounds": false,
- "value": 22.419407145182333
}, - {
- "localTime": "2022-11-27T17:00:00+11:00",
- "valueInBounds": false,
- "value": 22.820794677734398
}, - {
- "localTime": "2022-11-27T18:00:00+11:00",
- "valueInBounds": false,
- "value": 20.95032145182296
}, - {
- "localTime": "2022-11-27T19:00:00+11:00",
- "valueInBounds": false,
- "value": 19.079848225911462
}, - {
- "localTime": "2022-11-27T20:00:00+11:00",
- "valueInBounds": false,
- "value": 17.209375000000023
}, - {
- "localTime": "2022-11-27T21:00:00+11:00",
- "valueInBounds": false,
- "value": 16.336053466796898
}, - {
- "localTime": "2022-11-27T22:00:00+11:00",
- "valueInBounds": false,
- "value": 15.462731933593773
}, - {
- "localTime": "2022-11-27T23:00:00+11:00",
- "valueInBounds": true,
- "value": 14.589410400390648
}, - {
- "localTime": "2022-11-28T00:00:00+11:00",
- "valueInBounds": true,
- "value": 13.775435384114587
}, - {
- "localTime": "2022-11-28T01:00:00+11:00",
- "valueInBounds": true,
- "value": 12.961460367838583
}, - {
- "localTime": "2022-11-28T02:00:00+11:00",
- "valueInBounds": true,
- "value": 12.147485351562523
}, - {
- "localTime": "2022-11-28T03:00:00+11:00",
- "valueInBounds": false,
- "value": 11.337019856770837
}, - {
- "localTime": "2022-11-28T04:00:00+11:00",
- "valueInBounds": false,
- "value": 10.526554361979208
}, - {
- "localTime": "2022-11-28T05:00:00+11:00",
- "valueInBounds": false,
- "value": 9.716088867187523
}, - {
- "localTime": "2022-11-28T06:00:00+11:00",
- "valueInBounds": false,
- "value": 10.505344645182333
}, - {
- "localTime": "2022-11-28T07:00:00+11:00",
- "valueInBounds": false,
- "value": 11.294600423177087
}, - {
- "localTime": "2022-11-28T08:00:00+11:00",
- "valueInBounds": true,
- "value": 12.083856201171898
}, - {
- "localTime": "2022-11-28T09:00:00+11:00",
- "valueInBounds": true,
- "value": 12.654300944010458
}, - {
- "localTime": "2022-11-28T10:00:00+11:00",
- "valueInBounds": true,
- "value": 13.224745686848962
}, - {
- "localTime": "2022-11-28T11:00:00+11:00",
- "valueInBounds": true,
- "value": 13.795190429687523
}, - {
- "localTime": "2022-11-28T12:00:00+11:00",
- "valueInBounds": false,
- "value": 15.005985514322958
}, - {
- "localTime": "2022-11-28T13:00:00+11:00",
- "valueInBounds": false,
- "value": 16.216780598958337
}, - {
- "localTime": "2022-11-28T14:00:00+11:00",
- "valueInBounds": false,
- "value": 17.427575683593773
}, - {
- "localTime": "2022-11-28T15:00:00+11:00",
- "valueInBounds": false,
- "value": 16.691074625651083
}, - {
- "localTime": "2022-11-28T16:00:00+11:00",
- "valueInBounds": false,
- "value": 15.954573567708337
}, - {
- "localTime": "2022-11-28T17:00:00+11:00",
- "valueInBounds": false,
- "value": 15.218072509765648
}, - {
- "localTime": "2022-11-28T18:00:00+11:00",
- "valueInBounds": true,
- "value": 14.828627522786462
}, - {
- "localTime": "2022-11-28T19:00:00+11:00",
- "valueInBounds": true,
- "value": 14.439182535807333
}, - {
- "localTime": "2022-11-28T20:00:00+11:00",
- "valueInBounds": true,
- "value": 14.049737548828148
}, - {
- "localTime": "2022-11-28T21:00:00+11:00",
- "valueInBounds": true,
- "value": 13.459700520833337
}, - {
- "localTime": "2022-11-28T22:00:00+11:00",
- "valueInBounds": true,
- "value": 12.869663492838583
}, - {
- "localTime": "2022-11-28T23:00:00+11:00",
- "valueInBounds": true,
- "value": 12.279626464843773
}, - {
- "localTime": "2022-11-29T00:00:00+11:00",
- "valueInBounds": false,
- "value": 11.920709228515648
}, - {
- "localTime": "2022-11-29T01:00:00+11:00",
- "valueInBounds": false,
- "value": 11.561791992187523
}, - {
- "localTime": "2022-11-29T02:00:00+11:00",
- "valueInBounds": false,
- "value": 11.202874755859398
}, - {
- "localTime": "2022-11-29T03:00:00+11:00",
- "valueInBounds": false,
- "value": 10.985650634765648
}, - {
- "localTime": "2022-11-29T04:00:00+11:00",
- "valueInBounds": false,
- "value": 10.768426513671898
}, - {
- "localTime": "2022-11-29T05:00:00+11:00",
- "valueInBounds": false,
- "value": 10.551202392578148
}, - {
- "localTime": "2022-11-29T06:00:00+11:00",
- "valueInBounds": false,
- "value": 10.736322021484398
}, - {
- "localTime": "2022-11-29T07:00:00+11:00",
- "valueInBounds": false,
- "value": 10.921441650390648
}, - {
- "localTime": "2022-11-29T08:00:00+11:00",
- "valueInBounds": false,
- "value": 11.106561279296898
}, - {
- "localTime": "2022-11-29T09:00:00+11:00",
- "valueInBounds": false,
- "value": 11.883772786458337
}, - {
- "localTime": "2022-11-29T10:00:00+11:00",
- "valueInBounds": true,
- "value": 12.660984293619833
}, - {
- "localTime": "2022-11-29T11:00:00+11:00",
- "valueInBounds": true,
- "value": 13.438195800781273
}, - {
- "localTime": "2022-11-29T12:00:00+11:00",
- "valueInBounds": true,
- "value": 13.444075520833337
}, - {
- "localTime": "2022-11-29T13:00:00+11:00",
- "valueInBounds": true,
- "value": 13.449955240885458
}, - {
- "localTime": "2022-11-29T14:00:00+11:00",
- "valueInBounds": true,
- "value": 13.455834960937523
}, - {
- "localTime": "2022-11-29T15:00:00+11:00",
- "valueInBounds": true,
- "value": 13.491265869140648
}, - {
- "localTime": "2022-11-29T16:00:00+11:00",
- "valueInBounds": true,
- "value": 13.526696777343773
}, - {
- "localTime": "2022-11-29T17:00:00+11:00",
- "valueInBounds": true,
- "value": 13.562127685546898
}, - {
- "localTime": "2022-11-29T18:00:00+11:00",
- "valueInBounds": true,
- "value": 12.950677490234398
}, - {
- "localTime": "2022-11-29T19:00:00+11:00",
- "valueInBounds": true,
- "value": 12.339227294921898
}, - {
- "localTime": "2022-11-29T20:00:00+11:00",
- "valueInBounds": false,
- "value": 11.727777099609398
}, - {
- "localTime": "2022-11-29T21:00:00+11:00",
- "valueInBounds": false,
- "value": 11.015802001953148
}, - {
- "localTime": "2022-11-29T22:00:00+11:00",
- "valueInBounds": false,
- "value": 10.303826904296898
}, - {
- "localTime": "2022-11-29T23:00:00+11:00",
- "valueInBounds": false,
- "value": 9.591851806640648
}, - {
- "localTime": "2022-11-30T00:00:00+11:00",
- "valueInBounds": false,
- "value": 8.991387939453148
}, - {
- "localTime": "2022-11-30T01:00:00+11:00",
- "valueInBounds": false,
- "value": 8.390924072265648
}, - {
- "localTime": "2022-11-30T02:00:00+11:00",
- "valueInBounds": false,
- "value": 7.790460205078148
}, - {
- "localTime": "2022-11-30T03:00:00+11:00",
- "valueInBounds": false,
- "value": 7.403344726562523
}, - {
- "localTime": "2022-11-30T04:00:00+11:00",
- "valueInBounds": false,
- "value": 7.016229248046898
}, - {
- "localTime": "2022-11-30T05:00:00+11:00",
- "valueInBounds": false,
- "value": 6.629113769531273
}, - {
- "localTime": "2022-11-30T06:00:00+11:00",
- "valueInBounds": false,
- "value": 7.727115885416708
}, - {
- "localTime": "2022-11-30T07:00:00+11:00",
- "valueInBounds": false,
- "value": 8.825118001302087
}, - {
- "localTime": "2022-11-30T08:00:00+11:00",
- "valueInBounds": false,
- "value": 9.923120117187523
}, - {
- "localTime": "2022-11-30T09:00:00+11:00",
- "valueInBounds": false,
- "value": 11.854740397135458
}, - {
- "localTime": "2022-11-30T10:00:00+11:00",
- "valueInBounds": true,
- "value": 13.786360677083337
}, - {
- "localTime": "2022-11-30T11:00:00+11:00",
- "valueInBounds": false,
- "value": 15.717980957031273
}, - {
- "localTime": "2022-11-30T12:00:00+11:00",
- "valueInBounds": false,
- "value": 16.989719645182333
}, - {
- "localTime": "2022-11-30T13:00:00+11:00",
- "valueInBounds": false,
- "value": 18.261458333333337
}, - {
- "localTime": "2022-11-30T14:00:00+11:00",
- "valueInBounds": false,
- "value": 19.533197021484398
}, - {
- "localTime": "2022-11-30T15:00:00+11:00",
- "valueInBounds": false,
- "value": 19.399957275390648
}, - {
- "localTime": "2022-11-30T16:00:00+11:00",
- "valueInBounds": false,
- "value": 19.266717529296898
}, - {
- "localTime": "2022-11-30T17:00:00+11:00",
- "valueInBounds": false,
- "value": 19.133477783203148
}, - {
- "localTime": "2022-11-30T18:00:00+11:00",
- "valueInBounds": false,
- "value": 17.61322428385421
}, - {
- "localTime": "2022-11-30T19:00:00+11:00",
- "valueInBounds": false,
- "value": 16.092970784505212
}, - {
- "localTime": "2022-11-30T20:00:00+11:00",
- "valueInBounds": true,
- "value": 14.572717285156273
}, - {
- "localTime": "2022-11-30T21:00:00+11:00",
- "valueInBounds": true,
- "value": 13.734124755859398
}, - {
- "localTime": "2022-11-30T22:00:00+11:00",
- "valueInBounds": true,
- "value": 12.895532226562523
}, - {
- "localTime": "2022-11-30T23:00:00+11:00",
- "valueInBounds": true,
- "value": 12.056939697265648
}, - {
- "localTime": "2022-12-01T00:00:00+11:00",
- "valueInBounds": false,
- "value": 11.646712239583337
}, - {
- "localTime": "2022-12-01T01:00:00+11:00",
- "valueInBounds": false,
- "value": 11.236484781901083
}, - {
- "localTime": "2022-12-01T02:00:00+11:00",
- "valueInBounds": false,
- "value": 10.826257324218773
}, - {
- "localTime": "2022-12-01T03:00:00+11:00",
- "valueInBounds": false,
- "value": 10.448439534505212
}, - {
- "localTime": "2022-12-01T04:00:00+11:00",
- "valueInBounds": false,
- "value": 10.070621744791708
}, - {
- "localTime": "2022-12-01T05:00:00+11:00",
- "valueInBounds": false,
- "value": 9.692803955078148
}, - {
- "localTime": "2022-12-01T06:00:00+11:00",
- "valueInBounds": false,
- "value": 10.728672281901083
}, - {
- "localTime": "2022-12-01T07:00:00+11:00",
- "valueInBounds": false,
- "value": 11.764540608723962
}, - {
- "localTime": "2022-12-01T08:00:00+11:00",
- "valueInBounds": true,
- "value": 12.800408935546898
}, - {
- "localTime": "2022-12-01T09:00:00+11:00",
- "valueInBounds": true,
- "value": 14.438256835937523
}, - {
- "localTime": "2022-12-01T10:00:00+11:00",
- "valueInBounds": false,
- "value": 16.076104736328148
}, - {
- "localTime": "2022-12-01T11:00:00+11:00",
- "valueInBounds": false,
- "value": 17.713952636718773
}, - {
- "localTime": "2022-12-01T12:00:00+11:00",
- "valueInBounds": false,
- "value": 18.727960205078148
}, - {
- "localTime": "2022-12-01T13:00:00+11:00",
- "valueInBounds": false,
- "value": 19.741967773437523
}, - {
- "localTime": "2022-12-01T14:00:00+11:00",
- "valueInBounds": false,
- "value": 20.755975341796898
}, - {
- "localTime": "2022-12-01T15:00:00+11:00",
- "valueInBounds": false,
- "value": 20.12897135416671
}, - {
- "localTime": "2022-12-01T16:00:00+11:00",
- "valueInBounds": false,
- "value": 19.501967366536462
}, - {
- "localTime": "2022-12-01T17:00:00+11:00",
- "valueInBounds": false,
- "value": 18.874963378906273
}
]
}
[- {
- "location": {
- "name": "Mount Buller",
- "place_id": "ChIJB37TEEqCKGsRcFSgMKR5BQQ",
- "lat": -37.1465655,
- "lng": 146.4506354
}, - "next_3_days": {
- "min": 4.75,
- "max": 8.5
}, - "next_7_days": {
- "min": 4.75,
- "max": 9.538
}, - "next_10_days": {
- "min": 5.414,
- "max": 9.686
}
}, - {
- "location": {
- "name": "Hotham Resort Western Boundary",
- "place_id": "ChIJN6FX1qEtJGsRtOa1ju6LvtM",
- "lat": -37,
- "lng": 147.07
}, - "next_3_days": {
- "min": 4.375,
- "max": 7.717
}, - "next_7_days": {
- "min": 4.375,
- "max": 8.968
}, - "next_10_days": {
- "min": 4.521,
- "max": 10.004
}
}, - {
- "location": {
- "name": "Falls Creek",
- "place_id": "ChIJzz3BvDQ_JGsR4E-gMKR5BQQ",
- "lat": -36.8646894,
- "lng": 147.279182
}, - "next_3_days": {
- "min": 2.9,
- "max": 6.308
}, - "next_7_days": {
- "min": 2.9,
- "max": 7.36
}, - "next_10_days": {
- "min": 2.9,
- "max": 9.18
}
}, - {
- "location": {
- "name": "Mount Baw Baw",
- "place_id": "ChIJ8csgF7_5KGsR2EjkH26HO_A",
- "lat": -37.8383333,
- "lng": 146.2736111
}, - "next_3_days": {
- "min": 2.25,
- "max": 5.722
}, - "next_7_days": {
- "min": 2.291,
- "max": 7.73
}, - "next_10_days": {
- "min": 5,
- "max": 7.73
}
}, - {
- "location": {
- "name": "Mount Stirling",
- "place_id": "ChIJj8budJxAJmsR8EUaLKV5BR0",
- "lat": -37.12722220000001,
- "lng": 146.4988889
}, - "next_3_days": {
- "min": 4.75,
- "max": 8.5
}, - "next_7_days": {
- "min": 4.75,
- "max": 8.5
}, - "next_10_days": {
- "min": 5.414,
- "max": 8.5
}
}, - {
- "location": {
- "name": "Mount Buffalo",
- "place_id": "ChIJrWvNLByFJmsRPuUTbyfkcSw",
- "lat": -36.7833333,
- "lng": 146.7833333
}, - "next_3_days": {
- "min": 3.5,
- "max": 4.1
}, - "next_7_days": {
- "min": 3.5,
- "max": 4.1
}, - "next_10_days": {
- "min": 3.51,
- "max": 4.729
}
}, - {
- "location": {
- "name": "Lake Mountain",
- "place_id": "ChIJbYA9bvtqKGsRetxt-uYLYZg",
- "lat": -37.50444439999999,
- "lng": 145.8822222
}, - "next_3_days": {
- "min": 1.417,
- "max": 6.3
}, - "next_7_days": {
- "min": 1.438,
- "max": 6.3
}, - "next_10_days": {
- "min": 1.791,
- "max": 6.3
}
}, - {
- "location": {
- "name": "Thredbo",
- "place_id": "ChIJYRaafL5LI2sRUlpfMHVpFm4",
- "lat": -36.5043775,
- "lng": 148.304401
}, - "next_3_days": {
- "min": 1.3,
- "max": 4.563
}, - "next_7_days": {
- "min": 1.3,
- "max": 4.563
}, - "next_10_days": {
- "min": 1.4,
- "max": 5.298
}
}, - {
- "location": {
- "name": "Blue Lake",
- "place_id": "ChIJqxNcKVA0I2sRIK7f0bQJBio",
- "lat": -36.4,
- "lng": 148.315
}, - "next_3_days": {
- "min": 4.375,
- "max": 7.6
}, - "next_7_days": {
- "min": 4.375,
- "max": 7.6
}, - "next_10_days": {
- "min": 4.44,
- "max": 7.6
}
}, - {
- "location": {
- "name": "Charlotte Pass Kosciuszko",
- "place_id": "ChIJz8M1Mwo1I2sRpfjvPOy-l4Y",
- "lat": -36.4316844,
- "lng": 148.3288958
}, - "next_3_days": {
- "min": 4.438,
- "max": 8.2
}, - "next_7_days": {
- "min": 4.438,
- "max": 8.2
}, - "next_10_days": {
- "min": 4.565,
- "max": 8.2
}
}, - {
- "location": {
- "name": "Cabramurra",
- "place_id": "ChIJOes9WpM2PWsRAOdDkLQJBgQ",
- "lat": -35.9362026,
- "lng": 148.3802053
}, - "next_3_days": {
- "min": 1.375,
- "max": 6.3
}, - "next_7_days": {
- "min": 1.375,
- "max": 6.3
}, - "next_10_days": {
- "min": 1.375,
- "max": 6.3
}
}, - {
- "location": {
- "name": "Ben Lomond",
- "place_id": "ChIJLYLDOQnFcKoR4Prd0E3JAwQ",
- "lat": -41.5064523,
- "lng": 147.6258515
}, - "next_3_days": {
- "min": 0,
- "max": 0.1
}, - "next_7_days": {
- "min": 0.1,
- "max": 0.637
}, - "next_10_days": {
- "min": 0.1,
- "max": 14.564
}
}, - {
- "location": {
- "name": "Mount Mawson",
- "place_id": "ChIJuagJsWdMbqoRye8T44Yc-ic",
- "lat": -42.69,
- "lng": 146.58
}, - "next_3_days": {
- "min": 3.125,
- "max": 7.3
}, - "next_7_days": {
- "min": 4.599,
- "max": 9.8
}, - "next_10_days": {
- "min": 6.315,
- "max": 26.484
}
}, - {
- "location": {
- "name": "Mount Wellington",
- "place_id": "ChIJHyEIEJJ2bqoRuSf6NRu_Abk",
- "lat": -42.89,
- "lng": 147.23
}, - "next_3_days": {
- "min": 0,
- "max": 0.062
}, - "next_7_days": {
- "min": 0,
- "max": 0.07
}, - "next_10_days": {
- "min": 0,
- "max": 2.994
}
}
]