Windy Community
    • Unread
    • Categories
    • Groups
    • Go to windy.com
    • Register
    • Login

    Report your Weather Station Data to Windy

    Scheduled Pinned Locked Moved Windy Stations
    406 Posts 149 Posters 873.6k Views 35 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • moonfarmsM Offline
      moonfarms
      last edited by

      This post is deleted!
      1 Reply Last reply Reply Quote 0
      • KorinaK Offline
        Korina @tomacat
        last edited by

        @tomacat Hi, if you mean sharing visibility data from your station, it is not possible on our end.

        Korina

        1 Reply Last reply Reply Quote 1
        • gfay63G Offline
          gfay63 | Premium
          last edited by gfay63

          Hi. Two questions.

          First, I have been pushing up the weather to Windy every 7 minutes since yesterday afternoon...maybe 15 hours straight? But still no data showing here:

          https://www.windy.com/station/pws-f065e403?38.972,-94.647,8

          I am using this below to send the data per the GET param example above, and I know for a fact it is working perfectly as I am getting responses (e.g., when I sent a few too quickly under 5min, it told me that). Here it is:

          https://stations.windy.com/pws/update/--MyAPIKey--?winddir=46&windspeedmph=1.0&windgustmph=6.0&tempf=41.3&rainin=0.00&baromin=29.01&dewptf=29.7&humidity=63

          Second, FYI that in your Get example in the post above, you include "&dewptf=68.2&humidity=90", however these two parameters are not listed in the parameter list in the same post. Is there a more up-to-date API documentation? Are those correct? Are there others?

          Thanks! Love, LOVE Windy!

          Greg

          gfay63G 1 Reply Last reply Reply Quote 0
          • gfay63G Offline
            gfay63 @gfay63 | Premium
            last edited by

            I thought I'd add that the site DOES show it under the stations. See the screenshot below. AND it shows it is updating. In this example, 4 minutes ago. But no data is shown.

            444bb9c8-2938-4697-b15c-ccfacb803d2f-image.png

            0725c227-5097-4378-9c3c-1500009fe157-image.png

            gfay63G 1 Reply Last reply Reply Quote 0
            • gfay63G Offline
              gfay63 @gfay63 | Premium
              last edited by

              @TomSlavkovsky Hi Tom. Just pinging you on this post as I think I may have not replied to the right one (my first time using this forum) and wanted to make sure it is seen. 😬 Thanks in advance!

              gfay63G 1 Reply Last reply Reply Quote 0
              • gfay63G Offline
                gfay63 @gfay63 | Premium
                last edited by

                I also tried adding &stationId=0 and still no luck. Any ideas anyone?

                https://stations.windy.com/pws/update/MYAPIKEY?winddir=105&windspeedmph=8.0&windgustmph=13.0&tempf=47.2&rainin=0.00&baromin=28.90&dewptf=33.6&humidity=59&stationId=0
                SUCCESS

                gfay63G 1 Reply Last reply Reply Quote 0
                • gfay63G Offline
                  gfay63 @gfay63 | Premium
                  last edited by

                  Lastly, here is what I get when I retrieve my data. Per below, observation data is null...

                  {"header":{"name":"Round Hill, Overland Park, KS","content":{"url":"","text":"FayIronmanWS"},"agl_temp":10,"agl_wind":10,"elev_m":322.48,"lat":38.970556,"lon":-94.649167,"stationType":"Davis Vantage Pro 2","shareOption":"Open","id":"f065e403","stationId":0,"type":"pws","updated":"2020-04-16T08:00:53.479Z","observation":{"avgFreqMin":7.231182795698925,"records":1,"avgDelayMin":5,"sumRows":186,"default":false,"latestObs":"2020-04-15T21:41:34.902Z"},"observationUpdated":"2020-04-15T21:41:34.902Z"},"data":null}

                  KorinaK 1 Reply Last reply Reply Quote 0
                  • gfay63G Offline
                    gfay63 | Premium
                    last edited by

                    @Korina Hi, any thoughts on the above issue? Seems I'm doing everything right?! Thanks in advance!

                    1 Reply Last reply Reply Quote 0
                    • KorinaK Offline
                      Korina @gfay63
                      last edited by

                      @gfay63 Hi, what kind of software do you use for sending data to Windy? Example - https://community.windy.com/topic/10994/wifilogger-easy-way-how-to-send-data-from-davis-stations-to-windy/2?_=1587119791314

                      Korina

                      gfay63G 1 Reply Last reply Reply Quote 0
                      • gfay63G Offline
                        gfay63 @Korina | Premium
                        last edited by

                        @Korina Hi! Thanks for the reply. I used Weathersnoop on a Mac Pro, and wrote an Applescript to push up the data every 7 minutes:

                        tell application "WeatherSnoop 5"
                        tell agent of first document
                        set MyAPIKey to "MyAPIKey"
                        set WeatherParams to ¬
                        "winddir=" & value of weather property "Wind Direction" & ¬
                        "&windspeedmph=" & value of weather property "Wind Speed" & ¬
                        "&windgustmph=" & value of weather property "10 Minute Wind Gust" & ¬
                        "&tempf=" & value of weather property "Outdoor Temperature" & ¬
                        "&rainin=" & value of weather property "Day Rain" & ¬
                        "&baromin=" & value of weather property "Barometric Pressure (Absolute)" & ¬
                        "&dewptf=" & value of weather property "Outdoor Dew Point" & ¬
                        "&humidity=" & value of weather property "Outdoor Humidity"
                        set WindyURL to "curl https://stations.windy.com/pws/update/" & MyAPIKey & "?" & WeatherParams & "&stationId=0"
                        set WindyURLsafe to "https://stations.windy.com/pws/update/" & "MYAPIKEY" & "?" & WeatherParams & "&stationId=0"
                        set myResult to do shell script WindyURL
                        end tell
                        end tell
                        set myTime to do shell script "date "
                        set myString to "----------Timestamp: " & myTime & "-----------" & linefeed & WindyURLsafe & linefeed & myResult
                        copy myString to stdout

                        It's been running every 7 minutes for quite a while now. It sure seems like it's working! Here is the output from a few minutes ago:
                        ----------Timestamp: Fri Apr 17 08:18:35 CDT 2020-----------
                        https://stations.windy.com/pws/update/MYAPIKEY?winddir=333&windspeedmph=3.0&windgustmph=9.0&tempf=34.1&rainin=0.42&baromin=28.97&dewptf=33.1&humidity=96&stationId=0
                        SUCCESS

                        ...and it sure looks like it's getting there!?
                        92cc4606-71d2-4295-8739-63acc9f96202-image.png

                        Thanks for your help. :)

                        Greg

                        1 Reply Last reply Reply Quote 0
                        • gfay63G Offline
                          gfay63 | Premium
                          last edited by

                          @Korina Hi. Any thoughts on this? It seems to be posting perfectly. I am posting every 7 minutes now for a week. I get "SUCCESS" responses and other messages (e.g., if trying to do less than the 5 minutes). The site shows the updates are happening per the image above. But no data is being shown...I get the error in the screenshot in the post above.

                          I'd think if this can be resolved, it could be a great, easy solution that I could write up for all Weathersnoop users to be able to push up their weather station data! I am familiar with the wifi logger but it would conflict with Weathersnoop which is very powerful and customizable.

                          I'm a premium member. Can you or someone help me out, please? Thanks! I love Windy! :)

                          Greg

                          1 Reply Last reply Reply Quote 0
                          • O Offline
                            Orhan Bulut
                            last edited by Orhan Bulut

                            This post is deleted!
                            1 Reply Last reply Reply Quote 0
                            • B Offline
                              Belatz @Guest
                              last edited by

                              @Dani-Pérez ya me explicarías como lo has conseguido? Por que me da todo ok pero.... nada de nada

                              Kaguenzotzzz👏🏻👏🏻👏🏻

                              KorinaK 1 Reply Last reply Reply Quote 0
                              • KorinaK Offline
                                Korina
                                last edited by

                                @Orhan-Bulut Hi, I deleted your post, you should not display the API key publicly. What kind of station do you use and what is the ID?

                                Korina

                                1 Reply Last reply Reply Quote 0
                                • KorinaK Offline
                                  Korina @Belatz
                                  last edited by

                                  @Belatz Hi, what problem do you have with the station?

                                  Korina

                                  B 1 Reply Last reply Reply Quote 0
                                  • B Offline
                                    Belatz @Korina
                                    last edited by

                                    @Korina aparece mi estación en el mapa pero no muestra los datos.

                                    Kaguenzotzzz👏🏻👏🏻👏🏻

                                    KorinaK 1 Reply Last reply Reply Quote 0
                                    • KorinaK Offline
                                      Korina @Belatz
                                      last edited by

                                      @Belatz Then you need to double check if you have API key inserted correctly.

                                      Korina

                                      A 1 Reply Last reply Reply Quote 0
                                      • B Offline
                                        BrianH78x | Premium
                                        last edited by

                                        I have been trying to get station 2f065b240 up and running with windy for a few days now. I’m running the latest WeeWx with the recommend plugin. The keys seem to be valid along with the data seems to be posing successfully. I have also tried to delete and add new stations with no difference. I did a GET in postman using the api key and station and appears to be getting some sort of data, but the site still has issues loading my station.

                                        KorinaK 1 Reply Last reply Reply Quote 1
                                        • KorinaK Offline
                                          Korina @BrianH78x
                                          last edited by

                                          @BrianH78x said in Report your Weather Station Data to Windy:

                                          2f065b240

                                          Hello, it seems you are finally sending data to us - https://www.windy.com/station/pws-2f065b240?42.031,-71.017,8

                                          Korina

                                          B 1 Reply Last reply Reply Quote 3
                                          • B Offline
                                            BrianH78x @Korina | Premium
                                            last edited by

                                            @Korina Awesome it works. Thanks!

                                            1 Reply Last reply Reply Quote 1
                                            • First post
                                              Last post
                                            Windy Community  |  Powered by excellent NodeBB
                                            Terms of Use     Privacy Policy     Windy.com