Skip to content

Commit

Permalink
Merge branch 'summaries-updates' into ASEAN-ClimateFinance
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbrinkerink committed Dec 31, 2024
2 parents 5b0e020 + 87af69a commit 9b9ecd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workflow/scripts/osemosys_global/summary/headline.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ def get_gen_shares(
fsl_total = _filter_techs(df, FOSSIL).VALUE.sum()
cln_total = _filter_techs(df, CLEAN).VALUE.sum()

rnw_share = round((rnw_total / gen_total) * 100, 0)
fsl_share = round((fsl_total / gen_total) * 100, 0)
cln_share = round((cln_total / gen_total) * 100, 0)
rnw_share = round((rnw_total / gen_total) * 100, 2)
fsl_share = round((fsl_total / gen_total) * 100, 2)
cln_share = round((cln_total / gen_total) * 100, 2)

data = [
["Fossil energy share", "%", fsl_share],
Expand Down

0 comments on commit 9b9ecd2

Please sign in to comment.