Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ SPDX-License-Identifier: MIT

# Release Notes

<!--## Upcoming Version-->
## Upcoming Version

* Updated Global Energy Monitor / Transition Zero datasets to the latest versions (February 2026) for wind and solar power plants.

## [v0.8.0](https:://github.com/PyPSA/powerplantmatching/releases/tag/v0.8.0) (13th Januarary 2026)

Expand Down
4 changes: 1 addition & 3 deletions powerplantmatching/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2067,9 +2067,7 @@ def GSPT(raw=False, update=False, config=None):

config = get_config() if config is None else config
fn = get_raw_file("GSPT", update=update, config=config)
large = pd.read_excel(fn, sheet_name="20 MW+")
small = pd.read_excel(fn, sheet_name="1-20 MW")
df = pd.concat([large, small], ignore_index=True)
df = pd.read_excel(fn, sheet_name="Utility-Scale (1 MW+)")

if raw:
return df
Expand Down
8 changes: 4 additions & 4 deletions powerplantmatching/package_data/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,14 +195,14 @@ GWPT:
net_capacity: false
reliability_score: 6
status: ["operating", "retired", "construction"]
fn: Global-Wind-Power-Tracker-February-2025.xlsx
url: https://tubcloud.tu-berlin.de/s/L4AssxsisA6ENRb/download/Global-Wind-Power-Tracker-February-2025.xlsx
fn: Global-Wind-Power-Tracker-February-2026.xlsx
url: https://tubcloud.tu-berlin.de/s/mN7sbGDAQqd8yLD/download/Global-Wind-Power-Tracker-February-2026.xlsx
GSPT:
net_capacity: false
reliability_score: 6
status: ["operating", "retired", "construction"]
fn: Global-Solar-Power-Tracker-February-2025.xlsx
url: https://tubcloud.tu-berlin.de/s/iWZ7j3zsCGfyJ5f/download/Global-Solar-Power-Tracker-February-2025.xlsx
fn: Global-Solar-Power-Tracker-February-2026.xlsx
url: https://tubcloud.tu-berlin.de/s/Lx8KRcKBMPd2QrZ/download/Global-Solar-Power-Tracker-February-2026.xlsx
GBPT:
net_capacity: false
reliability_score: 6
Expand Down
Loading