Pirate Weather
Quick Links
- To register for the API
- Get a weather forecast in the Dark Sky style
- Home Assistant Integration
- Processing code repo
- Changelog
- Status page
Publications and Press
Who is using PirateWeather?
- MerrySky - Get a Forecast DarkSky Style
- PW-forecast and https://saratoga-weather.org/scripts-PWforecast.php
- Breezy Weather
- Weathergraph - Graphical hour-by-hour forecast & widget for iOS, Apple Watch and mac
Do you use PirateWeather? Open a pull request to add it to the list.
Introduction
Weather forecasts are primarily found using models run by government agencies, but the outputs aren't easy to use or in formats built for the web. To try to address this, I've put together a service that reads weather forecasts and serves it following the Dark Sky API style.
Before going any farther, I wanted to add a link to sign up and support this project! Running this on AWS means that it scales beautifully and is much more reliable than if I was trying to host this, but also costs real money. I'd love to keep this project going long-term, but I'm still paying back my student loans, which limits how much I can spend on this! Anything helps, and a $2 monthly donation lets me raise your API limit from 10,000 calls/ month to 25,000 calls per month.
Alternatively, I also have a GitHub Sponsorship page set up on my profile! This gives the option to make a one-time donation to contribute this project. This project (especially the free tier) wouldn't be possible without the ongoing support from the project sponsors, so they're the heros here!
Recent Updates- Summer 2024
Up to version 2.1! As always, details are available in the changelog.
- Moved things from disk based storage to a Zarr arrays backed by LMDB database which fixes the issue of the API returning weird results as reported in:
- issue #229
- issue #255
- issue #249
- issue #266
- issue #283
- issue #284
- Fixed an issue where a
none
icon and summary would be returned due to an issue with the interpolation for the minutely data, essentially when the probability/ amount of precipitation increases significantly from one 3-hourly output timestep to the next as reported in issue #281 - Improved the times for daily high/ low calculations in issue #268
- Prevented the API from returning incorrect data for requests more than 36 hours in the past
- Switched to a calculation for apparent temperature and added a new "FeelsLike" parameter for raw model outputs
- Finally fixed the bug preventing results from being returned on the first day of the month
Background
This project started from two points: as part of my PhD, I had to become very familiar with working with NOAA forecast results (https://orcid.org/0000-0003-4725-3251). Separately, an old tablet set up as a "Magic Mirror,” and was using a weather module that relied on the Dark Sky API, as well as my Home Assistant setup. So when I heard that it was shutting down, I thought, "I wonder if I could do this.” Plus, I love learning new things (http://alexanderrey.ca/), and I had been looking for a project to learn Python on, so this seemed like the perfect opportunity! Spoiler alert, but it was way more difficult than I thought, but learned a lot throughout the process, and I think the end result turned out really well!
Why?
This API is designed to be a drop in replacement/ alternative to the Dark Sky API, and as a tool for assessing GFS and HRRR forecasts via a JSON API. This solves two goals:
- It will also allow legacy applications to continue running after the Dark Sky shutdown, since as Home Assistant Integrations, Magic Mirror cards, and a whole host of other applications that have been developed over the years.
- For anyone that is interested in knowing exactly how your weather forecasts are generated, this is the "show me the numbers" approach, since the data returned is directly from NOAA models, and every processing step I do is documented. There are lots of existing services that provide custom forecasts using their own unique technologies, which can definitely improve accuracy, but I'm an engineer, so I wanted to be able to know what's going into the forecasts I'm using. If you're the sort of person who wants a dense 34-page PowerPoint about why it rained when the forecast said it wouldn't, then this might be for you.
- I wanted to provide a more community focused source of weather data. Weather is local, but I'm only in one spot, so I rely on people filing issues to help improve the forecast!