-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
open-meteo.com as a complete weather api provider (incl. ET) #120
Comments
Creator of open-meteo here Let me know if you need additional weather variables, formats or other information. For US there is not yet a 2 km integrated, but it is on the roadmap for the next weeks Best, Jeff |
Thanks Jeff for jumping in There are three adjustments methods used to asses the watering scale based on weather. Zimmerman requires humidity, precipitation, temperature I guess that a new weather provider could be implemented but I have no JS and Node.js background to help more... |
A new weather provider that delivered exactly the same JSON string as the application in this github would be most welcome, although even 2km may be too large an area. There are some other criteria that I don't entirely understand. For example, the current OpenSprinkler wather app caches the previous days weather at midnight and delivers that for the next 24 hours, substituting current temp and rain in the JSON string. Caching is done by geolocation. You can see that in the code for the app. Solar radiation is a requirement for ETo calculation. |
Go thru the open-meteo.com api, it does provide ETo but I am not sure how accurate for location outside US. Anyone with more experienced with this, please share more insight on this. |
@garudaonekh sorry for the late reply. ET₀ Reference Evapotranspiration just not yet supported, until now ;-) Today I implemented FAO-56 Penman-Monteith ET₀. Input (temperature, humidity, wind and irradiation) is directly used from weather models. The calculation should be very close to the paper @mlatorre31 linked. The difference is, that weather models use backwards averaged radiation and the solar calculation in this paper was not considering it. Additionally I am using slightly more accurate clear sky radiation and use hourly data instead of daily data. Best, Jeff |
I made it. |
@opensprinklershop Thank you! I tried to alter a little bit your implementation as open-meteo provides directly hourly ET0 values (thanks @open-meteo !) without calculation needs. However I had to create a new getET0 method from weatherProvider in order to not alter other Weather Providers relying on getEToData to do the math. |
Can you share this? OpenMeteo ET0 is good. I don't know TypeScript |
open-meteo.com
Very interesting weather api for (among other use) agricultural data (evapotranspiration, solar radiation, etc). Therefore very useful for OpenSprinkler watering management.
Includes also a forecast which could make possible to manage future watering programs and also weather forecast representation.
Also seems to cover large part of the globe (at least EU and US with 2km resolution).
Features seems good and well documented. And free (or with attractive licensing I guess for commercial use).
The text was updated successfully, but these errors were encountered: