How to Access the Windy Stations Data
-
@Suty Ok, thank you for your help and information.
Regards. -
Hello, how can I access my station's data
[https://kalamaria.gr](link url)
-
Hi, how to access my station
My Station-ID is f06ef7f6 -
@loanzagk Here is the link to your station: https://www.windy.com/station/pws-f06ef7f6?39.661,22.978,8
-
Hello, how can I access my station's data
-
@Ioanzagk How would you like to access them? In Windy or anywhere else?
-
-
@chezburke said in How to Access the Windy Stations Data:
In addition, there is no rainfall data
-
@windywolf-0 I know it's an old thread, but I have just experimented with it and it works well. My URL (my secret key not shown fully):
https://stations.windy.com/pws/station/ey.......................................Ms/1
Notice the /1 at the end. That is not my User ID, but Station ID, which is a number 1, 2, 3, etc. I have two stations registered. As the API secret key is unique, there is not need for further id's other than which station you want to output as you can have multiple stations registered.
Output is somehting like this:
{ "header": { "name": "Hillerød Vejr", "content": { "url": "https://www.weatherlink.com/embeddablePage/show/29253b7531e245f29849d08b8aa11b36/summary", "text": "Roland Lyngvig" }, "agl_temp": 2, "agl_wind": 10, "elev_m": 51, "lat": 55.9441848441452, "lon": 12.3373728990555, "stationType": "Davis Vantage Pro2 Plus", "shareOption": "Open", "id": "1f071b2f3", "stationId": 1, "type": "pws", "updated": "2024-07-13T09:50:53.349Z", "observation": { "avgFreqMin": 5.00248138957816, "records": 4, "avgDelayMin": 2.50124069478908, "latestObs": "2024-07-12T05:58:02.000Z" }, "observationUpdated": "2024-07-12T06:01:57.473Z" }, "data": { "ts": [1718273281000, 1718273581000, 1718273881000, 1718274181000, 1718274481000, 1718274781000, 1718275081000, 1718275381000, 1718275681000, 1718275981000, 1718276281000, 1718276581000, 1718276881000, 1718277181000, 1718277481000, 1718277781000, 1718278081000,
My reporting happens from a C#/.NET program I have made that runs locally in my house so it can access the WeatherLink device and read out data every 5 minutes. That is a very good and stable solution that runs 99.9%.
-
@slawek931 did you happen to get this to work?
I am using ecowitt and would like to upload data to windy but I'm not entirely savvy with this, if you got it to work, would you be able to helpe out with the steps to do it.Thank you.
-
Hello,
How exactly does sending a precip value work?
I am sending precipitation for the last hour as written in the parameter. I have programmed a time window where precipitation for the last 60 minutes is stored and the value is sent every 5 minutes. Anyway, I don't think that adding up the precipitation on the windy side works correctly or the interpretation of this parameter is wrong.
I will give an example of what I send.
10:00 - 0mm (past hour)
10:05 - 5mm (past hour) ------+5mm rain between 10:00-10:05
10:10 - 5mm (past hour)
10:15 - 5mm (past hour)
10:20 - 5mm (past hour)
10:25 - 5mm (past hour)
10:30 - 20mm (past hour)------+15mm rain between 10:25-10:30
10:35 - 20mm (past hour)
10:40 - 20mm (past hour)
10:45 - 20mm (past hour)
10:50 - 20mm (past hour)
10:55 - 20mm (past hour)
11:00 - 20mm (past hour)
11:05 - 20mm (past hour)
11:10 - 15mm (past hour) -------minus 5 because an hour has passed since the rains
11:15 - 15mm (past hour)
11:20 - 15mm (past hour)
11:25 - 15mm (past hour)
11:30 - 15mm (past hour)
11:35 - 0mm (past hour) -------minus -15 because an hour has passed since the rainsSo I don't know where the error is, but I'm sending the data as it should (according to the interpretation of precipitation for the past hour)