Dewpoint and Relative Humidity missing from Forecast API #752
Replies: 3 comments
-
The change was announced in May. They still exist one the hourly forecast periods. NOUS41 KWBC 221600 Removal of the following parameters from the |
Beta Was this translation helpful? Give feedback.
-
Just mentioning that the documentation for the /gridpoints/{wfo}/{x},{y}/forecast endpoint still shows the |
Beta Was this translation helpful? Give feedback.
-
Thank you. This has been documented for removal. |
Beta Was this translation helpful? Give feedback.
-
I have had a feed working for quite some time and starting sometime last week, the Dewpoint and Relative Humidity is no longer in the "periods" feed. According to the documentation example it should still be there. As an example, here is one of the sites I pull: [https://api.weather.gov/gridpoints/LWX/83,69/forecast] . This gives me the following, which as of today is missing the dewpoint and relative humidity. Is this a new change?
{
"@context": [
"https://geojson.org/geojson-ld/geojson-context.jsonld",
{
"@Version": "1.1",
"wx": "https://api.weather.gov/ontology#",
"geo": "http://www.opengis.net/ont/geosparql#",
"unit": "http://codes.wmo.int/common/unit/",
"@vocab": "https://api.weather.gov/ontology#"
}
],
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-77.439337300000005,
38.897386599999997
],
[
-77.44301320000001,
38.8754177
],
[
-77.414820600000013,
38.872557
],
[
-77.411138900000012,
38.894525600000001
],
[
-77.439337300000005,
38.897386599999997
]
]
]
},
"properties": {
"units": "us",
"forecastGenerator": "BaselineForecastGenerator",
"generatedAt": "2024-08-12T17:24:37+00:00",
"updateTime": "2024-08-12T14:30:23+00:00",
"validTimes": "2024-08-12T08:00:00+00:00/P7DT17H",
"elevation": {
"unitCode": "wmoUnit:m",
"value": 91.135199999999998
},
"periods": [
{
"number": 1,
"name": "This Afternoon",
"startTime": "2024-08-12T13:00:00-04:00",
"endTime": "2024-08-12T18:00:00-04:00",
"isDaytime": true,
"temperature": 86,
"temperatureUnit": "F",
"temperatureTrend": "",
"probabilityOfPrecipitation": {
"unitCode": "wmoUnit:percent",
"value": null
},
"windSpeed": "7 mph",
"windDirection": "NW",
"icon": "https://api.weather.gov/icons/land/day/sct?size=medium",
"shortForecast": "Mostly Sunny",
"detailedForecast": "Mostly sunny, with a high near 86. Northwest wind around 7 mph."
},
{
"number": 2,
"name": "Tonight",
"startTime": "2024-08-12T18:00:00-04:00",
"endTime": "2024-08-13T06:00:00-04:00",
"isDaytime": false,
"temperature": 63,
"temperatureUnit": "F",
"temperatureTrend": "",
"probabilityOfPrecipitation": {
"unitCode": "wmoUnit:percent",
"value": null
},
"windSpeed": "2 to 7 mph",
"windDirection": "NW",
"icon": "https://api.weather.gov/icons/land/night/sct?size=medium",
"shortForecast": "Partly Cloudy",
"detailedForecast": "Partly cloudy, with a low around 63. Northwest wind 2 to 7 mph."
},
Beta Was this translation helpful? Give feedback.
All reactions