-
Notifications
You must be signed in to change notification settings - Fork 27
Open-Meteo Wind Resource #332
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
Merged
elenya-grant
merged 25 commits into
NatLabRockies:develop
from
elenya-grant:openmeteo_wind
Nov 10, 2025
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
5ef3968
changed C to degC in wind resource baseclass
elenya-grant d5f47a2
added openmeteo wind model and draft tests
elenya-grant 9ce55f5
finished tests for openmeteo
elenya-grant bdb140f
minor bugfixes to openmeteo wind
elenya-grant a894856
added open meteo resource files
elenya-grant 40d792c
added docs and to supported models
elenya-grant 0611b78
minor update to doc page
elenya-grant f65a21a
added dependency
elenya-grant 69602b4
minor updates and added subtests
elenya-grant ec0883f
added inline comments
elenya-grant e03dc7e
merged in develop
elenya-grant d777a56
updated changelog
elenya-grant 189a314
added requests-cache dependency
elenya-grant 59c0bb9
added retry-requests dependency
elenya-grant c16aeb0
updated temperature bug in wtk resource call
elenya-grant fd2774f
Merge branch 'develop' into openmeteo_wind
kbrunik f0ecda6
fix merge conflict
kbrunik 05acdb9
Merge branch 'develop' into openmeteo_wind
johnjasa 425c458
Merge branch 'develop' into openmeteo_wind
johnjasa 534fe4c
minor updates from reviewer feedback
elenya-grant 47ea619
Merge branch 'openmeteo_wind' of github.com:elenya-grant/GreenHEART i…
elenya-grant 2e42693
Merge branch 'develop' into openmeteo_wind
jaredthomas68 d8a4316
minor dosctring updates
elenya-grant 6f575ac
Merge branch 'openmeteo_wind' of github.com:elenya-grant/GreenHEART i…
elenya-grant 62ead1c
updated pytest skiptest decorator for mcm package
elenya-grant File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| (wind_resource:openmeteo_archive)= | ||
| # Open-Meteo Wind | ||
|
|
||
| This resource class downloads wind resource data from the [OpenMeteo Archive API](https://open-meteo.com/en/docs/historical-weather-api) | ||
|
|
||
| This dataset allows for resource data to be downloaded for: | ||
| - **resource years** from 1940 to year before the current calendar year. | ||
| - **locations** across the globe. | ||
| - **resource heights** from 10 and 100 meters. | ||
| - **time intervals** of 60 minutes. | ||
|
|
||
| ## Available Data | ||
|
|
||
| | Resource Data | Resource Heights (m) | | ||
| | :---------------- | :---------------: | | ||
| | `wind_speed` | 10, 100 | | ||
| | `wind_direction` | 10, 100 | | ||
| | `temperature` | 2 | | ||
| | `pressure` | 0 | | ||
| | `relative_humidity` | 2 | | ||
| | `precipitation_rate` | 0 | | ||
|
|
||
| | Additional Data | Included | | ||
| | :---------------- | :---------------: | | ||
| | `site_id` | X | | ||
| | `site_lat` | X | | ||
| | `site_lon` | X | | ||
| | `elevation` | -- | | ||
| | `site_tz` | *see note | | ||
| | `data_tz` | X | | ||
| | `filepath` | X | | ||
| | `year` | X | | ||
| | `month` | X | | ||
| | `day` | X | | ||
| | `hour` | X | | ||
| | `minute` | X | | ||
|
|
||
| ```{note} | ||
| `site_tz` (the site timezone) is not output explicitly from this model, but `data_tz` would equal the site timezone (specified in plant_config["plant"]["simulation"]["timezone"]) is set as a non-zero value. Otherwise, the resource data is pulled with timestamps given in UTC (this is the default behavior) | ||
| ``` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this mean that the data is in UTC?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes - I added a note in this doc page to explain.