Relative Pressure - Local Weather Push Parser
Hi,
I am using the local weather push parser to add my local data.
Meanwhile, I found that the "RH" element (relative pressure), isn't available on the API specification (https://rainmachine.docs.apiary.io/#reference/weather-services/parserdata/post)
Anyway, I have added it to my JSON payload. My push local weather JSON payload looks like:
{
"weather": [
{
"timestamp": 1600412400,
"mintemp": 18.0,
"maxtemp": 18.9,
"temperature": 18.5759368186878,
"wind": 1.17891009,
"solarrad": 0.028104716520154818,
"rain": 5.4,
"minrh": 88.0,
"rh": 91.26286761019746,
"maxrh": 95.0,
"pressure": 99.76138151
}
]
}
When I try to read the parser data from the Rainmachine (/api/4/parser/14/data) the RH is null:
"parserData": [
{
"forecast": {
"processed": 0,
"id": 62003,
"time": "2020-09-18 09:14:30"
},
"dailyValues": [
{
"day": "2020-09-18 00:00:00",
"hourlyValues": [
{
"hour": "2020-09-18 08:00:00",
"temperature": 18.58,
"minTemperature": 17.4,
"maxTemperature": 19.2,
"rh": null,
"minRh": 80,
"maxRh": 95,
"wind": 1.18,
"solarRad": 0.03,
"skyCover": null,
"rain": 5.4,
"et0": null,
"pop": null,
"qpf": null,
"condition": null,
"pressure": 99.76,
"dewPoint": null
}
]
}
]
}
Is the RH missing on the Push Local Weather parser API?
Regards,
Pedro
Please sign in to leave a comment.
Comments
3 comments