Skip to content

🌦️ Google Apps Script code to send Wunderground/MyAcurite/Weatherlink/Tempest PWS data to Wunderground, Windy, PWSWeather, Weathercloud, OpenWeatherMap, and/or WindGuru

Notifications You must be signed in to change notification settings

deadrubberboy/WundergroundStationForwarder

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 

Repository files navigation

Station Forwarder

This code is built to be hosted on the free Google Apps Script platform. It takes in weather station data from:

and periodically sends it on to

Setup

  1. Create a new Google Apps Script project and give it a name
  2. Overwrite the default Code.gs file with code.gs from the latest release in this repository
  3. Configure the script for you:
  • Choose your datasource:

    Wunderground

    Uses the IBM Wunderground API.

    Note: Unfortunately, it looks like the new Wunderground API keys have started expiring 6 months after being generated, so you may need to replace the key if that happens.

    • Set the datasource to ibm on line 10
    • Set your ibmAPIKey on line 12
    • Set your ibmStationId on line 13
    MyAcurite

    Experimental. Uses the undocumented MyAcurite private API.

    • Set the datasource to acurite on Line 10
    • Set your acuriteUsername on Line 15
    • Set your acuritePassword on line 16
    • Set your acuriteHubName on line 17
    • Set your acuriteStationName on line 18
    Davis Weatherlink

    Uses the Davis Weatherlink API v2.

    • Set the datasource to davis on line 10
    • Set your davisApiKey on line 20
    • Set your davisApiSecret on line 21
    • Set your davisStationName on line 22
    Weatherflow Tempest

    Uses a Weatherflow Tempest Personal Use Token.

    • Set the datasource to weatherflow on Line 10
    • Set your weatherflowPUT on line 24
    • Set your weatherflowSationId on Line 25
  • and choose one or more your forwarding destinations:

    Wunderground

    To send to Wunderground:

    • Set updateWunderground to true on Line 29
    • Set your wundergroundAPIKey on Line 30
    • Set your wundergroundStationId on line 31
    Windy

    To send to Windy.com:

    • Set updateWindy to true on Line 33
    • Set your windyAPIKey on Line 34
    • Set your windyStationId on line 35. It's likely 0, 1, 2, etc.
    PWSWeather

    To send to PWSWeather:

    • Set updatePWSWeather to true on Line 37
    • Set your pwsWeatherAPIKey from your station's admin page on line 38
    • Set your pwsWeatherStationID on Line 39
    WeatherCloud

    To send to WeatherCloud:

    Retrieve your station's ID and API Key by going to your Devices, then clicking Settings → 🔌 Link on your station.

    • Set updateWeatherCloud to true on Line 41
    • Set your weathercloudStationId on line 42
    • Set your weathercloudAPIKey on Line 43
    • Set whether or not you have a WeatherCloud Pro or Premium account with hasWeatherCloudPro as true or false on line 44
    OpenWeatherMap

    Creation of a new OpenWeatherMap station must be done by API, not on the OpenWeatherMap website. More information is available in the OpenWeatherMap Station API documentation. The basic concept for what must be done is available in the createNewOWMStation_() function. Remove the _ character from the name of that function to make it selectable from the ▷ Run button in the toolbar. If you do so, make sure you note your new station's ID and other details in the log (available in the Executions tab in the sidebar after running!), then:

    WindGuru

    Send to WindGuru:

    Start by registering a new "Other / Upload API" station, then:

    • Set updateWindGuru to true on Line 50
    • Set windGuruStationUID to your chosen station UID on Line 51
    • Set your windGuruStationPassword to your chosen station API password (note, not your account's password) on line 52
    NOAA Citizen Weather Observer Program (CWOP)

    Send to CWOP. Start by registering for a new station, then when you receive your email:

    • Set updateCWOP to true on Line 54
    • Set cwopStationIDOrHamCallsign to your assigned CWOP station ID that you received via email on Line 55
    • If you are using your ham radio callsign as your station ID and you have received a validation code from NOAA CWOP support, set cwopValidationCode to your validation code on Line 56
  1. Run the "Schedule" function with the ▷ Run button in the toolbar. You're done! You can see it periodically running in the ☰▶ Executions tab on the left sidebar.

If you ever make changes to the API keys or enabled services, just run the Schedule function again.

How to Update

  1. Overwrite the code from code.gs from the latest release in this repository to your Code.gs file and 💾 Save.
  2. Make sure your API Keys and settings on lines 10 through 56 are correct.
  3. Run the "Schedule" function again with the ▷ Run button in the toolbar.

License

Feel free to take a look at the source and adapt as you please. This source is licensed as follows:

Creative Commons License

Station Forwarder is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

Buy Me A Coffee

About

🌦️ Google Apps Script code to send Wunderground/MyAcurite/Weatherlink/Tempest PWS data to Wunderground, Windy, PWSWeather, Weathercloud, OpenWeatherMap, and/or WindGuru

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%