Skip to content
Open
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
6 changes: 4 additions & 2 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

..
SPDX-FileCopyrightText: Contributors to technology-data <https://github.com/pypsa/technology-data>

iiasdfI
SPDX-License-Identifier: GPL-3.0-only

##########################################
Expand All @@ -19,7 +19,9 @@ Upcoming Release
* Breaking changes:
- Renamed "electricity grid connection" to "distribution grid reinforcement" and updated description for more clarity on the technology and consistency with the source.

* Add missing discount rate for OCGT in US-specific data. (https://github.com/PyPSA/technology-data/pull/269)
ii* Add missing discount rate for OCGT in US-specific data. (https://github.com/PyPSA/technology-data/pull/269)

* The "currency_year" column will now reflect the inflation adjusted currency year instead of the original currency year of the input data. (https://github.com/PyPSA/technology-data/pull/275)

`v0.14.0 <https://github.com/PyPSA/technology-data/releases/tag/v0.14.0>`__ (13th February 2026)
================================================================================================
Expand Down
642 changes: 321 additions & 321 deletions outputs/US/costs_2020.csv

Large diffs are not rendered by default.

642 changes: 321 additions & 321 deletions outputs/US/costs_2025.csv

Large diffs are not rendered by default.

642 changes: 321 additions & 321 deletions outputs/US/costs_2030.csv

Large diffs are not rendered by default.

642 changes: 321 additions & 321 deletions outputs/US/costs_2035.csv

Large diffs are not rendered by default.

642 changes: 321 additions & 321 deletions outputs/US/costs_2040.csv

Large diffs are not rendered by default.

642 changes: 321 additions & 321 deletions outputs/US/costs_2045.csv

Large diffs are not rendered by default.

642 changes: 321 additions & 321 deletions outputs/US/costs_2050.csv

Large diffs are not rendered by default.

704 changes: 352 additions & 352 deletions outputs/costs_2020.csv

Large diffs are not rendered by default.

704 changes: 352 additions & 352 deletions outputs/costs_2025.csv

Large diffs are not rendered by default.

704 changes: 352 additions & 352 deletions outputs/costs_2030.csv

Large diffs are not rendered by default.

704 changes: 352 additions & 352 deletions outputs/costs_2035.csv

Large diffs are not rendered by default.

704 changes: 352 additions & 352 deletions outputs/costs_2040.csv

Large diffs are not rendered by default.

704 changes: 352 additions & 352 deletions outputs/costs_2045.csv

Large diffs are not rendered by default.

704 changes: 352 additions & 352 deletions outputs/costs_2050.csv

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions scripts/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,9 @@ def get_factor(inflation_rate_df, ref_year, eur_year_val):
inflation.loc[filter_i], axis=0
)

# Modify the currency year to the reference year for the inflation adjustment
costs.loc[filter_i, "currency_year"] = eur_year

return costs


Expand Down