• pywws - Great python software app to send data to Windy

    Pinned
    5
    5 Votes
    5 Posts
    6k Views
    thulinT
    I haven't been able to transmit weather data to Windy from pywws since May 2024. Do anybody know if this service is broken at the Windy side?
  • Cumulus MX - How to send data to Windy

    Pinned
    18
    3 Votes
    18 Posts
    11k Views
    marekdM
    @Paulo-Nóbrega The difference between the API key and the station password is explained here: https://stations.windy.com/docs https://stations.windy.com/api-reference
  • Acuparse - AcuRite Access/smartHUB supports upload data to Windy

    Pinned
    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • WifiLogger - Easy way how to send data from Davis stations to Windy

    Pinned
    9
    1 Votes
    9 Posts
    7k Views
    hplovely2025H
    thanks!This was super helpful and easy to follow.
  • 4 Votes
    2 Posts
    3k Views
    P
    @tomslavkovsky I have been stuggling to get windy to publish my data. This screenshot worked a treat. For a complete novice it was very helpful. My first attempt did not work. I think my API had expired. I deleted my Old station added a new one, with the new API key I was publishing data on Windy in 3 minutes..........Thanks
  • Meteobridge added support to share data on Windy

    Pinned stations tutorial
    26
    1
    2 Votes
    26 Posts
    16k Views
    KorinaK
    @the-kite-bubble said in Meteobridge added support to share data on Windy: f049120c Hello, sometimes it may take several hours till the station appears on Windy. I would give it a day. Let me know if the problem persists.
  • WeeWX - How to send data to Windy

    Pinned
    3
    4 Votes
    3 Posts
    6k Views
    mrpetewxM
    @czollars (Just to answer for others who stop by: must be root to install the plugin.)
  • Add my Weather Underground station

    7
    0 Votes
    7 Posts
    72 Views
    faruktuncaF
    Yes. There are no problems with the data flow. However, there is no field to enter the Windy key on the Ambient Weather WS-2000 console. Or maybe I failed. I wrote this here so Windy can add it manually.
  • Pressure data is received via API v2 but not displayed on station UI (PWS)

    13
    0 Votes
    13 Posts
    514 Views
    T
    I was experiencing the same issue, it was driving me nuts. Thanks for the information, My PWS shows pressure only in graph.
  • Windy API for PWS

    3
    0 Votes
    3 Posts
    44 Views
    SutyS
    @ulerio Hello and thank you for your feedback. I already forwarded this to colleagues and they will check the whole situation. However, I can't promise major priority right now. Thank you for your patience.
  • Average visibility

    2
    0 Votes
    2 Posts
    43 Views
    No one has replied
  • Mammatus Clouds in Italy 02/08/2025

    1
    1
    1 Votes
    1 Posts
    41 Views
    No one has replied
  • Windy API: missing precipitation data and limited history

    5
    0 Votes
    5 Posts
    149 Views
    marekdM
    @WeatherMan10 No, that is another issue. It was not possible to send solar radiation in the previous API version, so it was not implemented in Windy either. However, there is no reason for that now. I have already reported it to the frontend team.
  • How to correct data logs?

    2
    0 Votes
    2 Posts
    63 Views
    marekdM
    @FincaCanLlop It is not possible, unfortunately. But PWS are considered unreliable in general, so do not worry about it. Just wait a few days, it will disappear from the history :-)
  • Wind Trinity

    2
    1 Votes
    2 Posts
    70 Views
    WeatherMan10W
    @indomet said in Wind Trinity: In the context of the "Windy PWS project": How should I formulate, assemble, or compose the "wind trinity" to "report it every five minutes" if, strictly speaking, I only have the following data sources? "1 Min Scalar Avg Wind Direction" "1 Min Avg Wind Speed" "2 Min Avg Wind Speed" "10 Min Avg Wind Speed" "2 Min High Wind Speed" "10 Min High Wind Speed" Hello, @indomet Do you have the option of reporting every 10 minutes rather than 5? Can you include some details about what Weather Station you are using and how you are planning to forward the data to Windy (Code Wise).
  • Inaccurate Weather station Milton Keynes (UK)

    5
    3
    0 Votes
    5 Posts
    164 Views
    marekdM
    Thank you guys for the report and investigation. I have forwarded it to the team responsible for downloading station data. If there is anything we can do about it, we will fix it.
  • API v2: recent observations from open data returns only 7 days back

    2
    0 Votes
    2 Posts
    48 Views
    marekdM
    @gptwisted Thanks for letting us know. The bug was in the documentation and it has now been fixed. Previously, it was possible to request 30 days, but we had to limit it to 7 days. It was causing a huge load on our systems as the number of requests increased.
  • windbird

    2
    0 Votes
    2 Posts
    1k Views
    S
    Hi, This is a bit late - but probably not too late. Years ago if i remember correct, it wasn't this hard. It was possible to setup the windbird pioupiou to send the data automatically to windy; or to setup windy to collect the data from openwindmap. Exchanging stationID was almost the only necessary thing. I do not remember at when the functionality got lost - I would guesstimate about a year not seeing my windbird on Windy. Today I investigated (That's also the reason why I'm replying today); and it seems that both services, OpenWindMap/pioupiou and Windy do only serve APIs to collect data - but there is no initiator anymore, this means - you have to create some kind of automatism on your own. In my point of view this has become far too technical for the general audience. Prerequisite: Your dataretrieval URL will be: https://api.pioupiou.fr/v1/live/1605 You have to create a station on windy ( https://stations.windy.com/ ) This will give you a station ID (8 characters) and a password (approx 40-60 characters) for the station. Now the technical part, and this can be done in may ways. Every way I know requires you to have a device or computer running non-stop 24/7. In my case I am using node-red on a raspberry pi to call every 5 minutes https://api.pioupiou.fr/v1/live/{myWindbirdNumber} convert the payload from JSON to javascript object move the msg.payload to msg.windbird set {windy station id} to msg.payload.id set {windy station password} to msg.payload.PASSWORD copy msg.windbird.data.measurements.date to msg.payload.time copy msg.windbird.data.measurements.wind_heading to msg.payload.winddir as integer copy msg.windbird.data.measurements.wind_speed_avg to msg.payload.wind divided by 3.6 copy msg.windbird.data.measurements.wind_speed_max to msg.payload.gust divided by 3.6 pass all this to a http request linked to https://stations.windy.com/api/v2/observation/update with the option to attach payload to query. If you have a Windows computer, you can take and adapt the following powershell code, and call it every 5 or 10 minutes with the task-scheduler: # Pioupiou / Windbird Station ID $windbirdStationId = 1605 # Windy StationId + Password $windyStationId = "abcdefgh" $windyPassword = "approx 40-60 symbols password" # Nothing to adapt below this line # URLs $srcUrl = "http://api.pioupiou.fr/v1/live/$windbirdStationId" $windyUrl = "https://stations.windy.com/api/v2/observation/update" # Retrieve data try { $data = Invoke-RestMethod -Uri $srcUrl -Method GET -ErrorAction Stop } catch { Write-Host "Error retrieving data: $_" exit 1 } # Extract data $winddir = [int]$data.data.measurements.wind_heading $wind = [string]::Format([System.Globalization.CultureInfo]::InvariantCulture, "{0}", $data.data.measurements.wind_speed_avg) $gust = [string]::Format([System.Globalization.CultureInfo]::InvariantCulture, "{0}", $data.data.measurements.wind_speed_max) $ts = $data.data.measurements.date # Form new Query-Parameters $params = @{ id = $windyStationId time = $ts winddir = $winddir wind = $wind / 3.6 gust = $gust / 3.6 PASSWORD= $windyPassword } # GET-Request to Windy try { $upload_result = Invoke-RestMethod -Uri $windyUrl -Method GET -Body $params -ErrorAction Stop Write-Host "Data succesfully sent to Windy." } catch { Write-Host "Error sending to Windy: $_" $params.GetEnumerator() | Format-Table -AutoSize }
  • New PWS station not appearing on Windy

    2
    0 Votes
    2 Posts
    84 Views
    marekdM
    @RothwellHeights I can see your station without any issue at https://www.windy.com/station/pws-O47KWNED. Where exactly is your station not shown on Windy?
  • Wind history

    3
    0 Votes
    3 Posts
    628 Views
    P
    @idefix37 Ah, thanks! I found this quite by chance a year or so ago (to give evidence to an insurance company of uncharacteristically high wind and gusts) but had been battling to find it again. Appreciated.
Windy Community  |  Powered by excellent NodeBB
Terms of Use     Privacy Policy     Windy.com