I am downloading emissions-data with the Workspace Codebook app (see code below). I was wondering how to obtain a variable that indicates the year to which the emission data refers to. To my knowledge, ".date" gives me the reporting date, but I haven't found a variable on the year/fiscal year for which the data was reported.
============================================
Emissions data
df = rd.get_data(
universe = "LDOS.N",
fields = [
'TR.ISIN',
'TR.RIC',
'TR.CO2EmissionTotal',
'TR.CO2EmissionTotal.date',
'TR.CO2DirectScope1',
'TR.CO2IndirectScope2',
'TR.CO2IndirectScope3',
'TR.Scope1andScope2EstTotalToEVIC' #Carbon intensity
],
parameters={'Period': 'FY0', 'SDate': '0', 'EDate': '-20', 'Frq': 'FY'}
)
df.to_excel('Emissions_data.xlsx', index=False)
===============================================