Agricultural non-CO2 emissions (Figure 2.25)¶
Notebook sr15_2.4.4_afolu_emissions¶
This notebook is based on the Release 1.1 of the IAMC 1.5C Scenario Explorer and Data and refers to the published version of the IPCC Special Report on Global Warming of 1.5C (SR15).
The notebook is run with pyam release 0.5.0.
The source code of this notebook is available on GitHub (release 2.0.2).
IPCC SR15 scenario assessment¶
Analysis of non-CO2 emissions from agriculture, forestry and land use¶
This notebook plots figures for emissions of CH4 and N2O from the land use sector for Figure 2.25 of the IPCC's "Special Report on Global Warming of 1.5°C".
The scenario data used in this analysis can be accessed and downloaded at https://data.ene.iiasa.ac.at/iamc-1.5c-explorer.
Load pyam
package and other dependencies¶
import pandas as pd
import numpy as np
import io
import itertools
import yaml
import math
import matplotlib.pyplot as plt
plt.style.use('style_sr15.mplstyle')
%matplotlib inline
import pyam
from utils import boxplot_by_cat
Import scenario data, categorization and specifications files¶
The metadata file with scenario categorisation and quantitative indicators can be downloaded at https://data.ene.iiasa.ac.at/iamc-1.5c-explorer.
Alternatively, it can be re-created using the notebook sr15_2.0_categories_indicators
.
The last cell of this section loads and assigns a number of auxiliary lists as defined in the categorization notebook.
sr1p5 = pyam.IamDataFrame(data='../data/iamc15_scenario_data_world_r2.0.xlsx')
sr1p5.load_meta('sr15_metadata_indicators.xlsx')
with open("sr15_specs.yaml", 'r') as stream:
specs = yaml.load(stream, Loader=yaml.FullLoader)
rc = pyam.run_control()
for item in specs.pop('run_control').items():
rc.update({item[0]: item[1]})
cats = specs.pop('cats')
all_cats = specs.pop('all_cats')
subcats = specs.pop('subcats')
all_subcats = specs.pop('all_subcats')
marker= specs.pop('marker')
Downselect scenario ensemble to categories of interest for this assessment¶
cats.remove('Above 2C')
years = [2010, 2030, 2050, 2100]
sr1p5.meta.rename(columns={'Kyoto-GHG|2010 (SAR)': 'kyoto_ghg_2010'}, inplace=True)
df = sr1p5.filter(kyoto_ghg_2010='in range', category=cats, year=years)
Set specifications for filter and plotting¶
plot_ylabel = 'Global {} emissions from AFOLU ({})'
save_name = 'output/fig2.25{}.{}'
data_header = 'Emissions from AFOLU'
filter_args = dict(df=sr1p5, category=cats, marker=None, join_meta=True)
def plotting_args(name, label, unit, panel_label=None, filetype='png'):
return {'categories': cats, 'column': 'category', 'years': years,
'add_marker': marker,
'ylabel': plot_ylabel.format(label, unit),
'save': save_name.format(name if panel_label is None else '{}_{}'.format(panel_label, name), filetype)}
data = []
Methane emissions from agriculture¶
ch4_afolu = df.filter(variable='Emissions|CH4|AFOLU').timeseries()
name = 'ch4_afolu'
species = 'CH4'
unit = 'MtCH4/yr'
_data = pyam.filter_by_meta(ch4_afolu, **filter_args)
boxplot_by_cat(_data, **plotting_args(name, species, unit, 'a'))
_data['species'] = species
data.append(_data)
Nitrous oxide emissions from agriculture¶
n2o_afolu = (
df.filter(variable='Emissions|N2O|AFOLU')
.convert_unit('kt N2O/yr', 'Mt N2O/yr', factor=1/1000)
.timeseries()
)
name = 'no2_afolu'
species = 'N2O'
unit = 'MtN2O'
_data = pyam.filter_by_meta(n2o_afolu, **filter_args)
fig = boxplot_by_cat(_data, **plotting_args(name, species, unit, 'b'),
legend=False)
_data['species'] = species
data.append(_data)
Export timeseries data to xlsx
¶
data = pd.concat(data).set_index(['species', 'category', 'marker'], append=True)
data.head()
data.reset_index().to_excel('output/fig2.25_data_table.xlsx')