Skip to content

Commit

Permalink
refactoring: Renaming LUCF to LULUCF at BE
Browse files Browse the repository at this point in the history
  • Loading branch information
martintomas committed Feb 1, 2024
1 parent c41f59b commit 0b2980e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion public/visualizations/per-capita-charts-2019/index.html

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ <h1 id="titletext">The Top 10 GHG Emitters Contribute Over Two-Thirds of Global
<div id="tweet-text"></div>
<div id="tweet-button"></div>
</div>
<div id="credits">Graphic by <a target="_top" href="http://johannes-friedrich.com/">Johannes Friedrich</a>. Data source: <a target="_top" href="https://www.climatewatchdata.org/ghg-emissions?chartType=percentage&sectors=614" class="caitlink">Preliminary global greenhouse gas emissions 2018 excluding land-use change and forestry (LUCF) from Climate Watch</a>.The EU 27 is considered a country. <br />
<div id="credits">Graphic by <a target="_top" href="http://johannes-friedrich.com/">Johannes Friedrich</a>. Data source: <a target="_top" href="https://www.climatewatchdata.org/ghg-emissions?chartType=percentage&sectors=614" class="caitlink">Preliminary global greenhouse gas emissions 2018 excluding land-use change and forestry (LULUCF) from Climate Watch</a>.The EU 27 is considered a country. <br />
*Bunker fuels inlcude international aviation and shipping that are not included in country totals. Other territories include regions not covered by Climate Watch country data. See Climate Watch for country level land-use change and forestry and bunker fuel emissions.</div>
<div id="footnote">
<a target="_top" href="https://www.climatewatchdata.org/" class="caitlink logoa"><img src="files/logo.png" class="logo"></a></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ <h1 id="titletext">Die Top 10 Ländern verursachen zwei Dritteln der Treibhausga
<div id="tweet-text"></div>
<div id="tweet-button"></div>
</div>
<div id="credits">Graphic by <a target="_top" href="http://johannes-friedrich.com/">Johannes Friedrich</a>. Data source: <a target="_top" href="https://www.climatewatchdata.org/ghg-emissions?chartType=percentage&sectors=614" class="caitlink">Preliminary global greenhouse gas emissions 2018 excluding land-use change and forestry (LUCF) from Climate Watch</a>.The EU 27 is considered a country. <br />
<div id="credits">Graphic by <a target="_top" href="http://johannes-friedrich.com/">Johannes Friedrich</a>. Data source: <a target="_top" href="https://www.climatewatchdata.org/ghg-emissions?chartType=percentage&sectors=614" class="caitlink">Preliminary global greenhouse gas emissions 2018 excluding land-use change and forestry (LULUCF) from Climate Watch</a>.The EU 27 is considered a country. <br />
*"Globale Bunkerkraftstoffe" inlcude international aviation and shipping that are not included in country totals. "Andere Territorien" include regions not covered by Climate Watch country data. See Climate Watch for country level land-use change and forestry and bunker fuel emissions.</div>
<div id="footnote">
<a target="_top" href="https://www.climatewatchdata.org/" class="caitlink logoa"><img src="files/logo.png" class="logo"></a></div>
Expand Down
8 changes: 4 additions & 4 deletions spec/services/import_historical_emissions_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
END
ImportHistoricalEmissions::META_SECTORS_FILEPATH => <<~END,
Source,AnnexType,Sector,SubsectorOf
Climate Watch,,Total excluding LUCF,
PIK,,Total including LUCF,
Climate Watch,,Total excluding LULUCF,
PIK,,Total including LULUCF,
UNFCCC_AI,AI,Total GHG emissions without LULUCF,
END
ImportHistoricalEmissions::DATA_CW_FILEPATH => <<~END,
Country,Source,Sector,Gas,GWP,1990,1991,1992
ABW,Climate Watch,Total excluding LUCF,All GHG,AR2,15.21284765,15.28643902,14.01053087,14.02811754
ABW,Climate Watch,Total excluding LULUCF,All GHG,AR2,15.21284765,15.28643902,14.01053087,14.02811754
END
ImportHistoricalEmissions::DATA_PIK_FILEPATH => <<~END,
Country,Source,Sector,Gas,GWP,1850,1851,1852
ABW,PIK,Total including LUCF,CH4,AR2,0.00000469,0.00000475,0.00000483
ABW,PIK,Total including LULUCF,CH4,AR2,0.00000469,0.00000475,0.00000483
END
ImportHistoricalEmissions::DATA_UNFCCC_FILEPATH => <<~END,
Country,Source,Sector,Gas,GWP,1990,1991,1992
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"title": "The Name Schema ",
"default": "",
"examples": [
"Total excluding LUCF"
"Total excluding LULUCF"
]
},
"parent_id": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
RSpec.shared_context 'historical emissions sectors' do
let(:sector_total) {
FactoryBot.create(
:historical_emissions_sector, name: 'Total including LUCF'
:historical_emissions_sector, name: 'Total including LULUCF'
)
}
let(:sector_energy) {
Expand Down

0 comments on commit 0b2980e

Please sign in to comment.