CRF2022_specification.py 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529
  1. """ CRF2022 specification.
  2. Currently not all tables are included. Extend if you need all country
  3. specific items in categories 2, 3.H-G, 4
  4. tables included:
  5. * Energy
  6. 'Table1s1', Table1s2',
  7. 'Table1.A(a)s1', 'Table1.A(a)s2', 'Table1.A(a)s3', 'Table1.A(a)s4',
  8. 'Table1.B.1', 'Table1.B.2', 'Table1.C', 'Table1.D',
  9. * Industrial processes
  10. 'Table2(I)s1', 'Table2(I)s2',
  11. 'Table2(II)',
  12. * Agriculture
  13. 'Table3s1', 'Table3s2',
  14. 'Table3.C', 'Table3.D', 'Table3.E',
  15. * LULUCF
  16. 'Table4',
  17. * Waste
  18. 'Table5', 'Table5.A', 'Table5.B', 'Table5.C', 'Table5.D'
  19. missing tables are:
  20. * Energy
  21. 'Table1.D'
  22. * Industrial processes
  23. 'Table2(I).A-Hs1', 'Table2(I).A-Hs2',
  24. 'Table2(II)B-Hs1', 'Table2(II)B-Hs2',
  25. * Agriculture
  26. 'Table3.As1', 'Table3.As2' (no additional emissions data)
  27. 'Table3.F', 'Table3.G-I',
  28. * LULUCF
  29. All tables except Table4
  30. * Waste
  31. All tables read
  32. TODO:
  33. * Add missing tables
  34. * Add activity data
  35. """
  36. import numpy as np
  37. from .util import unit_info
  38. CRF2022 = {
  39. "Table1s1": {
  40. "status": "tested",
  41. "table": {
  42. "firstrow": 5,
  43. "lastrow": 26,
  44. "header": ['entity', 'unit'],
  45. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  46. "categories": ["category"],
  47. "cols_to_ignore": [],
  48. "stop_cats": ["", np.nan],
  49. "unit_info": unit_info["default"],
  50. },
  51. "sector_mapping": [
  52. ['Total Energy', ['1']],
  53. ['A. Fuel combustion activities (sectoral approach)', ['1.A']],
  54. ['1. Energy industries', ['1.A.1']],
  55. ['a. Public electricity and heat production', ['1.A.1.a']],
  56. ['b. Petroleum refining', ['1.A.1.b']],
  57. ['c. Manufacture of solid fuels and other energy industries', ['1.A.1.c']],
  58. ['2. Manufacturing industries and construction', ['1.A.2']],
  59. ['a. Iron and steel', ['1.A.2.a']],
  60. ['b. Non-ferrous metals', ['1.A.2.b']],
  61. ['c. Chemicals', ['1.A.2.c']],
  62. ['d. Pulp, paper and print', ['1.A.2.d']],
  63. ['e. Food processing, beverages and tobacco', ['1.A.2.e']],
  64. ['f. Non-metallic minerals', ['1.A.2.f']],
  65. ['g. Other (please specify)', ['1.A.2.g']],
  66. ['3. Transport', ['1.A.3']],
  67. ['a. Domestic aviation', ['1.A.3.a']],
  68. ['b. Road transportation', ['1.A.3.b']],
  69. ['c. Railways', ['1.A.3.c']],
  70. ['d. Domestic navigation', ['1.A.3.d']],
  71. ['e. Other transportation', ['1.A.3.e']],
  72. ],
  73. "entity_mapping": {
  74. "NOX": "NOx",
  75. },
  76. "coords_defaults": {
  77. "class": "Total",
  78. },
  79. }, # tested
  80. "Table1s2": {
  81. "status": "tested",
  82. "table": {
  83. "firstrow": 5,
  84. "lastrow": 36,
  85. "header": ['entity', 'unit'],
  86. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  87. "categories": ["category"],
  88. "cols_to_ignore": [],
  89. "stop_cats": ["", np.nan],
  90. "unit_info": unit_info["default"],
  91. },
  92. "sector_mapping": [
  93. ['4. Other sectors', ['1.A.4']],
  94. ['a. Commercial/institutional', ['1.A.4.a']],
  95. ['b. Residential', ['1.A.4.b']],
  96. ['c. Agriculture/forestry/fishing', ['1.A.4.c']],
  97. ['5. Other (as specified in table 1.A(a) sheet 4)', ['1.A.5']],
  98. ['a. Stationary', ['1.A.5.a']],
  99. ['b. Mobile', ['1.A.5.b']],
  100. ['B. Fugitive emissions from fuels', ['1.B']],
  101. ['1. Solid fuels', ['1.B.1']],
  102. ['a. Coal mining and handling', ['1.B.1.a']],
  103. ['b. Solid fuel transformation', ['1.B.1.b']],
  104. ['c. Other (as specified in table 1.B.1)', ['1.B.1.c']],
  105. ['2. Oil and natural gas and other emissions from energy production', ['1.B.2']],
  106. ['a. Oil', ['1.B.2.a']],
  107. ['b. Natural gas', ['1.B.2.b']],
  108. ['c. Venting and flaring', ['1.B.2.c']],
  109. ['d. Other (as specified in table 1.B.2)', ['1.B.2.d']],
  110. ['C. CO2 Transport and storage', ['1.C']],
  111. ['1. Transport of CO2', ['1.C.1']],
  112. ['2. Injection and storage', ['1.C.2']],
  113. ['3. Other', ['1.C.3']],
  114. ['Memo items: (1)', ['\IGNORE']],
  115. ['International bunkers', ['M.Memo.Int']],
  116. ['Aviation', ['M.Memo.Int.Avi']],
  117. ['Navigation', ['M.Memo.Int.Mar']],
  118. ['Multilateral operations', ['M.Memo.Mult']],
  119. ['CO2 emissions from biomass', ['M.Memo.Bio']],
  120. ['CO2 captured', ['M.Memo.CO2Cap']],
  121. ['For domestic storage', ['M.Memo.CO2Cap.Dom']],
  122. ['For storage in other countries', ['M.Memo.CO2Cap.Exp']],
  123. ],
  124. "entity_mapping": {
  125. "NOX": "NOx",
  126. },
  127. "coords_defaults": {
  128. "class": "Total",
  129. },
  130. }, # tested
  131. "Table1.A(a)s1": {
  132. "status": "tested",
  133. "table": {
  134. "firstrow": 6,
  135. "lastrow": 104, # template, countries report less
  136. # check the resulting data as the templates have nan rows
  137. # which would stop the reading process (actual reported
  138. # data does not seem to have the nan rows)
  139. "header": ['group', 'entity', 'entity', 'unit'],
  140. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  141. "categories": ["category", "class"],
  142. "cols_to_ignore": [
  143. 'AGGREGATE ACTIVITY DATA Consumption',
  144. 'AGGREGATE ACTIVITY DATA Consumption',
  145. 'IMPLIED EMISSION FACTORS CO2(1)',
  146. 'IMPLIED EMISSION FACTORS CH4',
  147. 'IMPLIED EMISSION FACTORS N2O',
  148. 'EMISSIONS CO2 Amount captured'
  149. ],
  150. "stop_cats": ["", np.nan],
  151. "unit_info": unit_info["default"],
  152. },
  153. "sector_mapping": [
  154. ['1.A. Fuel combustion', ['1.A', 'Total'], 0],
  155. ['Liquid fuels', ['1.A', 'Liquid'], 1],
  156. ['Solid fuels', ['1.A', 'Solid'], 1],
  157. ['Gaseous fuels', ['1.A', 'Gaseous'], 1],
  158. ['Other fossil fuels(4)', ['1.A', 'OtherFF'], 1],
  159. ['Peat(5)', ['1.A', 'Peat'], 1],
  160. ['Biomass(6)', ['1.A', 'Biomass'], 1],
  161. # 1.A.1. Energy industries
  162. ['1.A.1. Energy industries', ['1.A.1', 'Total'], 1],
  163. ['Liquid fuels', ['1.A.1', 'Liquid'], 2],
  164. ['Solid fuels', ['1.A.1', 'Solid'], 2],
  165. ['Gaseous fuels', ['1.A.1', 'Gaseous'], 2],
  166. ['Other fossil fuels(4)', ['1.A.1', 'OtherFF'], 2],
  167. ['Peat(5)', ['1.A.1', 'Peat'], 2],
  168. ['Biomass(6)', ['1.A.1', 'Biomass'], 2],
  169. # a. Public electricity and heat production
  170. ['a. Public electricity and heat production(7)', ['1.A.1.a', 'Total'], 2],
  171. ['Liquid fuels', ['1.A.1.a', 'Liquid'], 3],
  172. ['Solid fuels', ['1.A.1.a', 'Solid'], 3],
  173. ['Gaseous fuels', ['1.A.1.a', 'Gaseous'], 3],
  174. ['Other fossil fuels(4)', ['1.A.1.a', 'OtherFF'], 3],
  175. ['Peat(5)', ['1.A.1.a', 'Peat'], 3],
  176. ['Biomass(6)', ['1.A.1.a', 'Biomass'], 3],
  177. # 1.A.1.a.i Electricity Generation
  178. ['1.A.1.a.i Electricity Generation', ['1.A.1.a.i', 'Total'], 3],
  179. ['Liquid Fuels', ['1.A.1.a.i', 'Liquid'], 4],
  180. ['Solid Fuels', ['1.A.1.a.i', 'Solid'], 4],
  181. ['Gaseous Fuels', ['1.A.1.a.i', 'Gaseous'], 4],
  182. ['Other Fossil Fuels', ['1.A.1.a.i', 'OtherFF'], 4],
  183. ['Peat', ['1.A.1.a.i', 'Peat'], 4],
  184. ['Biomass', ['1.A.1.a.i', 'Biomass'], 4],
  185. # 1.A.1.a.ii Combined heat and power generation
  186. ['1.A.1.a.ii Combined heat and power generation', ['1.A.1.a.ii', 'Total'], 3],
  187. ['Liquid Fuels', ['1.A.1.a.ii', 'Liquid'], 4],
  188. ['Solid Fuels', ['1.A.1.a.ii', 'Solid'], 4],
  189. ['Gaseous Fuels', ['1.A.1.a.ii', 'Gaseous'], 4],
  190. ['Other Fossil Fuels', ['1.A.1.a.ii', 'OtherFF'], 4],
  191. ['Peat', ['1.A.1.a.ii', 'Peat'], 4],
  192. ['Biomass', ['1.A.1.a.ii', 'Biomass'], 4],
  193. # 1.A.1.a.iii heat plants
  194. ['1.A.1.a.iii Heat plants', ['1.A.1.a.iii', 'Total'], 3],
  195. ['Liquid Fuels', ['1.A.1.a.iii', 'Liquid'], 4],
  196. ['Solid Fuels', ['1.A.1.a.iii', 'Solid'], 4],
  197. ['Gaseous Fuels', ['1.A.1.a.iii', 'Gaseous'], 4],
  198. ['Other Fossil Fuels', ['1.A.1.a.iii', 'OtherFF'], 4],
  199. ['Peat', ['1.A.1.a.iii', 'Peat'], 4],
  200. ['Biomass', ['1.A.1.a.iii', 'Biomass'], 4],
  201. # 1.A.1.a.iv Other (please specify)
  202. ['1.A.1.a.iv Other (please specify)', ['1.A.1.a.iv', 'Total'], 3],
  203. # AUT
  204. ['Total Public Electricity and Heat Production', ['1.A.1.a.iv.4', 'Total'], 4],
  205. ['Liquid Fuels', ['1.A.1.a.iv.4', 'Liquid'], 5],
  206. ['Solid Fuels', ['1.A.1.a.iv.4', 'Solid'], 5],
  207. ['Gaseous Fuels', ['1.A.1.a.iv.4', 'Gaseous'], 5],
  208. ['Other Fossil Fuels', ['1.A.1.a.iv.4', 'OtherFF'], 5],
  209. ['Peat', ['1.A.1.a.iv.4', 'Peat'], 5],
  210. ['Biomass', ['1.A.1.a.iv.4', 'Biomass'], 5],
  211. # DEU
  212. ['1.A.1.a Public Electricity and Heat Production', ['1.A.1.a.iv.4', 'Total'], 4],
  213. ['Liquid Fuels', ['1.A.1.a.iv.4', 'Liquid'], 5],
  214. ['Solid Fuels', ['1.A.1.a.iv.4', 'Solid'], 5],
  215. ['Gaseous Fuels', ['1.A.1.a.iv.4', 'Gaseous'], 5],
  216. ['Other Fossil Fuels', ['1.A.1.a.iv.4', 'OtherFF'], 5],
  217. ['Peat', ['1.A.1.a.iv.4', 'Peat'], 5],
  218. ['Biomass', ['1.A.1.a.iv.4', 'Biomass'], 5],
  219. # ESP
  220. ['Other', ['1.A.1.a.iv.3', 'Total'], 4],
  221. ['Liquid Fuels', ['1.A.1.a.iv.3', 'Liquid'], 5],
  222. ['Solid Fuels', ['1.A.1.a.iv.3', 'Solid'], 5],
  223. ['Gaseous Fuels', ['1.A.1.a.iv.3', 'Gaseous'], 5],
  224. ['Other Fossil Fuels', ['1.A.1.a.iv.3', 'OtherFF'], 5],
  225. ['Peat', ['1.A.1.a.iv.3', 'Peat'], 5],
  226. ['Biomass', ['1.A.1.a.iv.3', 'Biomass'], 5],
  227. # SVK
  228. ['Methane Cogeneration (Mining)', ['1.A.1.a.iv.1', 'Total'], 4],
  229. ['Other Fossil Fuels', ['1.A.1.a.iv.1', 'OtherFF'], 5],
  230. ['Municipal Solid Waste Incineration (Energy use)', ['1.A.1.a.iv.2', 'Total'], 4],
  231. ['Other Fossil Fuels', ['1.A.1.a.iv.2', 'OtherFF'], 5],
  232. ['Biomass', ['1.A.1.a.iv.2', 'Biomass'], 5],
  233. # CHE
  234. ['Municipal and special waste incineration plants', ['1.A.1.a.iv.2', 'Total'], 4],
  235. ['Other Fossil Fuels', ['1.A.1.a.iv.2', 'OtherFF'], 5],
  236. ['Biomass', ['1.A.1.a.iv.2', 'Biomass'], 5],
  237. # b. Petroleum refining
  238. ['b. Petroleum refining', ['1.A.1.b', 'Total'], 2],
  239. ['Liquid fuels', ['1.A.1.b', 'Liquid'], 3],
  240. ['Solid fuels', ['1.A.1.b', 'Solid'], 3],
  241. ['Gaseous fuels', ['1.A.1.b', 'Gaseous'], 3],
  242. ['Other fossil fuels(4)', ['1.A.1.b', 'OtherFF'], 3],
  243. ['Peat(5)', ['1.A.1.b', 'Peat'], 3],
  244. ['Biomass(6)', ['1.A.1.b', 'Biomass'], 3],
  245. # c. Manufacture of solid fuels and other energy industries
  246. ['c. Manufacture of solid fuels and other energy industries(8)', ['1.A.1.c', 'Total'], 2],
  247. ['Liquid fuels', ['1.A.1.c', 'Liquid'], 3],
  248. ['Solid fuels', ['1.A.1.c', 'Solid'], 3],
  249. ['Gaseous fuels', ['1.A.1.c', 'Gaseous'], 3],
  250. ['Other fossil fuels(4)', ['1.A.1.c', 'OtherFF'], 3],
  251. ['Peat(5)', ['1.A.1.c', 'Peat'], 3],
  252. ['Biomass(6)', ['1.A.1.c', 'Biomass'], 3],
  253. # 1.A.1.c.i Manufacture of solid fuels
  254. ['1.A.1.c.i Manufacture of solid fuels', ['1.A.1.c.i', 'Total'], 3],
  255. ['Liquid Fuels', ['1.A.1.c.i', 'Liquid'], 4],
  256. ['Solid Fuels', ['1.A.1.c.i', 'Solid'], 4],
  257. ['Gaseous Fuels', ['1.A.1.c.i', 'Gaseous'], 4],
  258. ['Other Fossil Fuels', ['1.A.1.c.i', 'OtherFF'], 4],
  259. ['Peat', ['1.A.1.c.i', 'Peat'], 4],
  260. ['Biomass', ['1.A.1.c.i', 'Biomass'], 4],
  261. # 1.A.1.c.ii Oil and gas extraction
  262. ['1.A.1.c.ii Oil and gas extraction', ['1.A.1.c.ii', 'Total'], 3],
  263. ['Liquid Fuels', ['1.A.1.c.ii', 'Liquid'], 4],
  264. ['Solid Fuels', ['1.A.1.c.ii', 'Solid'], 4],
  265. ['Gaseous Fuels', ['1.A.1.c.ii', 'Gaseous'], 4],
  266. ['Other Fossil Fuels', ['1.A.1.c.ii', 'OtherFF'], 4],
  267. ['Peat', ['1.A.1.c.ii', 'Peat'], 4],
  268. ['Biomass', ['1.A.1.c.ii', 'Biomass'], 4],
  269. # 1.A.1.c.iii Other energy industries
  270. ['1.A.1.c.iii Other energy industries', ['1.A.1.c.iii', 'Total'], 3],
  271. ['Liquid Fuels', ['1.A.1.c.iii', 'Liquid'], 4],
  272. ['Solid Fuels', ['1.A.1.c.iii', 'Solid'], 4],
  273. ['Gaseous Fuels', ['1.A.1.c.iii', 'Gaseous'], 4],
  274. ['Other Fossil Fuels', ['1.A.1.c.iii', 'OtherFF'], 4],
  275. ['Peat', ['1.A.1.c.iii', 'Peat'], 4],
  276. ['Biomass', ['1.A.1.c.iii', 'Biomass'], 4],
  277. # 1.A.1.c.iv Other (please specify)
  278. ['1.A.1.c.iv Other (please specify)', ['1.A.1.c.iv', 'Total'], 3],
  279. # DEU
  280. ['1.A.1.c Manufacture of Solid Fuels and Other Energy Industries', ['1.A.1.c.iv.2', 'Total'], 4],
  281. ['Liquid Fuels', ['1.A.1.c.iv.2', 'Liquid'], 5],
  282. ['Solid Fuels', ['1.A.1.c.iv.2', 'Solid'], 5],
  283. ['Gaseous Fuels', ['1.A.1.c.iv.2', 'Gaseous'], 5],
  284. ['Other Fossil Fuels', ['1.A.1.c.iv.2', 'OtherFF'], 5],
  285. ['Peat', ['1.A.1.c.iv.2', 'Peat'], 5],
  286. ['Biomass', ['1.A.1.c.iv.2', 'Biomass'], 5],
  287. # ESP
  288. ['Other', ['1.A.1.c.iv.3', 'Total'], 4],
  289. ['Liquid Fuels', ['1.A.1.c.iv.3', 'Liquid'], 5],
  290. ['Solid Fuels', ['1.A.1.c.iv.3', 'Solid'], 5],
  291. ['Gaseous Fuels', ['1.A.1.c.iv.3', 'Gaseous'], 5],
  292. ['Other Fossil Fuels', ['1.A.1.c.iv.3', 'OtherFF'], 5],
  293. ['Peat', ['1.A.1.c.iv.3', 'Peat'], 5],
  294. ['Biomass', ['1.A.1.c.iv.3', 'Biomass'], 5],
  295. # CYP
  296. ['Charcoal Production', ['1.A.1.c.iv.1', 'Total'], 4],
  297. ['Liquid Fuels', ['1.A.1.c.iv.1', 'Liquid'], 5],
  298. ['Solid Fuels', ['1.A.1.c.iv.1', 'Solid'], 5],
  299. ['Gaseous Fuels', ['1.A.1.c.iv.1', 'Gaseous'], 5],
  300. ['Other Fossil Fuels', ['1.A.1.c.iv.1', 'OtherFF'], 5],
  301. ['Peat', ['1.A.1.c.iv.1', 'Peat'], 5],
  302. ['Biomass', ['1.A.1.c.iv.1', 'Biomass'], 5],
  303. ],
  304. "entity_mapping": {
  305. 'EMISSIONS CH4': "CH4",
  306. 'EMISSIONS CO2(2)': "CO2",
  307. 'EMISSIONS N2O': "N2O",
  308. },
  309. }, # tested
  310. "Table1.A(a)s2": {
  311. "status": "tested",
  312. "table": {
  313. "firstrow": 5,
  314. "lastrow": 114, # template, countries report less
  315. # check the resulting data as the templates have nan rows
  316. # which would stop the reading process (actual reported
  317. # data does not seem to have the nan rows)
  318. "header": ['group', 'entity', 'entity', 'unit'],
  319. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  320. "categories": ["category", "class"],
  321. "cols_to_ignore": [
  322. 'AGGREGATE ACTIVITY DATA Consumption',
  323. 'AGGREGATE ACTIVITY DATA Consumption',
  324. 'IMPLIED EMISSION FACTORS CO2(1)',
  325. 'IMPLIED EMISSION FACTORS CH4',
  326. 'IMPLIED EMISSION FACTORS N2O',
  327. 'EMISSIONS CO2 Amount captured',
  328. ],
  329. "stop_cats": ["", np.nan],
  330. "unit_info": unit_info["default"],
  331. },
  332. "sector_mapping": [
  333. ['1.A.2 Manufacturing industries and construction', ['1.A.2', 'Total'], 0],
  334. ['Liquid fuels', ['1.A.2', 'Liquid'], 1],
  335. ['Solid fuels', ['1.A.2', 'Solid'], 1],
  336. ['Gaseous fuels', ['1.A.2', 'Gaseous'], 1],
  337. ['Other fossil fuels(4)', ['1.A.2', 'OtherFF'], 1],
  338. ['Peat(5)', ['1.A.2', 'Peat'], 1],
  339. ['Biomass(6)', ['1.A.2', 'Biomass'], 1],
  340. # a. Iron and Steel
  341. ['a. Iron and steel', ['1.A.2.a', 'Total'], 1],
  342. ['Liquid fuels', ['1.A.2.a', 'Liquid'], 2],
  343. ['Solid fuels', ['1.A.2.a', 'Solid'], 2],
  344. ['Gaseous fuels', ['1.A.2.a', 'Gaseous'], 2],
  345. ['Other fossil fuels(4)', ['1.A.2.a', 'OtherFF'], 2],
  346. ['Peat(5)', ['1.A.2.a', 'Peat'], 2],
  347. ['Biomass(6)', ['1.A.2.a', 'Biomass'], 2],
  348. # b. non-ferrous metals
  349. ['b. Non-ferrous metals', ['1.A.2.b', 'Total'], 1],
  350. ['Liquid fuels', ['1.A.2.b', 'Liquid'], 2],
  351. ['Solid fuels', ['1.A.2.b', 'Solid'], 2],
  352. ['Gaseous fuels', ['1.A.2.b', 'Gaseous'], 2],
  353. ['Other fossil fuels(4)', ['1.A.2.b', 'OtherFF'], 2],
  354. ['Peat(5)', ['1.A.2.b', 'Peat'], 2],
  355. ['Biomass(6)', ['1.A.2.b', 'Biomass'], 2],
  356. # c. Chemicals
  357. ['c. Chemicals', ['1.A.2.c', 'Total'], 1],
  358. ['Liquid fuels', ['1.A.2.c', 'Liquid'], 2],
  359. ['Solid fuels', ['1.A.2.c', 'Solid'], 2],
  360. ['Gaseous fuels', ['1.A.2.c', 'Gaseous'], 2],
  361. ['Other fossil fuels(4)', ['1.A.2.c', 'OtherFF'], 2],
  362. ['Peat(5)', ['1.A.2.c', 'Peat'], 2],
  363. ['Biomass(6)', ['1.A.2.c', 'Biomass'], 2],
  364. # d. Pulp paper print
  365. ['d. Pulp, paper and print', ['1.A.2.d', 'Total'], 1],
  366. ['Liquid fuels', ['1.A.2.d', 'Liquid'], 2],
  367. ['Solid fuels', ['1.A.2.d', 'Solid'], 2],
  368. ['Gaseous fuels', ['1.A.2.d', 'Gaseous'], 2],
  369. ['Other fossil fuels(4)', ['1.A.2.d', 'OtherFF'], 2],
  370. ['Peat(5)', ['1.A.2.d', 'Peat'], 2],
  371. ['Biomass(6)', ['1.A.2.d', 'Biomass'], 2],
  372. # e. Food processing, beverages and tobacco
  373. ['e. Food processing, beverages and tobacco', ['1.A.2.e', 'Total'], 1],
  374. ['Liquid fuels', ['1.A.2.e', 'Liquid'], 2],
  375. ['Solid fuels', ['1.A.2.e', 'Solid'], 2],
  376. ['Gaseous fuels', ['1.A.2.e', 'Gaseous'], 2],
  377. ['Other fossil fuels(4)', ['1.A.2.e', 'OtherFF'], 2],
  378. ['Peat(5)', ['1.A.2.e', 'Peat'], 2],
  379. ['Biomass(6)', ['1.A.2.e', 'Biomass'], 2],
  380. # f. non-metallic minerals
  381. ['f. Non-metallic minerals', ['1.A.2.f', 'Total'], 1],
  382. ['Liquid fuels', ['1.A.2.f', 'Liquid'], 2],
  383. ['Solid fuels', ['1.A.2.f', 'Solid'], 2],
  384. ['Gaseous fuels', ['1.A.2.f', 'Gaseous'], 2],
  385. ['Other fossil fuels(4)', ['1.A.2.f', 'OtherFF'], 2],
  386. ['Peat(5)', ['1.A.2.f', 'Peat'], 2],
  387. ['Biomass(6)', ['1.A.2.f', 'Biomass'], 2],
  388. # g. other
  389. ['g. Other (please specify)(9)', ['1.A.2.g', 'Total'], 1],
  390. #1.A.2.g.i Manufacturing of machinery
  391. ['1.A.2.g.i Manufacturing of machinery', ['1.A.2.g.i', 'Total'], 2],
  392. ['Liquid Fuels', ['1.A.2.g.i', 'Liquid'], 3],
  393. ['Solid Fuels', ['1.A.2.g.i', 'Solid'], 3],
  394. ['Gaseous Fuels', ['1.A.2.g.i', 'Gaseous'], 3],
  395. ['Other Fossil Fuels', ['1.A.2.g.i', 'OtherFF'], 3],
  396. ['Peat', ['1.A.2.g.i', 'Peat'], 3],
  397. ['Biomass', ['1.A.2.g.i', 'Biomass'], 3],
  398. # 1.A.2.g.ii Manufacturing of transport equipment
  399. ['1.A.2.g.ii Manufacturing of transport equipment', ['1.A.2.g.ii', 'Total'], 2],
  400. ['Liquid Fuels', ['1.A.2.g.ii', 'Liquid'], 3],
  401. ['Solid Fuels', ['1.A.2.g.ii', 'Solid'], 3],
  402. ['Gaseous Fuels', ['1.A.2.g.ii', 'Gaseous'], 3],
  403. ['Other Fossil Fuels', ['1.A.2.g.ii', 'OtherFF'], 3],
  404. ['Peat', ['1.A.2.g.ii', 'Peat'], 3],
  405. ['Biomass', ['1.A.2.g.ii', 'Biomass'], 3],
  406. # 1.A.2.g.iii Mining (excluding fuels) and quarrying
  407. ['1.A.2.g.iii Mining (excluding fuels) and quarrying', ['1.A.2.g.iii', 'Total'], 2],
  408. ['Liquid Fuels', ['1.A.2.g.iii', 'Liquid'], 3],
  409. ['Solid Fuels', ['1.A.2.g.iii', 'Solid'], 3],
  410. ['Gaseous Fuels', ['1.A.2.g.iii', 'Gaseous'], 3],
  411. ['Other Fossil Fuels', ['1.A.2.g.iii', 'OtherFF'], 3],
  412. ['Peat', ['1.A.2.g.iii', 'Peat'], 3],
  413. ['Biomass', ['1.A.2.g.iii', 'Biomass'], 3],
  414. # 1.A.2.g.iv Wood and wood products
  415. ['1.A.2.g.iv Wood and wood products', ['1.A.2.g.iv', 'Total'], 2],
  416. ['Liquid Fuels', ['1.A.2.g.iv', 'Liquid'], 3],
  417. ['Solid Fuels', ['1.A.2.g.iv', 'Solid'], 3],
  418. ['Gaseous Fuels', ['1.A.2.g.iv', 'Gaseous'], 3],
  419. ['Other Fossil Fuels', ['1.A.2.g.iv', 'OtherFF'], 3],
  420. ['Peat', ['1.A.2.g.iv', 'Peat'], 3],
  421. ['Biomass', ['1.A.2.g.iv', 'Biomass'], 3],
  422. # 1.A.2.g.v Construction
  423. ['1.A.2.g.v Construction', ['1.A.2.g.v', 'Total'], 2],
  424. ['Liquid Fuels', ['1.A.2.g.v', 'Liquid'], 3],
  425. ['Solid Fuels', ['1.A.2.g.v', 'Solid'], 3],
  426. ['Gaseous Fuels', ['1.A.2.g.v', 'Gaseous'], 3],
  427. ['Other Fossil Fuels', ['1.A.2.g.v', 'OtherFF'], 3],
  428. ['Peat', ['1.A.2.g.v', 'Peat'], 3],
  429. ['Biomass', ['1.A.2.g.v', 'Biomass'], 3],
  430. # 1.A.2.g.vi Textile and leather
  431. ['1.A.2.g.vi Textile and leather', ['1.A.2.g.vi', 'Total'], 2],
  432. ['Liquid Fuels', ['1.A.2.g.vi', 'Liquid'], 3],
  433. ['Solid Fuels', ['1.A.2.g.vi', 'Solid'], 3],
  434. ['Gaseous Fuels', ['1.A.2.g.vi', 'Gaseous'], 3],
  435. ['Other Fossil Fuels', ['1.A.2.g.vi', 'OtherFF'], 3],
  436. ['Peat', ['1.A.2.g.vi', 'Peat'], 3],
  437. ['Biomass', ['1.A.2.g.vi', 'Biomass'], 3],
  438. # 1.A.2.g.vii Off-road vehicles and other machinery
  439. ['1.A.2.g.vii Off-road vehicles and other machinery', ['1.A.2.g.vii', 'Total'], 2],
  440. ['Liquid Fuels', ['1.A.2.g.vii', 'Liquid'], 3],
  441. ['Gaseous Fuels', ['1.A.2.g.vii', 'Gaseous'], 3],
  442. ['Other Fossil Fuels', ['1.A.2.g.vii', 'OtherFF'], 3],
  443. ['Biomass', ['1.A.2.g.vii', 'Biomass'], 3],
  444. # 1.A.2.g.viii Other (please specify)
  445. ['1.A.2.g.viii Other (please specify)', ['1.A.2.g.viii', 'Total'], 2],
  446. # DKE
  447. ['Construction', ['\IGNORE', '\IGNORE'], 3], # (empty)
  448. ['Mining', ['\IGNORE', '\IGNORE'], 3], # (empty)
  449. # DNK, DKE, USA, CZE
  450. ['Other non-specified', ['1.A.2.g.viii.1', 'Total'], 3],
  451. ['Liquid Fuels', ['1.A.2.g.viii.1', 'Liquid'], 4],
  452. ['Solid Fuels', ['1.A.2.g.viii.1', 'Solid'], 4],
  453. ['Gaseous Fuels', ['1.A.2.g.viii.1', 'Gaseous'], 4],
  454. ['Other Fossil Fuels', ['1.A.2.g.viii.1', 'OtherFF'], 4],
  455. ['Peat', ['1.A.2.g.viii.1', 'Peat'], 4],
  456. ['Biomass', ['1.A.2.g.viii.1', 'Biomass'], 4],
  457. #SVK, CYP
  458. ['Non-specified Industry', ['1.A.2.g.viii.1', 'Total'], 3],
  459. ['Liquid Fuels', ['1.A.2.g.viii.1', 'Liquid'], 4],
  460. ['Solid Fuels', ['1.A.2.g.viii.1', 'Solid'], 4],
  461. ['Gaseous Fuels', ['1.A.2.g.viii.1', 'Gaseous'], 4],
  462. ['Other Fossil Fuels', ['1.A.2.g.viii.1', 'OtherFF'], 4],
  463. ['Peat', ['1.A.2.g.viii.1', 'Peat'], 4],
  464. ['Biomass', ['1.A.2.g.viii.1', 'Biomass'], 4],
  465. #BEL
  466. ['Other non specified', ['1.A.2.g.viii.1', 'Total'], 3],
  467. ['Liquid Fuels', ['1.A.2.g.viii.1', 'Liquid'], 4],
  468. ['Solid Fuels', ['1.A.2.g.viii.1', 'Solid'], 4],
  469. ['Gaseous Fuels', ['1.A.2.g.viii.1', 'Gaseous'], 4],
  470. ['Other Fossil Fuels', ['1.A.2.g.viii.1', 'OtherFF'], 4],
  471. ['Peat', ['1.A.2.g.viii.1', 'Peat'], 4],
  472. ['Biomass', ['1.A.2.g.viii.1', 'Biomass'], 4],
  473. #PRT, LTU
  474. ['Non-specified industry', ['1.A.2.g.viii.1', 'Total'], 3],
  475. ['Liquid Fuels', ['1.A.2.g.viii.1', 'Liquid'], 4],
  476. ['Solid Fuels', ['1.A.2.g.viii.1', 'Solid'], 4],
  477. ['Gaseous Fuels', ['1.A.2.g.viii.1', 'Gaseous'], 4],
  478. ['Other Fossil Fuels', ['1.A.2.g.viii.1', 'OtherFF'], 4],
  479. ['Peat', ['1.A.2.g.viii.1', 'Peat'], 4],
  480. ['Biomass', ['1.A.2.g.viii.1', 'Biomass'], 4],
  481. # MLT
  482. ['Undefined Industry', ['1.A.2.g.viii.1', 'Total'], 3],
  483. ['Liquid Fuels', ['1.A.2.g.viii.1', 'Liquid'], 4],
  484. ['Solid Fuels', ['1.A.2.g.viii.1', 'Solid'], 4],
  485. ['Gaseous Fuels', ['1.A.2.g.viii.1', 'Gaseous'], 4],
  486. ['Other Fossil Fuels', ['1.A.2.g.viii.1', 'OtherFF'], 4],
  487. ['Peat', ['1.A.2.g.viii.1', 'Peat'], 4],
  488. ['Biomass', ['1.A.2.g.viii.1', 'Biomass'], 4],
  489. # TUR
  490. ['Other unspecified', ['1.A.2.g.viii.1', 'Total'], 3],
  491. ['Liquid Fuels', ['1.A.2.g.viii.1', 'Liquid'], 4],
  492. ['Solid Fuels', ['1.A.2.g.viii.1', 'Solid'], 4],
  493. ['Gaseous Fuels', ['1.A.2.g.viii.1', 'Gaseous'], 4],
  494. ['Other Fossil Fuels', ['1.A.2.g.viii.1', 'OtherFF'], 4],
  495. ['Peat', ['1.A.2.g.viii.1', 'Peat'], 4],
  496. ['Biomass', ['1.A.2.g.viii.1', 'Biomass'], 4],
  497. # DKE
  498. ['Textile', ['\IGNORE', '\IGNORE'], 3], # (empty)
  499. # DNK, DNM, FIN, DKE
  500. ['Other manufacturing industries', ['1.A.2.g.viii.3', 'Total'], 3],
  501. ['Liquid Fuels', ['1.A.2.g.viii.3', 'Liquid'], 4],
  502. ['Solid Fuels', ['1.A.2.g.viii.3', 'Solid'], 4],
  503. ['Gaseous Fuels', ['1.A.2.g.viii.3', 'Gaseous'], 4],
  504. ['Other Fossil Fuels', ['1.A.2.g.viii.3', 'OtherFF'], 4],
  505. ['Peat', ['1.A.2.g.viii.3', 'Peat'], 4],
  506. ['Biomass', ['1.A.2.g.viii.3', 'Biomass'], 4],
  507. # CAN
  508. ['Other Manufacturing', ['1.A.2.g.viii.3', 'Total'], 3],
  509. ['Liquid Fuels', ['1.A.2.g.viii.3', 'Liquid'], 4],
  510. ['Solid Fuels', ['1.A.2.g.viii.3', 'Solid'], 4],
  511. ['Gaseous Fuels', ['1.A.2.g.viii.3', 'Gaseous'], 4],
  512. ['Other Fossil Fuels', ['1.A.2.g.viii.3', 'OtherFF'], 4],
  513. ['Peat', ['1.A.2.g.viii.3', 'Peat'], 4],
  514. ['Biomass', ['1.A.2.g.viii.3', 'Biomass'], 4],
  515. # AUT, LUX
  516. ['Other Manufacturing Industries', ['1.A.2.g.viii.3', 'Total'], 3],
  517. ['Liquid Fuels', ['1.A.2.g.viii.3', 'Liquid'], 4],
  518. ['Solid Fuels', ['1.A.2.g.viii.3', 'Solid'], 4],
  519. ['Gaseous Fuels', ['1.A.2.g.viii.3', 'Gaseous'], 4],
  520. ['Other Fossil Fuels', ['1.A.2.g.viii.3', 'OtherFF'], 4],
  521. ['Peat', ['1.A.2.g.viii.3', 'Peat'], 4],
  522. ['Biomass', ['1.A.2.g.viii.3', 'Biomass'], 4],
  523. # NOR
  524. ['Other manufacturing', ['1.A.2.g.viii.3', 'Total'], 3],
  525. ['Liquid Fuels', ['1.A.2.g.viii.3', 'Liquid'], 4],
  526. ['Solid Fuels', ['1.A.2.g.viii.3', 'Solid'], 4],
  527. ['Gaseous Fuels', ['1.A.2.g.viii.3', 'Gaseous'], 4],
  528. ['Other Fossil Fuels', ['1.A.2.g.viii.3', 'OtherFF'], 4],
  529. ['Peat', ['1.A.2.g.viii.3', 'Peat'], 4],
  530. ['Biomass', ['1.A.2.g.viii.3', 'Biomass'], 4],
  531. # AUS
  532. ['All Other Manufacturing', ['1.A.2.g.viii.3', 'Total'], 3],
  533. ['Liquid Fuels', ['1.A.2.g.viii.3', 'Liquid'], 4],
  534. ['Solid Fuels', ['1.A.2.g.viii.3', 'Solid'], 4],
  535. ['Gaseous Fuels', ['1.A.2.g.viii.3', 'Gaseous'], 4],
  536. ['Other Fossil Fuels', ['1.A.2.g.viii.3', 'OtherFF'], 4],
  537. ['Peat', ['1.A.2.g.viii.3', 'Peat'], 4],
  538. ['Biomass', ['1.A.2.g.viii.3', 'Biomass'], 4],
  539. # NLD
  540. ['Other Industrial Sectors', ['1.A.2.g.viii.4', 'Total'], 3],
  541. ['Liquid Fuels', ['1.A.2.g.viii.4', 'Liquid'], 4],
  542. ['Solid Fuels', ['1.A.2.g.viii.4', 'Solid'], 4],
  543. ['Gaseous Fuels', ['1.A.2.g.viii.4', 'Gaseous'], 4],
  544. ['Other Fossil Fuels', ['1.A.2.g.viii.4', 'OtherFF'], 4],
  545. ['Peat', ['1.A.2.g.viii.4', 'Peat'], 4],
  546. ['Biomass', ['1.A.2.g.viii.4', 'Biomass'], 4],
  547. # GBR, GBK
  548. ['Other industry (not specified above)', ['1.A.2.g.viii.4', 'Total'], 3],
  549. ['Liquid Fuels', ['1.A.2.g.viii.4', 'Liquid'], 4],
  550. ['Solid Fuels', ['1.A.2.g.viii.4', 'Solid'], 4],
  551. ['Gaseous Fuels', ['1.A.2.g.viii.4', 'Gaseous'], 4],
  552. ['Other Fossil Fuels', ['1.A.2.g.viii.4', 'OtherFF'], 4],
  553. ['Peat', ['1.A.2.g.viii.4', 'Peat'], 4],
  554. ['Biomass', ['1.A.2.g.viii.4', 'Biomass'], 4],
  555. # UKR
  556. ['Oter Industries', ['1.A.2.g.viii.4', 'Total'], 3],
  557. ['Liquid Fuels', ['1.A.2.g.viii.4', 'Liquid'], 4],
  558. ['Solid Fuels', ['1.A.2.g.viii.4', 'Solid'], 4],
  559. ['Gaseous Fuels', ['1.A.2.g.viii.4', 'Gaseous'], 4],
  560. ['Other Fossil Fuels', ['1.A.2.g.viii.4', 'OtherFF'], 4],
  561. ['Peat', ['1.A.2.g.viii.4', 'Peat'], 4],
  562. ['Biomass', ['1.A.2.g.viii.4', 'Biomass'], 4],
  563. # RUS
  564. ['Other industries', ['1.A.2.g.viii.4', 'Total'], 3],
  565. ['Liquid Fuels', ['1.A.2.g.viii.4', 'Liquid'], 4],
  566. ['Solid Fuels', ['1.A.2.g.viii.4', 'Solid'], 4],
  567. ['Gaseous Fuels', ['1.A.2.g.viii.4', 'Gaseous'], 4],
  568. ['Other Fossil Fuels', ['1.A.2.g.viii.4', 'OtherFF'], 4],
  569. ['Peat', ['1.A.2.g.viii.4', 'Peat'], 4],
  570. ['Biomass', ['1.A.2.g.viii.4', 'Biomass'], 4],
  571. # RUS
  572. ['Non-CO2 emissions from BFG combustion', ['1.A.2.g.viii.5', 'Total'], 3],
  573. ['Solid Fuels', ['1.A.2.g.viii.5', 'Solid'], 4],
  574. # BLR, DNK, ESP, LVA, NZL, POL, ROU, SVN,
  575. ['Other', ['1.A.2.g.viii.10', 'Total'], 3],
  576. ['Liquid Fuels', ['1.A.2.g.viii.10', 'Liquid'], 4],
  577. ['Solid Fuels', ['1.A.2.g.viii.10', 'Solid'], 4],
  578. ['Gaseous Fuels', ['1.A.2.g.viii.10', 'Gaseous'], 4],
  579. ['Other Fossil Fuels', ['1.A.2.g.viii.10', 'OtherFF'], 4],
  580. ['Peat', ['1.A.2.g.viii.10', 'Peat'], 4],
  581. ['Biomass', ['1.A.2.g.viii.10', 'Biomass'], 4],
  582. # BLR
  583. ['Manufacture and construction Aggregated', ['1.A.2.g.viii.2', 'Total'], 3],
  584. ['Liquid Fuels', ['1.A.2.g.viii.2', 'Liquid'], 4],
  585. ['Solid Fuels', ['1.A.2.g.viii.2', 'Solid'], 4],
  586. ['Gaseous Fuels', ['1.A.2.g.viii.2', 'Gaseous'], 4],
  587. ['Other Fossil Fuels', ['1.A.2.g.viii.2', 'OtherFF'], 4],
  588. ['Peat', ['1.A.2.g.viii.2', 'Peat'], 4],
  589. ['Biomass', ['1.A.2.g.viii.2', 'Biomass'], 4],
  590. # HRV
  591. ['Other Industry', ['1.A.2.g.viii.4', 'Total'], 3],
  592. ['Liquid Fuels', ['1.A.2.g.viii.4', 'Liquid'], 4],
  593. ['Solid Fuels', ['1.A.2.g.viii.4', 'Solid'], 4],
  594. ['Gaseous Fuels', ['1.A.2.g.viii.4', 'Gaseous'], 4],
  595. ['Other Fossil Fuels', ['1.A.2.g.viii.4', 'OtherFF'], 4],
  596. ['Peat', ['1.A.2.g.viii.4', 'Peat'], 4],
  597. ['Biomass', ['1.A.2.g.viii.4', 'Biomass'], 4],
  598. # HRV
  599. ['1A2 Total for 1990 to 2000', ['1.A.2.g.viii.2', 'Total'], 3],
  600. ['Liquid Fuels', ['1.A.2.g.viii.2', 'Liquid'], 4],
  601. ['Solid Fuels', ['1.A.2.g.viii.2', 'Solid'], 4],
  602. ['Gaseous Fuels', ['1.A.2.g.viii.2', 'Gaseous'], 4],
  603. ['Other Fossil Fuels', ['1.A.2.g.viii.2', 'OtherFF'], 4],
  604. ['Peat', ['1.A.2.g.viii.2', 'Peat'], 4],
  605. ['Biomass', ['1.A.2.g.viii.2', 'Biomass'], 4],
  606. # MLT
  607. ['All Industry', ['1.A.2.g.viii.2', 'Total'], 3],
  608. ['Liquid Fuels', ['1.A.2.g.viii.2', 'Liquid'], 4],
  609. ['Solid Fuels', ['1.A.2.g.viii.2', 'Solid'], 4],
  610. ['Gaseous Fuels', ['1.A.2.g.viii.2', 'Gaseous'], 4],
  611. ['Other Fossil Fuels', ['1.A.2.g.viii.2', 'OtherFF'], 4],
  612. ['Peat', ['1.A.2.g.viii.2', 'Peat'], 4],
  613. ['Biomass', ['1.A.2.g.viii.2', 'Biomass'], 4],
  614. # PRT
  615. ['Rubber', ['1.A.2.g.viii.6', 'Total'], 3],
  616. ['Liquid Fuels', ['1.A.2.g.viii.6', 'Liquid'], 4],
  617. ['Solid Fuels', ['1.A.2.g.viii.6', 'Solid'], 4],
  618. ['Gaseous Fuels', ['1.A.2.g.viii.6', 'Gaseous'], 4],
  619. ['Other Fossil Fuels', ['1.A.2.g.viii.6', 'OtherFF'], 4],
  620. ['Biomass', ['1.A.2.g.viii.6', 'Biomass'], 4],
  621. # SWE
  622. ['All stationary combustin within CRF 1.A.2.g', ['1.A.2.g.viii.7', 'Total'], 3],
  623. ['Liquid Fuels', ['1.A.2.g.viii.7', 'Liquid'], 4],
  624. ['Solid Fuels', ['1.A.2.g.viii.7', 'Solid'], 4],
  625. ['Gaseous Fuels', ['1.A.2.g.viii.7', 'Gaseous'], 4],
  626. ['Other Fossil Fuels', ['1.A.2.g.viii.7', 'OtherFF'], 4],
  627. ['Peat', ['1.A.2.g.viii.7', 'Peat'], 4],
  628. ['Biomass', ['1.A.2.g.viii.7', 'Biomass'], 4],
  629. # IRL
  630. ['Other stationary combustion', ['1.A.2.g.viii.8', 'Total'], 3],
  631. ['Liquid Fuels', ['1.A.2.g.viii.8', 'Liquid'], 4],
  632. ['Solid Fuels', ['1.A.2.g.viii.8', 'Solid'], 4],
  633. ['Gaseous Fuels', ['1.A.2.g.viii.8', 'Gaseous'], 4],
  634. ['Other Fossil Fuels', ['1.A.2.g.viii.8', 'OtherFF'], 4],
  635. ['Peat', ['1.A.2.g.viii.8', 'Peat'], 4],
  636. ['Biomass', ['1.A.2.g.viii.8', 'Biomass'], 4],
  637. # HUN
  638. ['Other Stationary Combustion', ['1.A.2.g.viii.8', 'Total'], 3],
  639. ['Liquid Fuels', ['1.A.2.g.viii.8', 'Liquid'], 4],
  640. ['Solid Fuels', ['1.A.2.g.viii.8', 'Solid'], 4],
  641. ['Gaseous Fuels', ['1.A.2.g.viii.8', 'Gaseous'], 4],
  642. ['Other Fossil Fuels', ['1.A.2.g.viii.8', 'OtherFF'], 4],
  643. ['Peat', ['1.A.2.g.viii.8', 'Peat'], 4],
  644. ['Biomass', ['1.A.2.g.viii.8', 'Biomass'], 4],
  645. # CHE
  646. ['Other Boilers and Engines Industry', ['1.A.2.g.viii.9', 'Total'], 3],
  647. ['Liquid Fuels', ['1.A.2.g.viii.9', 'Liquid'], 4],
  648. ['Solid Fuels', ['1.A.2.g.viii.9', 'Solid'], 4],
  649. ['Gaseous Fuels', ['1.A.2.g.viii.9', 'Gaseous'], 4],
  650. ['Other Fossil Fuels', ['1.A.2.g.viii.9', 'OtherFF'], 4],
  651. ['Biomass', ['1.A.2.g.viii.9', 'Biomass'], 4],
  652. ],
  653. "entity_mapping": {
  654. 'EMISSIONS CH4': "CH4",
  655. 'EMISSIONS CO2(2)': "CO2",
  656. 'EMISSIONS N2O': "N2O",
  657. },
  658. }, # tested
  659. "Table1.A(a)s3": {
  660. "status": "tested",
  661. "table": {
  662. "firstrow": 5,
  663. "lastrow": 115,
  664. "header": ['group', 'entity', 'entity', 'unit'],
  665. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  666. "categories": ["category", "class"],
  667. "cols_to_ignore": [
  668. 'AGGREGATE ACTIVITY DATA Consumption',
  669. 'AGGREGATE ACTIVITY DATA Consumption',
  670. 'IMPLIED EMISSION FACTORS CO2(1)',
  671. 'IMPLIED EMISSION FACTORS CH4',
  672. 'IMPLIED EMISSION FACTORS N2O',
  673. ],
  674. "stop_cats": ["Note: All footnotes for this table are given at the end of the table on sheet 4.", np.nan],
  675. "unit_info": unit_info["default"],
  676. },
  677. "sector_mapping": [
  678. ['1.A.3 Transport', ['1.A.3', 'Total'], 0],
  679. ['Liquid fuels', ['1.A.3', 'Liquid'], 1],
  680. ['Solid fuels', ['1.A.3', 'Solid'], 1],
  681. ['Gaseous fuels', ['1.A.3', 'Gaseous'], 1],
  682. ['Other fossil fuels(4)', ['1.A.3', 'OtherFF'], 1],
  683. ['Biomass(6)', ['1.A.3', 'Biomass'], 1],
  684. # a. Domestic Aviation
  685. ['a. Domestic aviation(10)', ['1.A.3.a', 'Total'], 1],
  686. ['Aviation gasoline', ['1.A.3.a', 'AvGasoline'], 2],
  687. ['Jet kerosene', ['1.A.3.a', 'JetKerosene'], 2],
  688. ['Biomass', ['1.A.3.a', 'Biomass'], 2],
  689. # b. road Transportation
  690. ['b. Road transportation(11)', ['1.A.3.b', 'Total'], 1],
  691. ['Gasoline', ['1.A.3.b', 'Gasoline'], 2],
  692. ['Diesel oil', ['1.A.3.b', 'DieselOil'], 2],
  693. ['Liquefied petroleum gases (LPG)', ['1.A.3.b', 'LPG'], 2],
  694. ['Other liquid fuels (please specify)', ['1.A.3.b', 'OtherLiquid'], 2],
  695. ['Gaseous fuels', ['1.A.3.b', 'Gaseous'], 2],
  696. ['Biomass(6)', ['1.A.3.b', 'Biomass'], 2],
  697. ['Other fossil fuels (please specify)(4)', ['1.A.3.b', 'OtherFF'], 2],
  698. # i. Cars
  699. ['i. Cars', ['1.A.3.b.i', 'Total'], 2],
  700. ['Gasoline', ['1.A.3.b.i', 'Gasoline'], 3],
  701. ['Diesel oil', ['1.A.3.b.i', 'DieselOil'], 3],
  702. ['Liquefied petroleum gases (LPG)', ['1.A.3.b.i', 'LPG'], 3],
  703. ['Other liquid fuels (please specify)', ['1.A.3.b.i', 'OtherLiquid'], 3],
  704. ['Kerosene', ['1.A.3.b.i', 'Kerosene'], 4], # UKR (and probably others)
  705. ['Lubricants', ['1.A.3.b.i', 'Lubricants'], 4], # UKR, JPN
  706. ['Lubricant oil', ['1.A.3.b.i', 'Lubricants'], 4], # PRT
  707. ['Biodiesel (5 percent fossil portion)', ['1.A.3.b.i', 'OLBiodieselFC'], 4], # CAN
  708. ['Fossil part of biodiesel', ['1.A.3.b.i', 'OLBiodieselFC'], 4], # LTU
  709. ['Other', ['1.A.3.b.i', 'OLOther'], 4], # UKR, MLT
  710. ['Other Liquid Fuels', ['1.A.3.b.i', 'OLOther'], 4], # CYP
  711. ['Other motor fuels', ['1.A.3.b.i', 'OMotorFuels'], 4], # RUS
  712. ['Lubricants in 2-stroke engines', ['1.A.3.b.i', 'Lubricants'], 4], # HUN
  713. ['LNG', ['1.A.3.b.i', 'LNG'], 4], ## USA
  714. ['Gaseous fuels', ['1.A.3.b.i', 'Gaseous'], 3],
  715. ['Biomass(6)', ['1.A.3.b.i', 'Biomass'], 3],
  716. ['Other fossil fuels (please specify)(4)', ['1.A.3.b.i', 'OtherFF'], 3],
  717. ['Other Fossil Fuels', ['1.A.3.b.i', 'OFFOther'], 4], # CYP, POL
  718. ['Biodiesel (fossil component)', ['1.A.3.b.i', 'OFFBiodieselFC'], 4], # LUX
  719. ['Biodiesel fossil fraction', ['1.A.3.b.i', 'OFFBiodieselFC'], 4], # NOR
  720. ['Biodiesel (fossil fraction)', ['1.A.3.b.i', 'OFFBiodieselFC'], 4], # NZL
  721. ['Fossil part of biodiesel or biogasoline', ['1.A.3.b.i', 'OFFBiofuelFC'], 4], # PRT
  722. ['Fossil part of biodiesel and biogasoline', ['1.A.3.b.i', 'OFFBiofuelFC'], 4], # SWE
  723. ['fossil part of biofuels', ['1.A.3.b.i', 'OFFBiofuelFC'], 4], # CZE
  724. ['fossil part of biodiesel', ['1.A.3.b.i', 'OFFBiodieselFC'], 4], # DKE, DNK, HRV
  725. ['Fossil part of biodiesel', ['1.A.3.b.i', 'OFFBiodieselFC'], 4], # DNM, BEL, HUN, LVA, ESP
  726. ['Fossil part of biogasoline', ['1.A.3.b.i', 'OFFBiogasolineFC'], 4], # BEL
  727. ['Natural Gas', ['1.A.3.b.i', 'OFFNaturalGas'], 4], # USA
  728. ['Fossil part of biofuel', ['1.A.3.b.i', 'OFFBiofuelFC'], 4], # IRL
  729. ['Other', ['1.A.3.b.i', 'OFFOther'], 4], # MLT
  730. # ii. Light duty trucks
  731. ['ii. Light duty trucks', ['1.A.3.b.ii', 'Total'], 2],
  732. ['Gasoline', ['1.A.3.b.ii', 'Gasoline'], 3],
  733. ['Diesel oil', ['1.A.3.b.ii', 'DieselOil'], 3],
  734. ['Liquefied petroleum gases (LPG)', ['1.A.3.b.ii', 'LPG'], 3],
  735. ['Other liquid fuels (please specify)', ['1.A.3.b.ii', 'OtherLiquid'], 3],
  736. ['Kerosene', ['1.A.3.b.ii', 'Kerosene'], 4], # UKR (and probably others)
  737. ['Lubricants', ['1.A.3.b.ii', 'Lubricants'], 4], # UKR, JPN
  738. ['Lubricant Oil', ['1.A.3.b.ii', 'Lubricants'], 4], # PRT
  739. ['Biodiesel (5 percent fossil portion)', ['1.A.3.b.ii', 'OLBiodieselFC'], 4], # CAN
  740. ['Other', ['1.A.3.b.ii', 'OLOther'], 4], # UKR (and probably others)
  741. ['Other Liquid Fuels', ['1.A.3.b.ii', 'OLOther'], 4], # CYP
  742. ['Other motor fuels', ['1.A.3.b.ii', 'OMotorFuels'], 4], # RUS
  743. ['LNG', ['1.A.3.b.ii', 'LNG'], 4], ## USA
  744. ['Gaseous fuels', ['1.A.3.b.ii', 'Gaseous'], 3],
  745. ['Biomass(6)', ['1.A.3.b.ii', 'Biomass'], 3],
  746. ['Other fossil fuels (please specify)(4)', ['1.A.3.b.ii', 'OtherFF'], 3],
  747. ['Other Fossil Fuels', ['1.A.3.b.ii', 'OFFOther'], 4], # CYP, POL
  748. ['Biodiesel (fossil component)', ['1.A.3.b.ii', 'OFFBiodieselFC'], 4], # LUX
  749. ['Biodiesel fossil fraction', ['1.A.3.b.ii', 'OFFBiodieselFC'], 4], # NOR
  750. ['Biodiesel (fossil fraction)', ['1.A.3.b.ii', 'OFFBiodieselFC'], 4], # NZL
  751. ['Fossil part of biodiesel or biogasoline', ['1.A.3.b.ii', 'OFFBiofuelFC'], 4], # PRT
  752. ['Fossil part of biodiesel and biogasoline', ['1.A.3.b.ii', 'OFFBiofuelFC'], 4], # SWE
  753. ['fossil part of biofuels', ['1.A.3.b.ii', 'OFFBiofuelFC'], 4], # CZE
  754. ['fossil part of biodiesel', ['1.A.3.b.ii', 'OFFBiodieselFC'], 4], # DKE, DNK, HRV
  755. ['Fossil part of biodiesel', ['1.A.3.b.ii', 'OFFBiodieselFC'], 4], # DNM, BEL, HUN, LVA, ESP
  756. ['Fossil part of biogasoline', ['1.A.3.b.ii', 'OFFBiogasolineFC'], 4], # BEL
  757. ['Fossil part of biofuel', ['1.A.3.b.ii', 'OFFBiofuelFC'], 4], # IRL
  758. # iii. Heavy duty trucks and buses
  759. ['iii. Heavy duty trucks and buses', ['1.A.3.b.iii', 'Total'], 2],
  760. ['Gasoline', ['1.A.3.b.iii', 'Gasoline'], 3],
  761. ['Diesel oil', ['1.A.3.b.iii', 'DieselOil'], 3],
  762. ['Liquefied petroleum gases (LPG)', ['1.A.3.b.iii', 'LPG'], 3],
  763. ['Other liquid fFuels (please specify)', ['1.A.3.b.iii', 'OtherLiquid'], 3],
  764. ['Kerosene', ['1.A.3.b.iii', 'Kerosene'], 4], # UKR (and probably others)
  765. ['Lubricants', ['1.A.3.b.iii', 'Lubricants'], 4], # UKR, JPN
  766. ['Lubricant Oil', ['1.A.3.b.iii', 'Lubricants'], 4], # PRT
  767. ['Biodiesel (5 percent fossil portion)', ['1.A.3.b.iii', 'OLBiodieselFC'], 4], # CAN
  768. ['Other', ['1.A.3.b.iii', 'OLOther'], 4], # UKR (and probably others)
  769. ['Other Liquid Fuels', ['1.A.3.b.iii', 'OLOther'], 4], # CYP
  770. ['Other motor fuels', ['1.A.3.b.iii', 'OMotorFuels'], 4], # RUS
  771. ['LNG', ['1.A.3.b.iii', 'LNG'], 4], # USA
  772. ['GTL', ['1.A.3.b.iii', 'GTL'], 4], # MCO, new in 2022
  773. ['Gaseous fuels', ['1.A.3.b.iii', 'Gaseous'], 3],
  774. ['Biomass(6)', ['1.A.3.b.iii', 'Biomass'], 3],
  775. ['Other fossil fuels (please specify)(4)', ['1.A.3.b.iii', 'OtherFF'], 3],
  776. ['Other Fossil Fuels', ['1.A.3.b.iii', 'OFFOther'], 4], # CYP, POL
  777. ['Biodiesel (fossil component)', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # LUX
  778. ['Biodiesel fossil fraction', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # NOR
  779. ['Biodiesel (fossil fraction)', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # NZL
  780. ['Fossil part of biodiesel or biogasoline', ['1.A.3.b.iii', 'OFFBiofuelFC'], 4], # PRT
  781. ['Fossil part of biodiesel and biogasoline', ['1.A.3.b.iii', 'OFFBiofuelFC'], 4], # SWE
  782. ['fossil part of biofuels', ['1.A.3.b.iii', 'OFFBiofuelFC'], 4], # CZE
  783. ['fossil part of biodiesel', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # DKE, DNK, HRV
  784. ['Fossil part of biodiesel', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # DNM, BEL, HUN. LVA, ESP
  785. ['Fossil part of biogasoline', ['1.A.3.b.iii', 'OFFBiogasolineFC'], 4], # BEL
  786. ['Fossil part of biofuel', ['1.A.3.b.iii', 'OFFBiofuelFC'], 4], # IRL
  787. # iv. Motorcycles
  788. ['iv. Motorcycles', ['1.A.3.b.iv', 'Total'], 2],
  789. ['Gasoline', ['1.A.3.b.iv', 'Gasoline'], 3],
  790. ['Diesel oil', ['1.A.3.b.iv', 'DieselOil'], 3],
  791. ['Liquefied petroleum gases (LPG)', ['1.A.3.b.iv', 'LPG'], 3],
  792. ['Other liquid fuels (please specify)', ['1.A.3.b.iv', 'OtherLiquid'], 3],
  793. ['Kerosene', ['1.A.3.b.iv', 'Kerosene'], 4], # UKR (and probably others)
  794. ['Lubricants', ['1.A.3.b.iv', 'Lubricants'], 4], # UKR, JPN, HRV
  795. ['Lubricant Oil', ['1.A.3.b.iv', 'Lubricants'], 4], # PRT
  796. ['Other', ['1.A.3.b.iv', 'OLOther'], 4], # UKR (and probably others)
  797. ['Other Liquid Fuels', ['1.A.3.b.iv', 'OLOther'], 4], # CYP
  798. ['Lube', ['1.A.3.b.iv', 'Lubricants'], 4], # MCO
  799. ['Lubricants in 2-stroke engines', ['1.A.3.b.iv', 'Lubricants'], 4], # HUN
  800. ['Lubricants (two-stroke engines)', ['1.A.3.b.iv', 'Lubricants'], 4], # ESP
  801. ['lubricants', ['1.A.3.b.iv', 'Lubricants'], 4], # SVN
  802. ['Gaseous fuels', ['1.A.3.b.iv', 'Gaseous'], 3],
  803. ['Biomass(6)', ['1.A.3.b.iv', 'Biomass'], 3],
  804. ['Other fossil fuels (please specify)(4)', ['1.A.3.b.iv', 'OtherFF'], 3],
  805. ['Other Fossil Fuels', ['1.A.3.b.iv', 'OFFOther'], 4], # CYP
  806. ['Fossil part of biodiesel or biogasoline', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # PRT
  807. ['Fossil part of biodiesel and biogasoline', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # SWE
  808. ['fossil part of biofuels', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # CZE
  809. ['Fossil part of biodiesel', ['1.A.3.b.iv', 'OFFBiodieselFC'], 4], # BEL
  810. ['Fossil part of biogasoline', ['1.A.3.b.iv', 'OFFBiogasolineFC'], 4], # BEL
  811. ['Fossil part of biodiese', ['1.A.3.b.iv', 'OFFBiodieselFC'], 4], # LVA
  812. ['Fossil part of biofuel', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # IRL
  813. ['fossil part of biodiesel', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # HRV
  814. # v. Other
  815. ['v. Other (please specify)', ['1.A.3.b.v', 'Total'], 2],
  816. # TUR
  817. ['Road total', ['1.A.3.b.v.1', 'Total'], 3],
  818. ['Gasoline', ['1.A.3.b.v.1', 'Gasoline'], 4],
  819. ['Diesel Oil', ['1.A.3.b.v.1', 'DieselOil'], 4],
  820. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.1', 'LPG'], 4],
  821. ['Gaseous Fuels', ['1.A.3.b.v.1', 'Gaseous'], 4],
  822. ['Biomass', ['1.A.3.b.v.1', 'Biomass'], 4],
  823. # CYP
  824. ['Buses', ['1.A.3.b.v.2', 'Total'], 3],
  825. ['Gasoline', ['1.A.3.b.v.2', 'Gasoline'], 4],
  826. ['Diesel Oil', ['1.A.3.b.v.2', 'DieselOil'], 4],
  827. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.2', 'LPG'], 4],
  828. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.2', 'OtherLiquid'], 4],
  829. ['Gaseous Fuels', ['1.A.3.b.v.2', 'Gaseous'], 4],
  830. ['Biomass', ['1.A.3.b.v.2', 'Biomass'], 4],
  831. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.2', 'OtherFF'], 4],
  832. # GBK, GBR
  833. ['All vehicles - biofuel use', ['1.A.3.b.v.3', 'Total'], 3],
  834. ['Biomass', ['1.A.3.b.v.3', 'Biomass'], 4],
  835. ['All vehicles - LPG use', ['1.A.3.b.v.4', 'Total'], 4],
  836. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.4', 'LPG'], 4],
  837. ['All vehicles - biofuel use (fossil component)', ['1.A.3.b.v.5', 'Total'], 4],
  838. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.5', 'OtherFF'], 4],
  839. # CAN
  840. ['Propane and Natural Gas Vehicles', ['1.A.3.b.v.6', 'Total'], 3],
  841. ['Gasoline', ['1.A.3.b.v.6', 'Gasoline'], 4],
  842. ['Diesel Oil', ['1.A.3.b.v.6', 'DieselOil'], 4],
  843. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.6', 'LPG'], 4],
  844. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.6', 'OtherLiquid'], 4],
  845. ['Gaseous Fuels', ['1.A.3.b.v.6', 'Gaseous'], 4],
  846. ['Biomass', ['1.A.3.b.v.6', 'Biomass'], 4],
  847. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.6', 'OtherFF'], 4],
  848. # BEL
  849. ['Lubricant Two-Stroke Engines', ['1.A.3.b.v.7', 'Total'], 3],
  850. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.7', 'OtherLiquid'], 4],
  851. # ROU
  852. ['Gaseous Fuels', ['1.A.3.b.v.8', 'Total'], 3],
  853. ['Gaseous Fuels', ['1.A.3.b.v.8', 'Gaseous'], 4],
  854. ['Other Liquid Fuels', ['1.A.3.b.v.9', 'Total'], 3],
  855. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.9', 'OtherLiquid'], 4],
  856. ['Other Kerosene', ['1.A.3.b.v.9', 'Kerosene'], 5],
  857. ['Heating and Other Gasoil', ['1.A.3.b.v.9', 'HeatingGasoil'], 5],
  858. ['Biomass', ['1.A.3.b.v.10', 'Total'], 3],
  859. ['Biomass', ['1.A.3.b.v.10', 'Biomass'], 4],
  860. # DEU
  861. ['CO2 from lubricant co-incineration in 2-stroke road vehicles', ['1.A.3.b.v.7', 'Total'], 3],
  862. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.7', 'OtherLiquid'], 4],
  863. ['lubricant used in 2-stroke mix', ['1.A.3.b.v.7', 'Lubricants'], 5],
  864. # USA
  865. ['Evaporative Emissions', ['1.A.3.b.v.11', 'Total'], 3],
  866. ['Gasoline', ['1.A.3.b.v.11', 'Gasoline'], 4],
  867. ['Diesel Oil', ['1.A.3.b.v.11', 'DieselOil'], 4],
  868. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.11', 'LPG'], 4],
  869. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.11', 'OtherLiquid'], 4],
  870. ['Gaseous Fuels', ['1.A.3.b.v.11', 'Gaseous'], 4],
  871. ['Biomass', ['1.A.3.b.v.11', 'Biomass'], 4],
  872. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.11', 'OtherFF'], 4],
  873. # SVK
  874. ['Urea-based catalysts', ['1.A.3.b.v.12', 'Total'], 3],
  875. ['Diesel Oil', ['1.A.3.b.v.12', 'DieselOil'], 4],
  876. # ESP
  877. ['Other non-specified', ['1.A.3.b.v.13', 'Total'], 3],
  878. ['Gasoline', ['1.A.3.b.v.13', 'Gasoline'], 4],
  879. ['Diesel Oil', ['1.A.3.b.v.13', 'DieselOil'], 4],
  880. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.13', 'LPG'], 4],
  881. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.13', 'OtherLiquid'], 4],
  882. ['Gaseous Fuels', ['1.A.3.b.v.13', 'Gaseous'], 4],
  883. ['Biomass', ['1.A.3.b.v.13', 'Biomass'], 4],
  884. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.13', 'OtherFF'], 4],
  885. # BGR
  886. ['Urea', ['1.A.3.b.v.12', 'Total'], 3],
  887. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.12', 'OtherLiquid'], 4],
  888. ['Lubricants', ['1.A.3.b.v.7', 'Total'], 3],
  889. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.7', 'OtherLiquid'], 4],
  890. # c. Railways
  891. ['c. Railways', ['1.A.3.c', 'Total'], 1],
  892. ['Liquid fuels', ['1.A.3.c', 'Liquid'], 2],
  893. ['Solid fuels', ['1.A.3.c', 'Solid'], 2],
  894. ['Gaseous fuels', ['1.A.3.c', 'Gaseous'], 2],
  895. ['Biomass(6)', ['1.A.3.c', 'Biomass'], 2],
  896. ['Other fossil fuels (please specify)', ['1.A.3.c', 'OtherFF'], 2],
  897. ['Biodiesel (fossil component)', ['1.A.3.c', 'OFFBiodieselFC'], 3], # LUX
  898. ['Fossil part of biodiesel and biogasoline', ['1.A.3.c', 'OFFBiodieselFC'], 3], # SWE
  899. ['Fossil part of biodiesel', ['1.A.3.c', 'OFFBiodieselFC'], 3], # LVA, new in 2022
  900. ['Other fossil fuels', ['1.A.3.c', 'OFFOther'], 3], # ROU, new in 2022
  901. # d. Domestic navigation
  902. ['d. Domestic Navigation(10)', ['1.A.3.d', 'Total'], 1],
  903. ['Residual fuel oil', ['1.A.3.d', 'ResFuelOil'], 2],
  904. ['Gas/diesel oil', ['1.A.3.d', 'GasDieselOil'], 2],
  905. ['Gasoline', ['1.A.3.d', 'Gasoline'], 2],
  906. ['Other liquid fuels (please specify)', ['1.A.3.d', 'OtherLiquid'], 2],
  907. ['Lubricants', ['1.A.3.d', 'Lubricants'], 3], # UKR, JPN
  908. ['Biodiesel (5 percent fossil portion)', ['1.A.3.d', 'OLBiodieselFC'], 3], # CAN
  909. ['Light Fuel Oil', ['1.A.3.d', 'LightFuelOil'], 3], # CAN
  910. ['Kerosene and stove oil', ['1.A.3.d', 'KeroseStoveOil'], 3], # CAN
  911. ['Kerosene', ['1.A.3.d', 'Kerosene'], 3], # DKE, DNK
  912. ['Natural Gas Liquids', ['1.A.3.d', 'NGL'], 3], # DKE, DNK
  913. ['Fossil part of biodiesel', ['1.A.3.d', 'OLBiodieselFC'], 3], # LTU
  914. ['Other non-specified', ['1.A.3.d', 'OLOther'], 3], # SWE
  915. ['Other motor fuels', ['1.A.3.d', 'OMotorFuels'], 3], # RUS
  916. ['Fuel oil A', ['1.A.3.d', 'FuelOilA'], 3], # JPN
  917. ['Fuel oil B', ['1.A.3.d', 'FuelOilB'], 3], # JPN
  918. ['Fuel oil C', ['1.A.3.d', 'FuelOilC'], 3], # JPN
  919. ['Diesel Oil', ['1.A.3.d', 'OLDiesel'], 3], # FIN
  920. ['Other Liquid Fuels', ['1.A.3.d', 'OLOther'], 3], # ROU, new in 2022
  921. ['Gaseous fuels', ['1.A.3.d', 'Gaseous'], 2],
  922. ['Biomass(6)', ['1.A.3.d', 'Biomass'], 2],
  923. ['Other fossil fuels (please specify)(4)', ['1.A.3.d', 'OtherFF'], 2],
  924. ['Liquified natural gas', ['1.A.3.d', 'LNG'], 3], # DKE, DNK, DNM
  925. ['Biodiesel (fossil component)', ['1.A.3.d', 'OFFBiodieselFC'], 3], # LUX
  926. ['Coal', ['1.A.3.d', 'OFFCoal'], 3], # NZL, NDL
  927. ['fossil part of biodiesel', ['1.A.3.d', 'OFFBiodieselFC'], 3], # AUT
  928. ['Fossil part of biodiesel and biogasoline', ['1.A.3.d', 'OFFBioGasDieselFC'], 3], # SWE
  929. ['Solid Fuels', ['1.A.3.d', 'OFFSolid'], 3], # AUS
  930. ['Other Fossil Fuels', ['1.A.3.d', 'OFFOther'], 3], # ROU, new in 2022
  931. # e. other transportation
  932. # keep details also for top category as it's present
  933. ['e. Other transportation (please specify)', ['1.A.3.e', 'Total'], 1],
  934. ['Liquid fuels', ['1.A.3.e', 'Liquid'], 2],
  935. ['Solid fuels', ['1.A.3.e', 'Solid'], 2],
  936. ['Gaseous fuels', ['1.A.3.e', 'Gaseous'], 2],
  937. ['Other fossil fuels(4)', ['1.A.3.e', 'OtherFF'], 2],
  938. ['Biomass(6)', ['1.A.3.e', 'Biomass'], 2],
  939. # i. pipeline
  940. ['i. Pipeline transport', ['1.A.3.e.i', 'Total'], 2],
  941. ['Liquid fuels', ['1.A.3.e.i', 'Liquid'], 3],
  942. ['Solid fuels', ['1.A.3.e.i', 'Solid'], 3],
  943. ['Gaseous fuels', ['1.A.3.e.i', 'Gaseous'], 3],
  944. ['Other fossil fuels(4)', ['1.A.3.e.i', 'OtherFF'], 3],
  945. ['Biomass(6)', ['1.A.3.e.i', 'Biomass'], 3],
  946. # ii other
  947. ['ii. Other (please specify)', ['1.A.3.e.ii', 'Total'], 2],
  948. # UKR, SWE
  949. ['Off-road vehicles and other machinery', ['1.A.3.e.ii.1', 'Total'], 3],
  950. ['Liquid Fuels', ['1.A.3.e.ii.1', 'Liquid'], 4],
  951. ['Solid Fuels', ['1.A.3.e.ii.1', 'Solid'], 4],
  952. ['Gaseous Fuels', ['1.A.3.e.ii.1', 'Gaseous'], 4],
  953. ['Other Fossil Fuels', ['1.A.3.e.ii.1', 'OtherFF'], 4],
  954. ['Biomass', ['1.A.3.e.ii.1', 'Biomass'], 4],
  955. # GBR, GBK
  956. ['Aircraft support vehicles', ['1.A.3.e.ii.2', 'Total'], 3],
  957. ['Liquid Fuels', ['1.A.3.e.ii.2', 'Liquid'], 4],
  958. # CAN
  959. ['Off Road', ['1.A.3.e.ii.1', 'Total'], 3],
  960. ['Liquid Fuels', ['1.A.3.e.ii.1', 'Liquid'], 4],
  961. ['Solid Fuels', ['1.A.3.e.ii.1', 'Solid'], 4],
  962. ['Gaseous Fuels', ['1.A.3.e.ii.1', 'Gaseous'], 4],
  963. ['Other Fossil Fuels', ['1.A.3.e.ii.1', 'OtherFF'], 4],
  964. ['Biomass', ['1.A.3.e.ii.1', 'Biomass'], 4],
  965. # LTU
  966. ['Off-road transport', ['1.A.3.e.ii.1', 'Total'], 3],
  967. ['Liquid Fuels', ['1.A.3.e.ii.1', 'Liquid'], 4],
  968. ['Solid Fuels', ['1.A.3.e.ii.1', 'Solid'], 4],
  969. ['Gaseous Fuels', ['1.A.3.e.ii.1', 'Gaseous'], 4],
  970. ['Other Fossil Fuels', ['1.A.3.e.ii.1', 'OtherFF'], 4],
  971. ['Biomass', ['1.A.3.e.ii.1', 'Biomass'], 4],
  972. # BEL
  973. ['Other non-specified', ['1.A.3.e.ii.3', 'Total'], 3],
  974. ['Liquid Fuels', ['1.A.3.e.ii.3', 'Liquid'], 4],
  975. ['Solid Fuels', ['1.A.3.e.ii.3', 'Solid'], 4],
  976. ['Gaseous Fuels', ['1.A.3.e.ii.3', 'Gaseous'], 4],
  977. ['Other Fossil Fuels', ['1.A.3.e.ii.3', 'OtherFF'], 4],
  978. ['Biomass', ['1.A.3.e.ii.3', 'Biomass'], 4],
  979. # AUS
  980. ['Off-Road Vehicles', ['1.A.3.e.ii.1', 'Total'], 3],
  981. ['Liquid Fuels', ['1.A.3.e.ii.1', 'Liquid'], 4],
  982. ['Solid Fuels', ['1.A.3.e.ii.1', 'Solid'], 4],
  983. ['Gaseous Fuels', ['1.A.3.e.ii.1', 'Gaseous'], 4],
  984. ['Other Fossil Fuels', ['1.A.3.e.ii.1', 'OtherFF'], 4],
  985. ['Biomass', ['1.A.3.e.ii.1', 'Biomass'], 4],
  986. # USA
  987. ['Non-Transportation Mobile', ['1.A.3.e.ii.4', 'Total'], 3],
  988. ['Liquid Fuels', ['1.A.3.e.ii.4', 'Liquid'], 4],
  989. ['Solid Fuels', ['1.A.3.e.ii.4', 'Solid'], 4],
  990. ['Gaseous Fuels', ['1.A.3.e.ii.4', 'Gaseous'], 4],
  991. ['Other Fossil Fuels', ['1.A.3.e.ii.4', 'OtherFF'], 4],
  992. ['Biomass', ['1.A.3.e.ii.4', 'Biomass'], 4],
  993. # AUT (new in 2022)
  994. ['Airport ground activities', ['1.A.3.e.ii.2', 'Total'], 3],
  995. ['Liquid Fuels', ['1.A.3.e.ii.4', 'Liquid'], 4],
  996. ['Gaseous Fuels', ['1.A.3.e.ii.4', 'Gaseous'], 4],
  997. ['Other Fossil Fuels', ['1.A.3.e.ii.4', 'OtherFF'], 4],
  998. ['Biomass', ['1.A.3.e.ii.4', 'Biomass'], 4],
  999. # ROU, new in 2022
  1000. ['Other', ['1.A.3.e.ii.3', 'Total'], 3],
  1001. ['Liquid Fuels', ['1.A.3.e.ii.3', 'Liquid'], 4],
  1002. ['Solid Fuels', ['1.A.3.e.ii.3', 'Solid'], 4],
  1003. ['Gaseous Fuels', ['1.A.3.e.ii.3', 'Gaseous'], 4],
  1004. ['Other Fossil Fuels', ['1.A.3.e.ii.3', 'OtherFF'], 4],
  1005. ['Biomass', ['1.A.3.e.ii.3', 'Biomass'], 4],
  1006. ],
  1007. "entity_mapping": {
  1008. 'EMISSIONS CH4': "CH4",
  1009. 'EMISSIONS CO2(2)': "CO2",
  1010. 'EMISSIONS N2O': "N2O",
  1011. },
  1012. }, # tested
  1013. "Table1.A(a)s4": {
  1014. "status": "tested",
  1015. "table": {
  1016. "firstrow": 5,
  1017. "lastrow": 127,
  1018. "header": ['group', 'entity', 'entity', 'unit'],
  1019. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1020. "categories": ["category", "class"],
  1021. "cols_to_ignore": [
  1022. 'AGGREGATE ACTIVITY DATA Consumption',
  1023. 'AGGREGATE ACTIVITY DATA Consumption',
  1024. 'IMPLIED EMISSION FACTORS CO2(1)',
  1025. 'IMPLIED EMISSION FACTORS CH4',
  1026. 'IMPLIED EMISSION FACTORS N2O',
  1027. 'EMISSIONS CO2 Amount captured',
  1028. ],
  1029. "stop_cats": ["", np.nan],
  1030. "unit_info": unit_info["default"],
  1031. },
  1032. "sector_mapping": [
  1033. ['1.A.4 Other sectors', ['1.A.4', 'Total'], 0],
  1034. ['Liquid fuels', ['1.A.4', 'Liquid'], 1],
  1035. ['Solid fuels', ['1.A.4', 'Solid'], 1],
  1036. ['Gaseous fuels', ['1.A.4', 'Gaseous'], 1],
  1037. ['Other fossil fuels(4)', ['1.A.4', 'OtherFF'], 1],
  1038. ['Peat(5)', ['1.A.4', 'Peat'], 1],
  1039. ['Biomass(6)', ['1.A.4', 'Biomass'], 1],
  1040. # a. Commercial/institutional(12)
  1041. ['a. Commercial/institutional(12)', ['1.A.4.a', 'Total'], 1],
  1042. ['Liquid fuels', ['1.A.4.a', 'Liquid'], 2],
  1043. ['Solid fuels', ['1.A.4.a', 'Solid'], 2],
  1044. ['Gaseous fuels', ['1.A.4.a', 'Gaseous'], 2],
  1045. ['Other fossil fuels(4)', ['1.A.4.a', 'OtherFF'], 2],
  1046. ['Peat(5)', ['1.A.4.a', 'Peat'], 2],
  1047. ['Biomass(6)', ['1.A.4.a', 'Biomass'], 2],
  1048. # 1.A.4.a.i Stationary combustion
  1049. ['1.A.4.a.i Stationary combustion', ['1.A.4.a.i', 'Total'], 2],
  1050. ['Liquid Fuels', ['1.A.4.a.i', 'Liquid'], 3],
  1051. ['Solid Fuels', ['1.A.4.a.i', 'Solid'], 3],
  1052. ['Gaseous Fuels', ['1.A.4.a.i', 'Gaseous'], 3],
  1053. ['Other Fossil Fuels', ['1.A.4.a.i', 'OtherFF'], 3],
  1054. ['Peat', ['1.A.4.a.i', 'Peat'], 3],
  1055. ['Biomass', ['1.A.4.a.i', 'Biomass'], 3],
  1056. # 1.A.4.a.ii Off-road vehicles and other machinery
  1057. ['1.A.4.a.ii Off-road vehicles and other machinery', ['1.A.4.a.ii', 'Total'], 2],
  1058. ['Liquid Fuels', ['1.A.4.a.ii', 'Liquid'], 3],
  1059. ['Solid Fuels', ['1.A.4.a.ii', 'Solid'], 3],
  1060. ['Gaseous Fuels', ['1.A.4.a.ii', 'Gaseous'], 3],
  1061. ['Other Fossil Fuels', ['1.A.4.a.ii', 'OtherFF'], 3],
  1062. ['Biomass', ['1.A.4.a.ii', 'Biomass'], 3],
  1063. # 1.A.4.a.iii Other (please specify)
  1064. ['1.A.4.a.iii Other (please specify)', ['1.A.4.a.iii', 'Total'], 2],
  1065. ['Liquid Fuels', ['1.A.4.a.iii', 'Liquid'], 3],
  1066. ['Solid Fuels', ['1.A.4.a.iii', 'Solid'], 3],
  1067. ['Gaseous Fuels', ['1.A.4.a.iii', 'Gaseous'], 3],
  1068. ['Other Fossil Fuels', ['1.A.4.a.iii', 'OtherFF'], 3],
  1069. ['Peat', ['1.A.4.a.iii', 'Peat'], 3],
  1070. ['Biomass', ['1.A.4.a.iii', 'Biomass'], 3],
  1071. # b. Residential(13)
  1072. ['b. Residential(13)', ['1.A.4.b', 'Total'], 1],
  1073. ['Liquid fuels', ['1.A.4.b', 'Liquid'], 2],
  1074. ['Solid fuels', ['1.A.4.b', 'Solid'], 2],
  1075. ['Gaseous fuels', ['1.A.4.b', 'Gaseous'], 2],
  1076. ['Other fossil fuels(4)', ['1.A.4.b', 'OtherFF'], 2],
  1077. ['Peat(5)', ['1.A.4.b', 'Peat'], 2],
  1078. ['Biomass(6)', ['1.A.4.b', 'Biomass'], 2],
  1079. # 1.A.4.b.i Stationary combustion
  1080. ['1.A.4.b.i Stationary combustion', ['1.A.4.b.i', 'Total'], 2],
  1081. ['Liquid Fuels', ['1.A.4.b.i', 'Liquid'], 3],
  1082. ['Solid Fuels', ['1.A.4.b.i', 'Solid'], 3],
  1083. ['Gaseous Fuels', ['1.A.4.b.i', 'Gaseous'], 3],
  1084. ['Other Fossil Fuels', ['1.A.4.b.i', 'OtherFF'], 3],
  1085. ['Peat', ['1.A.4.b.i', 'Peat'], 3],
  1086. ['Biomass', ['1.A.4.b.i', 'Biomass'], 3],
  1087. # 1.A.4.b.ii Off-road vehicles and other machinery
  1088. ['1.A.4.b.ii Off-road vehicles and other machinery', ['1.A.4.b.ii', 'Total'], 2],
  1089. ['Liquid Fuels', ['1.A.4.b.ii', 'Liquid'], 3],
  1090. ['Solid Fuels', ['1.A.4.b.ii', 'Solid'], 3],
  1091. ['Gaseous Fuels', ['1.A.4.b.ii', 'Gaseous'], 3],
  1092. ['Other Fossil Fuels', ['1.A.4.b.ii', 'OtherFF'], 3],
  1093. ['Biomass', ['1.A.4.b.ii', 'Biomass'], 3],
  1094. # 1.A.4.b.iii Other (please specify)
  1095. ['1.A.4.b.iii Other (please specify)', ['1.A.4.b.iii', 'Total'], 2],
  1096. # CYP, USA
  1097. ['Residential', ['1.A.4.b.iii.1', 'Total'], 3],
  1098. ['Liquid Fuels', ['1.A.4.b.iii.1', 'Liquid'], 3],
  1099. ['Solid Fuels', ['1.A.4.b.iii.1', 'Solid'], 3],
  1100. ['Gaseous Fuels', ['1.A.4.b.iii.1', 'Gaseous'], 3],
  1101. ['Other Fossil Fuels', ['1.A.4.b.iii.1', 'OtherFF'], 3],
  1102. ['Peat', ['1.A.4.b.iii.1', 'Peat'], 3],
  1103. ['Biomass', ['1.A.4.b.iii.1', 'Biomass'], 3],
  1104. # c. Agriculture/forestry/fishing
  1105. ['c. Agriculture/forestry/fishing', ['1.A.4.c', 'Total'], 1],
  1106. ['Liquid fuels', ['1.A.4.c', 'Liquid'], 2],
  1107. ['Solid fuels', ['1.A.4.c', 'Solid'], 2],
  1108. ['Gaseous fuels', ['1.A.4.c', 'Gaseous'], 2],
  1109. ['Other fossil fuels(4)', ['1.A.4.c', 'OtherFF'], 2],
  1110. ['Peat(5)', ['1.A.4.c', 'Peat'], 2],
  1111. ['Biomass(6)', ['1.A.4.c', 'Biomass'], 2],
  1112. # i. Stationary
  1113. ['i. Stationary', ['1.A.4.c.i', 'Total'], 2],
  1114. ['Liquid fuels', ['1.A.4.c.i', 'Liquid'], 3],
  1115. ['Solid fuels', ['1.A.4.c.i', 'Solid'], 3],
  1116. ['Gaseous fuels', ['1.A.4.c.i', 'Gaseous'], 3],
  1117. ['Other fossil fuels(4)', ['1.A.4.c.i', 'OtherFF'], 3],
  1118. ['Peat(5)', ['1.A.4.c.i', 'Peat'], 3],
  1119. ['Biomass(6)', ['1.A.4.c.i', 'Biomass'], 3],
  1120. # ii. Off-road vehicles and other machinery
  1121. ['ii. Off-road vehicles and other machinery', ['1.A.4.c.ii', 'Total'], 2],
  1122. ['Gasoline', ['1.A.4.c.ii', 'Gasoline'], 3],
  1123. ['Diesel oil', ['1.A.4.c.ii', 'DieselOil'], 3],
  1124. ['Liquefied petroleum gases (LPG)', ['1.A.4.c.ii', 'LPG'], 3],
  1125. ['Other liquid fuels (please specify)', ['1.A.4.c.ii', 'OtherLiquid'], 3],
  1126. ['Other Kerosene', ['1.A.4.c.ii', 'Kerosene'], 4], # HRV
  1127. ['Lubricants', ['1.A.4.c.ii', 'Lubricants'], 4], # HRV
  1128. ['Gasoil', ['1.A.4.c.ii', 'Gasoil'], 4], # FIN
  1129. ['Marine gasoil', ['1.A.4.c.ii', 'MarineGasoil'], 4], # NOR
  1130. ['heavy fuel oil', ['1.A.4.c.ii', 'HeavyFuelOil'], 4], # NOR
  1131. ['Other motor fuels', ['1.A.4.c.ii', 'OMotorFuels'], 4], # RUS
  1132. ['Biodiesel (5 percent fossil portion)', ['1.A.4.c.ii', 'OLBiodieselFC'], 4], # CAN
  1133. ['Gaseous fuels', ['1.A.4.c.ii', 'Gaseous'], 3],
  1134. ['Biomass(6)', ['1.A.4.c.ii', 'Biomass'], 3],
  1135. ['Other fossil fuels (please specify)(4)', ['1.A.4.c.ii', 'OtherFF'], 3],
  1136. ['fossil part of biodiesel', ['1.A.4.c.ii', 'OFFBiodieselFC'], 4],
  1137. ['Fossil part of biodiesel and biogasoline', ['1.A.4.c.ii', 'OFFBiofuelFC'], 4],
  1138. ['Biodiesel (fossil component)', ['1.A.4.c.ii', 'OFFBiodieselFC'], 4], # LUX
  1139. ['Alkylate Gasoline', ['1.A.4.c.ii', 'OFFAlkylateGasoline'], 4], # LIE
  1140. # iii. Fishing
  1141. ['iii. Fishing', ['1.A.4.c.iii', 'Total'], 2],
  1142. ['Residual fuel oil', ['1.A.4.c.iii', 'ResFuelOil'], 3],
  1143. ['Gas/diesel oil', ['1.A.4.c.iii', 'GasDieselOil'], 3],
  1144. ['Gasoline', ['1.A.4.c.iii', 'Gasoline'], 3],
  1145. ['Other liquid fuels (please specify)', ['1.A.4.c.iii', 'OtherLiquid'], 3],
  1146. ['Biodiesel (5 percent fossil portion)', ['1.A.4.c.iii', 'OLBiodieselFC'], 4], # CAN
  1147. ['Gaseous fuels', ['1.A.4.c.iii', 'Gaseous'], 3],
  1148. ['Biomass(6)', ['1.A.4.c.iii', 'Biomass'], 3],
  1149. ['Other fossil fuels (please specify)(4)', ['1.A.4.c.iii', 'OtherFF'], 3],
  1150. ['Fossil part of biodiesel and biogasoline', ['1.A.4.c.iii', 'OFFBiofuelFC'], 3],
  1151. # 1.A.5 Other (Not specified elsewhere)(14)
  1152. ['1.A.5 Other (Not specified elsewhere)(14)', ['1.A.5', 'Total'], 0],
  1153. # a. Stationary (please specify)
  1154. ['a. Stationary (please specify)', ['1.A.5.a', 'Total'], 1],
  1155. # temp
  1156. ['Liquid Fuels', ['1.A.5.a', 'Liquid'], 2],
  1157. ['Solid Fuels', ['1.A.5.a', 'Solid'], 2],
  1158. ['Gaseous Fuels', ['1.A.5.a', 'Gaseous'], 2],
  1159. ['Other Fossil Fuels', ['1.A.5.a', 'OtherFF'], 2],
  1160. ['Peat', ['1.A.5.a', 'Peat'], 2],
  1161. ['Biomass', ['1.A.5.a', 'Biomass'], 2],
  1162. # temp
  1163. # GBK, GBR
  1164. ['Military fuel use', ['1.A.5.a.i', 'Total'], 2],
  1165. ['Liquid Fuels', ['1.A.5.a.i', 'Liquid'], 3],
  1166. ['Solid Fuels', ['1.A.5.a.i', 'Solid'], 3],
  1167. ['Gaseous Fuels', ['1.A.5.a.i', 'Gaseous'], 3],
  1168. ['Other Fossil Fuels', ['1.A.5.a.i', 'OtherFF'], 3],
  1169. ['Peat', ['1.A.5.a.i', 'Peat'], 3],
  1170. ['Biomass', ['1.A.5.a.i', 'Biomass'], 3],
  1171. # TUR
  1172. ['Liquid fuels', ['1.A.5.a', 'Liquid'], 2],
  1173. # ESP, FIN, SWE
  1174. ['Other non-specified', ['1.A.5.a.ii', 'Total'], 2],
  1175. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1176. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1177. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1178. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1179. ['Peat', ['1.A.5.a.ii', 'Peat'], 3],
  1180. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1181. # ROU, SVK, RUS
  1182. ['Other', ['1.A.5.a.ii', 'Total'], 2],
  1183. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1184. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1185. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1186. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1187. ['Peat', ['1.A.5.a.ii', 'Peat'], 3],
  1188. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1189. # FRA, FRK
  1190. ['Other not specified', ['1.A.5.a.ii', 'Total'], 2],
  1191. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1192. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1193. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1194. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1195. ['Peat', ['1.A.5.a.ii', 'Peat'], 3],
  1196. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1197. # CYP
  1198. ['Other (not specified elsewhere)', ['1.A.5.a.ii', 'Total'], 2],
  1199. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1200. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1201. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1202. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1203. ['Peat', ['1.A.5.a.ii', 'Peat'], 3],
  1204. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1205. # NOR, HUN
  1206. ['Military', ['1.A.5.a.i', 'Total'], 2],
  1207. ['Liquid Fuels', ['1.A.5.a.i', 'Liquid'], 3],
  1208. ['Solid Fuels', ['1.A.5.a.i', 'Solid'], 3],
  1209. ['Gaseous Fuels', ['1.A.5.a.i', 'Gaseous'], 3],
  1210. ['Other Fossil Fuels', ['1.A.5.a.i', 'OtherFF'], 3],
  1211. ['Peat', ['1.A.5.a.i', 'Peat'], 3],
  1212. ['Biomass', ['1.A.5.a.i', 'Biomass'], 3],
  1213. ['Non-fuel Use', ['1.A.5.a.iii', 'Total'], 2],
  1214. ['Liquid Fuels', ['1.A.5.a.iii', 'Liquid'], 3],
  1215. # DNM, DKE, DNK
  1216. ['Other stationary combustion', ['1.A.5.a.ii', 'Total'], 2],
  1217. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1218. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1219. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1220. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1221. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1222. # LUX
  1223. ['Stationary', ['1.A.5.a.ii', 'Total'], 2],
  1224. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1225. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1226. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1227. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1228. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1229. # USA
  1230. ['Incineration of Waste', ['1.A.5.a.iv', 'Total'], 2],
  1231. ['Liquid Fuels', ['1.A.5.a.iv', 'Liquid'], 3],
  1232. ['Solid Fuels', ['1.A.5.a.iv', 'Solid'], 3],
  1233. ['Gaseous Fuels', ['1.A.5.a.iv', 'Gaseous'], 3],
  1234. ['Other Fossil Fuels', ['1.A.5.a.iv', 'OtherFF'], 3],
  1235. ['Peat', ['1.A.5.a.iv', 'Peat'], 3],
  1236. ['Biomass', ['1.A.5.a.iv', 'Biomass'], 3],
  1237. ['U.S. Territories', ['1.A.5.a.v', 'Total'], 2],
  1238. ['Liquid Fuels', ['1.A.5.a.v', 'Liquid'], 3],
  1239. ['Solid Fuels', ['1.A.5.a.v', 'Solid'], 3],
  1240. ['Gaseous Fuels', ['1.A.5.a.v', 'Gaseous'], 3],
  1241. ['Other Fossil Fuels', ['1.A.5.a.v', 'OtherFF'], 3],
  1242. ['Peat', ['1.A.5.a.v', 'Peat'], 3],
  1243. ['Biomass', ['1.A.5.a.v', 'Biomass'], 3],
  1244. ['Non Energy Use', ['1.A.5.a.iii', 'Total'], 2],
  1245. ['Liquid Fuels', ['1.A.5.a.iii', 'Liquid'], 3],
  1246. ['Solid Fuels', ['1.A.5.a.iii', 'Solid'], 3],
  1247. ['Gaseous Fuels', ['1.A.5.a.iii', 'Gaseous'], 3],
  1248. ['Other Fossil Fuels', ['1.A.5.a.iii', 'OtherFF'], 3],
  1249. ['Peat', ['1.A.5.a.iii', 'Peat'], 3],
  1250. ['Biomass', ['1.A.5.a.iii', 'Biomass'], 3],
  1251. # b. Mobile (please specify)
  1252. ['b. Mobile (please specify)', ['1.A.5.b', 'Total'], 1],
  1253. # temp
  1254. ['Liquid Fuels', ['1.A.5.b', 'Liquid'], 2],
  1255. ['Solid Fuels', ['1.A.5.b', 'Solid'], 2],
  1256. ['Gaseous Fuels', ['1.A.5.b', 'Gaseous'], 2],
  1257. ['Other Fossil Fuels', ['1.A.5.b', 'OtherFF'], 2],
  1258. ['Biomass', ['1.A.5.b', 'Biomass'], 2],
  1259. # temp
  1260. # GBK, GBR
  1261. ['Military aviation and naval shipping', ['1.A.5.b.i', 'Total'], 2],
  1262. ['Liquid Fuels', ['1.A.5.b.i', 'Liquid'], 3],
  1263. # HRV
  1264. ['Military aviation component', ['1.A.5.b.ii', 'Total'], 2],
  1265. ['Liquid Fuels', ['1.A.5.b.ii', 'Liquid'], 3],
  1266. ['Solid Fuels', ['1.A.5.b.ii', 'Solid'], 3],
  1267. ['Gaseous Fuels', ['1.A.5.b.ii', 'Gaseous'], 3],
  1268. ['Other Fossil Fuels', ['1.A.5.b.ii', 'OtherFF'], 3],
  1269. ['Biomass', ['1.A.5.b.ii', 'Biomass'], 3],
  1270. ['Military water-borne component', ['1.A.5.b.iii', 'Total'], 2],
  1271. ['Liquid Fuels', ['1.A.5.b.iii', 'Liquid'], 3],
  1272. ['Solid Fuels', ['1.A.5.b.iii', 'Solid'], 3],
  1273. ['Gaseous Fuels', ['1.A.5.b.iii', 'Gaseous'], 3],
  1274. ['Other Fossil Fuels', ['1.A.5.b.iii', 'OtherFF'], 3],
  1275. ['Biomass', ['1.A.5.b.iii', 'Biomass'], 3],
  1276. # ESP, FIN
  1277. ['Other non-specified', ['1.A.5.b.iv', 'Total'], 2],
  1278. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1279. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1280. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1281. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1282. ['Peat', ['1.A.5.b.iv', 'Peat'], 3],
  1283. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1284. # NLD, DKE, DNM, DNK, SWE, UKR
  1285. ['Military use', ['1.A.5.b.v', 'Total'], 2],
  1286. ['Liquid Fuels', ['1.A.5.b.v', 'Liquid'], 3],
  1287. ['Solid Fuels', ['1.A.5.b.v', 'Solid'], 3],
  1288. ['Gaseous Fuels', ['1.A.5.b.v', 'Gaseous'], 3],
  1289. ['Other Fossil Fuels', ['1.A.5.b.v', 'OtherFF'], 3],
  1290. ['Peat', ['1.A.5.b.v', 'Peat'], 3],
  1291. ['Biomass', ['1.A.5.b.v', 'Biomass'], 3],
  1292. # AUT, NOR, USA, CHE, HUN, LTU
  1293. ['Military', ['1.A.5.b.v', 'Total'], 2],
  1294. ['Liquid Fuels', ['1.A.5.b.v', 'Liquid'], 3],
  1295. ['Gaseous Fuels', ['1.A.5.b.v', 'Gaseous'], 3],
  1296. ['Other Fossil Fuels', ['1.A.5.b.v', 'OtherFF'], 3],
  1297. ['Biomass', ['1.A.5.b.v', 'Biomass'], 3],
  1298. # PRT
  1299. ['Military Aviation', ['1.A.5.b.ii', 'Total'], 2],
  1300. ['Liquid Fuels', ['1.A.5.b.ii', 'Liquid'], 3],
  1301. # ROU, MLT
  1302. ['Other', ['1.A.5.b.iv', 'Total'], 2],
  1303. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1304. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1305. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1306. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1307. ['Peat', ['1.A.5.b.iv', 'Peat'], 3],
  1308. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1309. # FRA, FRK
  1310. ['Other not specified', ['1.A.5.b.iv', 'Total'], 2],
  1311. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1312. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1313. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1314. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1315. ['Peat', ['1.A.5.b.iv', 'Peat'], 3],
  1316. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1317. # CYP
  1318. ['1A5b i Mobile (aviation component)', ['1.A.5.b.vi', 'Total'], 2],
  1319. ['Liquid Fuels', ['1.A.5.b.vi', 'Liquid'], 3],
  1320. # GBK, GBR
  1321. ['Lubricants used in 2-stroke engines', ['1.A.5.b.vii', 'Total'], 2],
  1322. ['Liquid Fuels', ['1.A.5.b.vii', 'Liquid'], 3],
  1323. # DNM, DKE, DNK
  1324. ['Recreational crafts', ['1.A.5.b.viii', 'Total'], 2],
  1325. ['Liquid Fuels', ['1.A.5.b.viii', 'Liquid'], 3],
  1326. ['Solid Fuels', ['1.A.5.b.viii', 'Solid'], 3],
  1327. ['Gaseous Fuels', ['1.A.5.b.viii', 'Gaseous'], 3],
  1328. ['Other Fossil Fuels', ['1.A.5.b.viii', 'OtherFF'], 3],
  1329. ['Biomass', ['1.A.5.b.viii', 'Biomass'], 3],
  1330. # SVK
  1331. ['Military use Jet Kerosene', ['1.A.5.b.ix', 'Total'], 2],
  1332. ['Liquid Fuels', ['1.A.5.b.ix', 'Liquid'], 3],
  1333. ['Military Gasoline', ['1.A.5.b.x', 'Total'], 2],
  1334. ['Liquid Fuels', ['1.A.5.b.x', 'Liquid'], 3],
  1335. ['Biomass', ['1.A.5.b.ix', 'Biomass'], 3],
  1336. ['Military Diesel Oil', ['1.A.5.b.xi', 'Total'], 2],
  1337. ['Liquid Fuels', ['1.A.5.b.xi', 'Liquid'], 3],
  1338. ['Biomass', ['1.A.5.b.xi', 'Biomass'], 3],
  1339. # BEL
  1340. ['Military Use', ['1.A.5.b.v', 'Total'], 2],
  1341. ['Liquid Fuels', ['1.A.5.b.v', 'Liquid'], 3],
  1342. ['Solid Fuels', ['1.A.5.b.v', 'Solid'], 3],
  1343. ['Gaseous Fuels', ['1.A.5.b.v', 'Gaseous'], 3],
  1344. ['Other Fossil Fuels', ['1.A.5.b.v', 'OtherFF'], 3],
  1345. ['Biomass', ['1.A.5.b.v', 'Biomass'], 3],
  1346. # AUS
  1347. ['Military Transport', ['1.A.5.b.xii', 'Total'], 2],
  1348. ['Liquid Fuels', ['1.A.5.b.xii', 'Liquid'], 3],
  1349. ['Solid Fuels', ['1.A.5.b.xii', 'Solid'], 3],
  1350. ['Gaseous Fuels', ['1.A.5.b.xii', 'Gaseous'], 3],
  1351. ['Other Fossil Fuels', ['1.A.5.b.xii', 'OtherFF'], 3],
  1352. ['Biomass', ['1.A.5.b.xii', 'Biomass'], 3],
  1353. # CZE
  1354. ['Agriculture and Forestry and Fishing', ['1.A.5.b.xiii', 'Total'], 2],
  1355. ['Liquid Fuels', ['1.A.5.b.xiii', 'Liquid'], 3],
  1356. ['Solid Fuels', ['1.A.5.b.xiii', 'Solid'], 3],
  1357. ['Gaseous Fuels', ['1.A.5.b.xiii', 'Gaseous'], 3],
  1358. ['Other Fossil Fuels', ['1.A.5.b.xiii', 'OtherFF'], 3],
  1359. ['Biomass', ['1.A.5.b.xiii', 'Biomass'], 3],
  1360. ['Other mobile sources not included elsewhere', ['1.A.5.b.iv', 'Total'], 2],
  1361. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1362. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1363. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1364. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1365. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1366. # SVN
  1367. ['Military use of fuels', ['1.A.5.b.v', 'Total'], 2],
  1368. ['Liquid Fuels', ['1.A.5.b.v', 'Liquid'], 3],
  1369. # LUX
  1370. ['Unspecified Mobile', ['1.A.5.b.iv', 'Total'], 2],
  1371. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1372. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1373. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1374. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1375. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1376. # LVA
  1377. ['Mobile', ['1.A.5.b.iv', 'Total'], 2],
  1378. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1379. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1380. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1381. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1382. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1383. # CAN
  1384. ['Domestic Military (Aviation)', ['1.A.5.b.ii', 'Total'], 2],
  1385. ['Liquid Fuels', ['1.A.5.b.ii', 'Liquid'], 3],
  1386. ['Solid Fuels', ['1.A.5.b.ii', 'Solid'], 3],
  1387. ['Gaseous Fuels', ['1.A.5.b.ii', 'Gaseous'], 3],
  1388. ['Other Fossil Fuels', ['1.A.5.b.ii', 'OtherFF'], 3],
  1389. ['Biomass', ['1.A.5.b.ii', 'Biomass'], 3],
  1390. ['Military Water-borne Navigation', ['1.A.5.b.iii', 'Total'], 2],
  1391. ['Liquid Fuels', ['1.A.5.b.iii', 'Liquid'], 3],
  1392. ['Solid Fuels', ['1.A.5.b.iii', 'Solid'], 3],
  1393. ['Gaseous Fuels', ['1.A.5.b.iii', 'Gaseous'], 3],
  1394. ['Other Fossil Fuels', ['1.A.5.b.iii', 'OtherFF'], 3],
  1395. ['Biomass', ['1.A.5.b.iii', 'Biomass'], 3],
  1396. # CZE, new in 2022
  1397. ['i. Mobile (aviation component)', ['1.A.5.b.vi', 'Total'], 2],
  1398. ['Liquid Fuels', ['1.A.5.b.vi', 'Liquid'], 3],
  1399. ['iii. Mobile (other)', ['1.A.5.b.iv', 'Total'], 2],
  1400. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1401. # Information Item
  1402. ['Information item:(15)', ['\IGNORE', '\IGNORE'], 0],
  1403. ['Waste incineration with energy recovery included as:', ['\IGNORE', '\IGNORE'], 1],
  1404. ['Biomass(6)', ['\IGNORE', '\IGNORE'], 1],
  1405. ['Fossil fuels(4)', ['\IGNORE', '\IGNORE'], 1],
  1406. ],
  1407. "entity_mapping": {
  1408. 'EMISSIONS CH4': "CH4",
  1409. 'EMISSIONS CO2(2)': "CO2",
  1410. 'EMISSIONS N2O': "N2O",
  1411. },
  1412. }, # tested
  1413. "Table1.B.1": {
  1414. "status": "tested",
  1415. "table": {
  1416. "firstrow": 5,
  1417. "lastrow": 19,
  1418. "header": ['group', 'entity', 'entity', 'unit'],
  1419. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1420. "categories": ["category"],
  1421. "cols_to_ignore": [
  1422. 'ACTIVITY DATA Amount of fuel produced',
  1423. 'IMPLIED EMISSION FACTORS CH4(1)',
  1424. 'IMPLIED EMISSION FACTORS CO2',
  1425. 'EMISSIONS CH4 Recovery/Flaring(2)',
  1426. ],
  1427. "stop_cats": ["", np.nan],
  1428. "unit_info": unit_info["default"],
  1429. },
  1430. "sector_mapping": [
  1431. ['1. B. 1. a. Coal mining and handling', ['1.B.1.a'], 0],
  1432. ['i. Underground mines(4)', ['1.B.1.a.i'], 1],
  1433. ['Mining activities', ['1.B.1.a.i.1'], 2],
  1434. ['Post-mining activities', ['1.B.1.a.i.2'], 2],
  1435. ['Abandoned underground mines', ['1.B.1.a.i.3'], 2],
  1436. ['ii. Surface mines(4)', ['1.B.1.a.ii'], 1],
  1437. ['Mining activities', ['1.B.1.a.ii.1'], 2],
  1438. ['Post-mining activities', ['1.B.1.a.ii.2'], 2],
  1439. ['1. B. 1. b. Solid fuel transformation(5)', ['1.B.1.b'], 0],
  1440. ['1. B. 1. c. Other (please specify)(6)', ['1.B.1.c'], 0],
  1441. ['Flaring', ['1.B.1.c.i'], 1], # UKR, AUS
  1442. ['Flaring of gas', ['1.B.1.c.i'], 1], # SWE
  1443. ['Coal Dumps', ['1.B.1.c.ii'], 1], # JPN
  1444. ['SO2 scrubbing', ['1.B.1.c.iii'], 1], # SVN
  1445. ['Flaring of coke oven gas', ['1.B.1.c.iv'], 1], # KAZ
  1446. ['Emisson from Coke Oven Gas Subsystem', ['1.B.1.c.iv'], 1], # POL
  1447. ['Other', ['1.B.1.c.v'], 1], # ROU, new in 2022
  1448. ],
  1449. "entity_mapping": {
  1450. 'EMISSIONS CH4 Emissions(3)': 'CH4',
  1451. 'EMISSIONS CO2 Emissions': 'CO2',
  1452. },
  1453. "coords_defaults": {
  1454. "class": "Total",
  1455. },
  1456. }, # tested
  1457. "Table1.B.2": {
  1458. "status": "tested",
  1459. "table": {
  1460. "firstrow": 5,
  1461. "lastrow": 33,
  1462. "header": ['group', 'entity', 'entity', 'unit'],
  1463. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1464. "categories": ["category"],
  1465. "cols_to_ignore": [
  1466. 'ACTIVITY DATA(1) Description(1)',
  1467. 'ACTIVITY DATA(1) Unit(1)',
  1468. 'ACTIVITY DATA(1) Value',
  1469. 'IMPLIED EMISSION FACTORS CO2(2)',
  1470. 'IMPLIED EMISSION FACTORS CH4',
  1471. 'IMPLIED EMISSION FACTORS N2O',
  1472. 'EMISSIONS CO2 Amount captured',
  1473. ],
  1474. "stop_cats": [".", np.nan],
  1475. "unit_info": unit_info["default"],
  1476. },
  1477. "sector_mapping": [
  1478. ['1. B. 2. a. Oil(6)', ['1.B.2.a'], 0],
  1479. ['1. Exploration', ['1.B.2.a.1'], 1],
  1480. ['2. Production(7)', ['1.B.2.a.2'], 1],
  1481. ['3. Transport', ['1.B.2.a.3'], 1],
  1482. ['4. Refining/storage', ['1.B.2.a.4'], 1],
  1483. ['5. Distribution of oil products', ['1.B.2.a.5'], 1],
  1484. ['6. Other', ['1.B.2.a.6'], 1],
  1485. ['1. B. 2. b. Natural gas', ['1.B.2.b'], 0],
  1486. ['1. Exploration', ['1.B.2.b.1'], 1],
  1487. ['2. Production(7)', ['1.B.2.b.2'], 1],
  1488. ['3. Processing', ['1.B.2.b.3'], 1],
  1489. ['4. Transmission and storage', ['1.B.2.b.4'], 1],
  1490. ['5. Distribution', ['1.B.2.b.5'], 1],
  1491. ['6. Other', ['1.B.2.b.6'], 1],
  1492. ['1. B. 2. c. Venting and flaring', ['1.B.2.c'], 0],
  1493. ['Venting', ['1.B.2.c-ven'], 1],
  1494. ['i. Oil', ['1.B.2.c-ven.i'], 2],
  1495. ['ii. Gas', ['1.B.2.c-ven.ii'], 2],
  1496. ['iii. Combined', ['1.B.2.c-ven.iii'], 2],
  1497. ['Flaring(8)', ['1.B.2.c-fla'], 1],
  1498. ['i. Oil', ['1.B.2.c-fla.i'], 2],
  1499. ['ii. Gas', ['1.B.2.c-fla.ii'], 2],
  1500. ['iii. Combined', ['1.B.2.c-fla.iii'], 2],
  1501. ['1.B.2.d. Other (please specify)(9)', ['1.B.2.d'], 0],
  1502. ['Groundwater extraction and CO2 mining', ['1.B.2.d.i'], 1], # HUN
  1503. ['Geothermal', ['1.B.2.d.ii'], 1], # NOR, DEU, PRT, NZL
  1504. ['Geothermal Energy', ['1.B.2.d.ii'], 1], # ISL
  1505. ['Geothermal Generation', ['1.B.2.d.ii'], 1], # JPN
  1506. ['Geotherm', ['1.B.2.d.ii'], 1], # ITA
  1507. ['City Gas Production', ['1.B.2.d.iii'], 1], # PRT
  1508. ['Other', ['1.B.2.d.iv'], 1], # UKR, ROU
  1509. ['Other non-specified', ['1.B.2.d.iv'], 1], # SWE
  1510. ['Flaring in refineries', ['1.B.2.d.v'], 1], # ITA
  1511. ['LPG transport', ['1.B.2.d.vi'], 1], # GRC
  1512. ['Distribution of town gas', ['1.B.2.d.vii'], 1], # FIN
  1513. ['Petrol distribution', ['1.B.2.d.viii'], 1], # IRL
  1514. ['Natural Gas Transport', ['1.B.2.d.ix'], 1], # BLR
  1515. ['Natural gas exploration - N2O emissions', ['1.B.2.d.x'], 1], # GBR, GBK
  1516. ['flue gas desulfurisation', ['1.B.2.d.xi'], 1], # GBR, GBK, new in 2022
  1517. ],
  1518. "entity_mapping": {
  1519. 'EMISSIONS CH4 (4) Amount captured': 'CH4',
  1520. 'EMISSIONS CO2 Emissions(3)': 'CO2',
  1521. 'EMISSIONS N2O Amount captured': 'N2O',
  1522. },
  1523. "coords_defaults": {
  1524. "class": "Total",
  1525. },
  1526. }, # tested
  1527. "Table1.C": {
  1528. "status": "tested",
  1529. "table": {
  1530. "firstrow": 5,
  1531. "lastrow": 24,
  1532. "header": ['group', 'entity', 'unit'],
  1533. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1534. "categories": ["category"],
  1535. "cols_to_ignore": [
  1536. 'ACTIVITY DATA CO2 transported or injected(1)',
  1537. 'IMPLIED EMISSION FACTORS CO2',
  1538. ],
  1539. "stop_cats": ["", np.nan],
  1540. "unit_info": unit_info["default"],
  1541. },
  1542. "sector_mapping": [
  1543. ['1. Transport of CO2', ['1.C.1']],
  1544. ['a. Pipelines', ['1.C.1.a']],
  1545. ['b. Ships', ['1.C.1.b']],
  1546. ['c. Other', ['1.C.1.c']],
  1547. ['2. Injection and storage(3)', ['1.C.2']],
  1548. ['a. Injection', ['1.C.2.a']],
  1549. ['b. Storage', ['1.C.2.b']],
  1550. ['3. Other', ['1.C.3']],
  1551. ['Information item(4, 5)', ['\IGNORE']],
  1552. ['Total amount captured for storage', ['M.Info.A.TACS']],
  1553. ['Total amount of imports for storage', ['M.Info.A.TAIS']],
  1554. ['Total A', ['M.Info.A']],
  1555. ['Total amount of exports for storage', ['M.Info.B.TAES']],
  1556. ['Total amount of CO2 injected at storage sites', ['M.Info.B.TAI']],
  1557. ['Total leakage from transport, injection and storage', ['M.Info.B.TLTIS']],
  1558. ['Total B', ['M.Info.B']],
  1559. ['Difference (A-B)(6)', ['\IGNORE']],
  1560. ],
  1561. "entity_mapping": {
  1562. 'EMISSIONS CO2(2)': 'CO2',
  1563. },
  1564. "coords_defaults": {
  1565. "class": "Total",
  1566. },
  1567. }, # tested
  1568. "Table1.D": {
  1569. "status": "TODO",
  1570. "table": {
  1571. "firstrow": 5,
  1572. "lastrow": 20,
  1573. "header": ['group', 'entity', 'unit'],
  1574. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1575. "categories": ["category", "class"],
  1576. "cols_to_ignore": [],
  1577. "stop_cats": ["", np.nan],
  1578. "unit_info": unit_info["default"],
  1579. },
  1580. "sector_mapping": [
  1581. ],
  1582. "entity_mapping": [],
  1583. "coords_defaults": {
  1584. "class": "Total",
  1585. },
  1586. }, # TODO
  1587. "Table2(I)s1": {
  1588. "status": "tested",
  1589. "table": {
  1590. "firstrow": 5,
  1591. "lastrow": 31,
  1592. "header": ['entity', 'unit'],
  1593. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1594. "categories": ["category"],
  1595. "cols_to_ignore": [],
  1596. "stop_cats": ["", np.nan],
  1597. "unit_info": unit_info["industry"],
  1598. },
  1599. "sector_mapping": [
  1600. ['Total industrial processes', ['2']],
  1601. ['A. Mineral industry', ['2.A']],
  1602. ['1. Cement production', ['2.A.1']],
  1603. ['2. Lime production', ['2.A.2']],
  1604. ['3. Glass production', ['2.A.3']],
  1605. ['4. Other process uses of carbonates', ['2.A.4']],
  1606. ['B. Chemical industry', ['2.B']],
  1607. ['1. Ammonia production', ['2.B.1']],
  1608. ['2. Nitric acid production', ['2.B.2']],
  1609. ['3. Adipic acid production', ['2.B.3']],
  1610. ['4. Caprolactam, glyoxal and glyoxylic acid production', ['2.B.4']],
  1611. ['5. Carbide production', ['2.B.5']],
  1612. ['6. Titanium dioxide production', ['2.B.6']],
  1613. ['7. Soda ash production', ['2.B.7']],
  1614. ['8. Petrochemical and carbon black production', ['2.B.8']],
  1615. ['9. Fluorochemical production', ['2.B.9']],
  1616. ['10. Other (as specified in table 2(I).A-H)', ['2.B.10']],
  1617. ['C. Metal industry', ['2.C']],
  1618. ['1. Iron and steel production', ['2.C.1']],
  1619. ['2. Ferroalloys production', ['2.C.2']],
  1620. ['3. Aluminium production', ['2.C.3']],
  1621. ['4. Magnesium production', ['2.C.4']],
  1622. ['5. Lead production', ['2.C.5']],
  1623. ['6. Zinc production', ['2.C.6']],
  1624. ['7. Other (as specified in table 2(I).A-H)', ['2.C.7']],
  1625. ],
  1626. "entity_mapping": {
  1627. 'HFCs(1)': 'HFCS (AR4GWP100)',
  1628. 'PFCs(1)': 'PFCS (AR4GWP100)',
  1629. 'Unspecified mix of HFCs and PFCs(1)': 'UnspMixOfHFCsPFCs (AR4GWP100)',
  1630. },
  1631. "coords_defaults": {
  1632. "class": "Total",
  1633. },
  1634. }, # tested
  1635. "Table2(I)s2": {
  1636. "status": "tested",
  1637. "table": {
  1638. "firstrow": 5,
  1639. "lastrow": 29,
  1640. "header": ['entity', 'unit'],
  1641. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1642. "categories": ["category"],
  1643. "cols_to_ignore": [],
  1644. "stop_cats": ["", np.nan],
  1645. "unit_info": unit_info["industry"],
  1646. },
  1647. "sector_mapping": [
  1648. ['D. Non-energy products from fuels and solvent use', ['2.D']],
  1649. ['1. Lubricant use', ['2.D.1']],
  1650. ['2. Paraffin wax use', ['2.D.2']],
  1651. ['3. Other', ['2.D.3']],
  1652. ['E. Electronics industry', ['2.E']],
  1653. ['1. Integrated circuit or semiconductor', ['2.E.1']],
  1654. ['2. TFT flat panel display', ['2.E.2']],
  1655. ['3. Photovoltaics', ['2.E.3']],
  1656. ['4. Heat transfer fluid', ['2.E.4']],
  1657. ['5. Other (as specified in table 2(II))', ['2.E.5']],
  1658. ['F. Product uses as substitutes for ODS(2)', ['2.F']],
  1659. ['1. Refrigeration and air conditioning', ['2.F.1']],
  1660. ['2. Foam blowing agents', ['2.F.2']],
  1661. ['3. Fire protection', ['2.F.3']],
  1662. ['4. Aerosols', ['2.F.4']],
  1663. ['5. Solvents', ['2.F.5']],
  1664. ['6. Other applications', ['2.F.6']],
  1665. ['G. Other product manufacture and use', ['2.G']],
  1666. ['1. Electrical equipment', ['2.G.1']],
  1667. ['2. SF6 and PFCs from other product use', ['2.G.2']],
  1668. ['3. N2O from product uses', ['2.G.3']],
  1669. ['4. Other', ['2.G.4']],
  1670. ['H. Other (as specified in tables 2(I).A-H and 2(II))(3)', ['2.H']],
  1671. ],
  1672. "entity_mapping": {
  1673. 'HFCs(1)': 'HFCS (AR4GWP100)',
  1674. 'PFCs(1)': 'PFCS (AR4GWP100)',
  1675. 'Unspecified mix of HFCs and PFCs(1)': 'UnspMixOfHFCsPFCs (AR4GWP100)',
  1676. },
  1677. "coords_defaults": {
  1678. "class": "Total",
  1679. },
  1680. }, # tested
  1681. "Table2(I).A-Hs1": {
  1682. "status": "TODO",
  1683. "table": {
  1684. "firstrow": 5,
  1685. "lastrow": 40,
  1686. "header": ['group', 'entity', 'entity', 'unit'],
  1687. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1688. "categories": ["category"],
  1689. "cols_to_ignore": [],
  1690. "stop_cats": ["", np.nan],
  1691. "unit_info": unit_info["default"],
  1692. },
  1693. "sector_mapping": [
  1694. ],
  1695. "entity_mapping": [],
  1696. "coords_defaults": {
  1697. "class": "Total",
  1698. },
  1699. }, # TODO
  1700. "Table2(I).A-Hs2": {
  1701. "status": "TODO",
  1702. "table": {
  1703. "firstrow": 5,
  1704. "lastrow": 36,
  1705. "header": ['group', 'entity', 'entity', 'unit'],
  1706. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1707. "categories": ["category"],
  1708. "cols_to_ignore": [],
  1709. "stop_cats": ["", np.nan],
  1710. "unit_info": unit_info["default"],
  1711. },
  1712. "sector_mapping": [
  1713. ],
  1714. "entity_mapping": [],
  1715. "coords_defaults": {
  1716. "class": "Total",
  1717. },
  1718. }, # TODO
  1719. "Table2(II)": {
  1720. "status": "tested",
  1721. "table": {
  1722. "firstrow": 5,
  1723. "lastrow": 38,
  1724. "header": ['entity', 'unit'],
  1725. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1726. "categories": ["category"],
  1727. "cols_to_ignore": [],
  1728. "stop_cats": [".", np.nan],
  1729. "unit_info": unit_info["fgases"],
  1730. },
  1731. "sector_mapping": [
  1732. ['Total actual emissions of halocarbons (by chemical) and SF6', ['2']],
  1733. ['B. Chemical industry', ['2.B']],
  1734. ['9. Flurochemical production', ['2.B.9']],
  1735. ['By-product emissions', ['2.B.9.a']],
  1736. ['Fugitive emissions', ['2.B.9.b']],
  1737. ['10. Other', ['2.B.10']],
  1738. ['C. Metal industry', ['2.C']],
  1739. ['3. Aluminium production', ['2.C.3']],
  1740. ['4. Magnesium production', ['2.C.4']],
  1741. ['7. Other', ['2.C.7']],
  1742. ['E. Electronics industry', ['2.E']],
  1743. ['1. Integrated circuit or semiconductor', ['2.E.1']],
  1744. ['2. TFT flat panel display', ['2.E.2']],
  1745. ['3. Photovoltaics', ['2.E.3']],
  1746. ['4. Heat transfer fluid', ['2.E.4']],
  1747. ['5. Other (as specified in table 2(II))', ['2.E.5']],
  1748. ['F. Product uses as substitutes for ODS(2)', ['2.F']],
  1749. ['1. Refrigeration and air conditioning', ['2.F.1']],
  1750. ['2. Foam blowing agents', ['2.F.2']],
  1751. ['3. Fire protection', ['2.F.3']],
  1752. ['4. Aerosols', ['2.F.4']],
  1753. ['5. Solvents', ['2.F.5']],
  1754. ['6. Other applications', ['2.F.6']],
  1755. ['G. Other product manufacture and use', ['2.G']],
  1756. ['1. Electrical equipment', ['2.G.1']],
  1757. ['2. SF6 and PFCs from other product use', ['2.G.2']],
  1758. ['4. Other', ['2.G.4']],
  1759. ['H. Other (please specify)', ['2.H']],
  1760. ['2.H.1 Pulp and paper', ['2.H.1']],
  1761. ['2.H.2 Food and beverages industry', ['2.H.2']],
  1762. ['2.H.3 Other (please specify)', ['2.H.3']],
  1763. ],
  1764. "entity_mapping": {
  1765. 'C 3F8': 'C3F8',
  1766. #'C10F18' 'C2F6' 'C4F10' 'C5F12' 'C6F14' 'CF4'
  1767. 'HFC-125': 'HFC125',
  1768. 'HFC-134': 'HFC134',
  1769. 'HFC-134a': 'HFC134a',
  1770. 'HFC-143': 'HFC143',
  1771. 'HFC-143a': 'HFC143a',
  1772. 'HFC-152': 'HFC152',
  1773. 'HFC-152a': 'HFC152a',
  1774. 'HFC-161': 'HFC161',
  1775. 'HFC-227ea': 'HFC227ea',
  1776. 'HFC-23': 'HFC23',
  1777. 'HFC-236cb': 'HFC236cb',
  1778. 'HFC-236ea': 'HFC236ea',
  1779. 'HFC-236fa': 'HFC236fa',
  1780. 'HFC-245ca': 'HFC245ca',
  1781. 'HFC-245fa': 'HFC245fa',
  1782. 'HFC-32': 'HFC32',
  1783. 'HFC-365mfc': 'HFC365mfc',
  1784. 'HFC-41': 'HFC41',
  1785. 'HFC-43-10mee': 'HFC4310mee',
  1786. 'Unspecified mix of HFCs (1)': 'UnspMixOfHFCs (AR4GWP100)',
  1787. 'Unspecified mix of HFCs and PFCs(1)': 'UnspMixOfHFCsPFCs (AR4GWP100)',
  1788. 'Unspecified mix of PFCs (1)': 'UnspMixOfPFCs (AR4GWP100)',
  1789. 'c-C3F6': 'cC3F6',
  1790. 'c-C4F8': 'cC4F8',
  1791. },
  1792. "coords_defaults": {
  1793. "class": "Total",
  1794. },
  1795. }, # tested
  1796. "Table3s1": { # Agriculture summary sheet 1
  1797. "status": "tested",
  1798. "table": {
  1799. "firstrow": 5,
  1800. "lastrow": 75,
  1801. "header": ['entity', 'unit'],
  1802. "col_for_categories": "GREENHOUSE GAS SOURCE AND",
  1803. "categories": ["category"],
  1804. "cols_to_ignore": [],
  1805. "stop_cats": ["", np.nan],
  1806. "unit_info": unit_info["default"],
  1807. },
  1808. "sector_mapping": [
  1809. ['3. Total agriculture', ['3'], 0],
  1810. # I. Livestock
  1811. ['I. Livestock', ['M.3.LV'], 1],
  1812. # A. Enteric fermentation
  1813. ['A. Enteric fermentation', ['3.A'], 2],
  1814. ['1. Cattle(1)', ['3.A.1'], 3],
  1815. ['Option A:', ['\IGNORE'], 4],
  1816. ['Dairy cattle', ['3.A.1.Aa'], 5],
  1817. ['Non-dairy cattle', ['3.A.1.Ab'], 5],
  1818. ['Option B:', ['\IGNORE'], 4],
  1819. ['Mature dairy cattle', ['3.A.1.Ba'], 5],
  1820. ['Other mature cattle', ['3.A.1.Bb'], 5],
  1821. ['Growing cattle', ['3.A.1.Bc'], 5],
  1822. ['Option C (country-specific):', ['\IGNORE'], 4],
  1823. # all countries not specified explcitly
  1824. ['\C!-AUS-MLT-LUX-POL-SVN-USA\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1825. # Australia
  1826. ['\C-AUS\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1827. ['\C-AUS\ Dairy Cattle', ['3.A.1.C-AUS-a'], 6],
  1828. ['\C-AUS\ Beef Cattle - Pasture', ['3.A.1.C-AUS-b'], 6],
  1829. ['\C-AUS\ Beef Cattle - Feedlot', ['3.A.1.C-AUS-c'], 6],
  1830. # malta
  1831. ['\C-MLT\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1832. ['\C-MLT\ dairy cows', ['3.A.1.C-MLT-a'], 6],
  1833. ['\C-MLT\ non-lactating cows', ['3.A.1.C-MLT-b'], 6],
  1834. ['\C-MLT\ bulls', ['3.A.1.C-MLT-c'], 6],
  1835. ['\C-MLT\ calves', ['3.A.1.C-MLT-d'], 6],
  1836. ['\C-MLT\ growing cattle 1-2 years', ['3.A.1.C-MLT-e'], 6],
  1837. # Luxembourg
  1838. ['\C-LUX\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1839. ['\C-LUX\ Bulls', ['3.A.1.C-LUX-a'], 6],
  1840. ['\C-LUX\ Calves', ['3.A.1.C-LUX-b'], 6],
  1841. ['\C-LUX\ Young Cattle', ['3.A.1.C-LUX-c'], 6],
  1842. ['\C-LUX\ Suckler Cows', ['3.A.1.C-LUX-d'], 6],
  1843. ['\C-LUX\ Bulls under 2 years', ['3.A.1.C-LUX-e'], 6],
  1844. ['\C-LUX\ Dairy Cows', ['3.A.1.C-LUX-f'], 6],
  1845. # Poland
  1846. ['\C-POL\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1847. ['\C-POL\ Bulls (older than 2 years)', ['3.A.1.C-POL-a'], 6],
  1848. ['\C-POL\ Non-dairy Heifers (older than 2 years)', ['3.A.1.C-POL-b'], 6],
  1849. ['\C-POL\ Non-dairy Young Cattle (younger than 1 year)', ['3.A.1.C-POL-c'], 6],
  1850. ['\C-POL\ Dairy Cattle', ['3.A.1.C-POL-d'], 6],
  1851. ['\C-POL\ Non-dairy Young Cattle (1-2 years)', ['3.A.1.C-POL-e'], 6],
  1852. # Slovenia
  1853. ['\C-SVN\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1854. ['\C-SVN\ Dairy cows', ['3.A.1.C-SVN-a'], 6],
  1855. ['\C-SVN\ Non-dairy cattle', ['3.A.1.C-SVN-b'], 6],
  1856. ['\C-SVN\ Other cows', ['3.A.1.C-SVN-c'], 6],
  1857. # USA
  1858. ['\C-USA\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1859. ['\C-USA\ Steer Stocker', ['3.A.1.C-USA-a'], 6],
  1860. ['\C-USA\ Heifer Stocker', ['3.A.1.C-USA-b'], 6],
  1861. ['\C-USA\ Beef Cows', ['3.A.1.C-USA-c'], 6],
  1862. ['\C-USA\ Dairy Replacements', ['3.A.1.C-USA-d'], 6],
  1863. ['\C-USA\ Beef Replacements', ['3.A.1.C-USA-e'], 6],
  1864. ['\C-USA\ Steer Feedlot', ['3.A.1.C-USA-f'], 6],
  1865. ['\C-USA\ Heifer Feedlot', ['3.A.1.C-USA-g'], 6],
  1866. ['\C-USA\ Bulls', ['3.A.1.C-USA-h'], 6],
  1867. ['\C-USA\ Dairy Cows', ['3.A.1.C-USA-i'], 6],
  1868. ['\C-USA\ Beef Calves', ['3.A.1.C-USA-j'], 6],
  1869. ['\C-USA\ Dairy Calves', ['3.A.1.C-USA-k'], 6],
  1870. # Other livestock
  1871. ['2. Sheep', ['3.A.2'], 3],
  1872. ['3. Swine', ['3.A.3'], 3],
  1873. ['4. Other livestock', ['3.A.4'], 3],
  1874. ['Buffalo', ['3.A.4.a'], 4],
  1875. ['Camels', ['3.A.4.b'], 4],
  1876. ['Deer', ['3.A.4.c'], 4],
  1877. ['Goats', ['3.A.4.d'], 4],
  1878. ['Horses', ['3.A.4.e'], 4],
  1879. ['Mules and Asses', ['3.A.4.f'], 4],
  1880. ['Poultry', ['3.A.4.g'], 4],
  1881. ['Other (please specify)', ['3.A.4.h'], 4],
  1882. ['Rabbit', ['3.A.4.h.i'], 5],
  1883. ['Reindeer', ['3.A.4.h.ii'], 5],
  1884. ['Ostrich', ['3.A.4.h.iii'], 5],
  1885. ['Fur-bearing Animals', ['3.A.4.h.iv'], 5],
  1886. ['Other', ['3.A.4.h.v'], 5],
  1887. # Manure Management
  1888. ['B. Manure management', ['3.B'], 2],
  1889. ['1. Cattle(1)', ['3.B.1'], 3],
  1890. ['Option A:', ['\IGNORE'], 4],
  1891. ['Dairy cattle', ['3.B.1.Aa'], 5],
  1892. ['Non-dairy cattle', ['3.B.1.Ab'], 5],
  1893. ['Option B:', ['\IGNORE'], 4],
  1894. ['Mature dairy cattle', ['3.B.1.Ba'], 5],
  1895. ['Other mature cattle', ['3.B.1.Bb'], 5],
  1896. ['Growing cattle', ['3.B.1.Bc'], 5],
  1897. ['Option C (country-specific):', ['\IGNORE'], 4],
  1898. # all countries not specified explicitly
  1899. ['\C!-AUS-MLT-LUX-POL-SVN-USA\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1900. # Australia
  1901. ['\C-AUS\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1902. ['\C-AUS\ Dairy Cattle', ['3.B.1.C-AUS-a'], 6],
  1903. ['\C-AUS\ Beef Cattle - Pasture', ['3.B.1.C-AUS-b'], 6],
  1904. ['\C-AUS\ Beef Cattle - Feedlot', ['3.B.1.C-AUS-c'], 6],
  1905. # Malta
  1906. ['\C-MLT\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1907. ['\C-MLT\ dairy cows', ['3.B.1.C-MLT-a'], 6],
  1908. ['\C-MLT\ non-lactating cows', ['3.B.1.C-MLT-b'], 6],
  1909. ['\C-MLT\ bulls', ['3.B.1.C-MLT-c'], 6],
  1910. ['\C-MLT\ calves', ['3.B.1.C-MLT-d'], 6],
  1911. ['\C-MLT\ growing cattle 1-2 years', ['3.B.1.C-MLT-e'], 6],
  1912. # Luxembourg
  1913. ['\C-LUX\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1914. ['\C-LUX\ Bulls', ['3.B.1.C-LUX-a'], 6],
  1915. ['\C-LUX\ Calves', ['3.B.1.C-LUX-b'], 6],
  1916. ['\C-LUX\ Young Cattle', ['3.B.1.C-LUX-c'], 6],
  1917. ['\C-LUX\ Suckler Cows', ['3.B.1.C-LUX-d'], 6],
  1918. ['\C-LUX\ Bulls under 2 years', ['3.B.1.C-LUX-e'], 6],
  1919. ['\C-LUX\ Dairy Cows', ['3.B.1.C-LUX-f'], 6],
  1920. # Poland
  1921. ['\C-POL\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1922. ['\C-POL\ Non-dairy Cattle', ['3.B.1.C-POL-a'], 6],
  1923. ['\C-POL\ Dairy Cattle', ['3.B.1.C-POL-b'], 6],
  1924. # Slovenia
  1925. ['\C-SVN\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1926. ['\C-SVN\ Dairy cows', ['3.B.1.C-SVN-a'], 6],
  1927. ['\C-SVN\ Non-dairy cattle', ['3.B.1.C-SVN-b'], 6],
  1928. ['\C-SVN\ Other cows', ['3.B.1.C-SVN-c'], 6],
  1929. # USA
  1930. ['\C-USA\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1931. ['\C-USA\ Dairy Cattle', ['\IGNORE'], 6],
  1932. ['\C-USA\ Non-Dairy Cattle', ['\IGNORE'], 6],
  1933. ['\C-USA\ Steer Stocker', ['3.B.1.C-USA-a'], 6],
  1934. ['\C-USA\ Heifer Stocker', ['3.B.1.C-USA-b'], 6],
  1935. ['\C-USA\ Beef Cows', ['3.B.1.C-USA-c'], 6],
  1936. ['\C-USA\ Dairy Replacements', ['3.B.1.C-USA-d'], 6],
  1937. ['\C-USA\ Beef Replacements', ['3.B.1.C-USA-e'], 6],
  1938. ['\C-USA\ Steer Feedlot', ['3.B.1.C-USA-f'], 6],
  1939. ['\C-USA\ Heifer Feedlot', ['3.B.1.C-USA-g'], 6],
  1940. ['\C-USA\ Bulls', ['3.B.1.C-USA-h'], 6],
  1941. ['\C-USA\ Dairy Cows', ['3.B.1.C-USA-i'], 6],
  1942. ['\C-USA\ Beef Calves', ['3.B.1.C-USA-j'], 6],
  1943. ['\C-USA\ Dairy Calves', ['3.B.1.C-USA-k'], 6],
  1944. # other animals
  1945. ['2. Sheep', ['3.B.2'], 3],
  1946. ['3. Swine', ['3.B.3'], 3],
  1947. ['4. Other livestock', ['3.B.4'], 3],
  1948. ['Buffalo', ['3.B.4.a'], 4],
  1949. ['Camels', ['3.B.4.b'], 4],
  1950. ['Deer', ['3.B.4.c'], 4],
  1951. ['Goats', ['3.B.4.d'], 4],
  1952. ['Horses', ['3.B.4.e'], 4],
  1953. ['Mules and Asses', ['3.B.4.f'], 4],
  1954. ['Poultry', ['3.B.4.g'], 4],
  1955. ['Other (please specify)', ['3.B.4.h'], 4],
  1956. ['Rabbit', ['3.B.4.h.i'], 5],
  1957. ['Reindeer', ['3.B.4.h.ii'], 5],
  1958. ['Ostrich', ['3.B.4.h.iii'], 5],
  1959. ['Fur-bearing Animals', ['3.B.4.h.iv'], 5],
  1960. ['Other', ['3.B.4.h.v'], 5],
  1961. ['5. Indirect N2O emissions', ['3.B.5'], 3],
  1962. ],
  1963. "coords_defaults": {
  1964. "class": "Total",
  1965. },
  1966. }, # tested
  1967. "Table3s2": { # Agriculture summary sheet 2
  1968. "status": "tested",
  1969. "table": {
  1970. "firstrow": 5,
  1971. "lastrow": 18,
  1972. "header": ['entity', 'unit'],
  1973. "col_for_categories": "GREENHOUSE GAS SOURCE AND",
  1974. "categories": ["category"],
  1975. "cols_to_ignore": [],
  1976. "stop_cats": [".", np.nan],
  1977. "unit_info": unit_info["default"],
  1978. },
  1979. "sector_mapping": [
  1980. ['C. Rice cultivation', ['3.C']],
  1981. ['D. Agricultural soils(2) (3) (4)', ['3.D']],
  1982. ['E. Prescribed burning of savannahs', ['3.E']],
  1983. ['E. Prescribed burning of savannas', ['3.E']],
  1984. ['F. Field burning of agricultural residues', ['3.F']],
  1985. ['G. Liming', ['3.G']],
  1986. ['H. Urea application', ['3.H']],
  1987. ['I. Other carbon-containing fertilizers', ['3.I']],
  1988. ['J. Other (please specify)', ['3.J']],
  1989. ['NOx from Manure Management', ['3.J.1']],
  1990. ['3.B NOx Emissions', ['3.J.1']],
  1991. ['NOx from 3B', ['3.J.1']],
  1992. ['NOX emissions from manure management', ['3.J.1']],
  1993. ['NOx from manure management', ['3.J.1']],
  1994. ['Other', ['3.J.2']],
  1995. ['Other UK emissions', ['3.J.2']],
  1996. ['Other non-specified', ['3.J.2']],
  1997. ['OTs and CDs - Livestock', ['3.J.3']],
  1998. ['OTs and CDs - soils', ['3.J.4']],
  1999. ['OTs and CDs - other', ['3.J.5']],
  2000. ['Digestate renewable raw material (storage of N)', ['3.J.6']],
  2001. ['Digestate renewable raw material (atmospheric deposition)', ['3.J.7']],
  2002. ['Digestate renewable raw material (storage of dry matter)', ['3.J.8']],
  2003. ['NOx from Livestock', ['3.J.9']],
  2004. ],
  2005. "coords_defaults": {
  2006. "class": "Total",
  2007. },
  2008. }, # tested
  2009. "Table3.C": { # rice cultivation details
  2010. "status": "tested",
  2011. "table": {
  2012. "firstrow": 5,
  2013. "lastrow": 21,
  2014. "header": ['group', 'entity', 'unit'],
  2015. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2016. "categories": ["category"],
  2017. "cols_to_ignore": [
  2018. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Harvested area(2)',
  2019. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Organic amendments added(3)',
  2020. 'IMPLIED EMISSION FACTOR (1) CH4',
  2021. ],
  2022. "stop_cats": ["", np.nan],
  2023. "unit_info": unit_info["default"],
  2024. },
  2025. "sector_mapping": [
  2026. ['1. Irrigated', ['3.C.1']],
  2027. ['Continuously flooded', ['3.C.1.a']],
  2028. ['Intermittently flooded Single aeration', ['3.C.1.a.i']],
  2029. ['Intermittently flooded Multiple aeration', ['3.C.1.b.ii']],
  2030. ['2. Rainfed', ['3.C.2']],
  2031. ['Flood prone', ['3.C.2.a']],
  2032. ['Drought prone', ['3.C.2.b']],
  2033. ['3. Deep water', ['3.C.3']],
  2034. ['Water depth 50–100 cm', ['3.C.3.a']],
  2035. ['Water depth > 100 cm', ['3.C.3.b']],
  2036. ['4. Other (please specify)', ['3.C.4']],
  2037. ['Non-specified', ['3.C.4.a']], # EST
  2038. ['Other', ['3.C.4.a']], # DEU
  2039. ['other', ['3.C.4.a']], # LVA
  2040. ['Other cultivation', ['3.C.4.a']], # CZE
  2041. ['Upland rice(4)', ['\IGNORE']],
  2042. ['Total(4)', ['\IGNORE']],
  2043. ],
  2044. "entity_mapping": {
  2045. 'EMISSIONS CH4': 'CH4',
  2046. },
  2047. "coords_defaults": {
  2048. "class": "Total",
  2049. },
  2050. }, # tested
  2051. "Table3.D": { # direct and indirect N2O from soils
  2052. "status": "tested",
  2053. "table": {
  2054. "firstrow": 5,
  2055. "lastrow": 21,
  2056. "header": ['group', 'entity', 'unit'],
  2057. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2058. "categories": ["category"],
  2059. "cols_to_ignore": [
  2060. "ACTIVITY DATA AND OTHER RELATED INFORMATION Description",
  2061. "ACTIVITY DATA AND OTHER RELATED INFORMATION Value",
  2062. "IMPLIED EMISSION FACTORS Value",
  2063. ],
  2064. "stop_cats": ["", np.nan],
  2065. "unit_info": unit_info["default"],
  2066. },
  2067. "sector_mapping": [
  2068. ['a. Direct N2O emissions from managed soils', ['3.D.a']],
  2069. ['1. Inorganic N fertilizers(3)', ['3.D.a.1']],
  2070. ['2. Organic N fertilizers(3)', ['3.D.a.2']],
  2071. ['a. Animal manure applied to soils', ['3.D.a.2.a']],
  2072. ['b. Sewage sludge applied to soils', ['3.D.a.2.b']],
  2073. ['c. Other organic fertilizers applied to soils', ['3.D.a.2.c']],
  2074. ['3. Urine and dung deposited by grazing animals', ['3.D.a.3']],
  2075. ['4. Crop residues', ['3.D.a.4']],
  2076. ['5. Mineralization/immobilization associated with loss/gain of soil organic matter (4)(5)', ['3.D.a.5']],
  2077. ['6. Cultivation of organic soils (i.e. histosols)(2)', ['3.D.a.6']],
  2078. ['7. Other', ['3.D.a.7']],
  2079. ['b. Indirect N2O Emissions from managed soils', ['3.D.b']],
  2080. ['1. Atmospheric deposition(6)', ['3.D.b.1']],
  2081. ['2. Nitrogen leaching and run-off', ['3.D.b.2']],
  2082. ],
  2083. "entity_mapping": {
  2084. 'EMISSIONS N2O': 'N2O',
  2085. },
  2086. "coords_defaults": {
  2087. "class": "Total",
  2088. },
  2089. }, # tested
  2090. "Table3.E": { # savanna burning details
  2091. "status": "tested",
  2092. "table": {
  2093. "firstrow": 5,
  2094. "lastrow": 14,
  2095. "header": ['group', 'entity', 'unit'],
  2096. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2097. "categories": ["category"],
  2098. "cols_to_ignore": [
  2099. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Area of savanna burned',
  2100. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Average above-ground biomass density',
  2101. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Biomass burned',
  2102. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Fraction of savanna burned',
  2103. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Nitrogen fraction in biomass',
  2104. 'IMPLIED EMISSION FACTORS CH4',
  2105. 'IMPLIED EMISSION FACTORS N2O',
  2106. ],
  2107. "stop_cats": ["", ".", np.nan],
  2108. "unit_info": unit_info["default"],
  2109. },
  2110. "sector_mapping": [
  2111. ['Forest land (specify ecological zone)(1)', ['3.E.1'], 0],
  2112. ['Savanna Grassland', ['3.E.1.b'], 1], # AUS
  2113. ['Savanna Woodland', ['3.E.1.a'], 1], # AUS
  2114. ['Forest land', ['3.E.1.a'], 1], # SWE, CHE, CZE, HRV
  2115. ['Luxembourg', ['3.E.1.c'], 1], # LUX
  2116. ['Other non-specified', ['3.E.1.d'], 1], # EST
  2117. ['All', ['3.E.1.d'], 1], # DNK, DNM, DKE
  2118. ['Unspecified', ['3.E.1.d'], 1], # DEU
  2119. ['forest land', ['3.E.1.a'], 1], # MLT
  2120. ['Zone', ['3.E.1.d'], 1], # LVA
  2121. ['Grassland (specify ecological zone)(1)', ['3.E.2'], 0],
  2122. ['Savanna Woodland', ['3.E.2.a'], 1], # AUS
  2123. ['Savanna Grassland', ['3.E.2.b'], 1], # AUS
  2124. ['Temperate Grassland', ['3.E.2.c'], 1], # AUS
  2125. ['Grassland', ['3.E.2.d'], 1], # SWE, CHE, CZE, HRV
  2126. ['Luxembourg', ['3.E.2.e'], 1], # LUX
  2127. ['Other non-specified', ['3.E.2.f'], 1], # EST
  2128. ['All', ['3.E.2.f'], 1], # DNK, DNM, DKE
  2129. ['Unspecified', ['3.E.2.f'], 1], # DEU
  2130. ['Tussock', ['3.E.2.g'], 1], # NZL
  2131. ['grassland', ['3.E.2.d'], 1], # MLT
  2132. ['Zone_', ['3.E.2.f'], 1], # LVA
  2133. ],
  2134. "entity_mapping": {
  2135. 'EMISSIONS (2) CH4': 'CH4',
  2136. 'EMISSIONS (2) N2O': 'N2O',
  2137. },
  2138. "coords_defaults": {
  2139. "class": "Total",
  2140. },
  2141. }, # tested
  2142. "Table3.F": { # field burning details
  2143. "status": "TODO",
  2144. "table": {
  2145. "firstrow": 5,
  2146. "lastrow": 30,
  2147. "header": ['group', 'entity', 'unit'],
  2148. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2149. "categories": ["category"],
  2150. "cols_to_ignore": [],
  2151. "stop_cats": ["", np.nan],
  2152. "unit_info": unit_info["default"],
  2153. },
  2154. "sector_mapping": [
  2155. ],
  2156. "entity_mapping": [],
  2157. "coords_defaults": {
  2158. "class": "Total",
  2159. },
  2160. }, # TODO
  2161. "Table3.G-I": { # liming, urea, carbon containing fertilizer
  2162. "status": "TODO",
  2163. "table": {
  2164. "firstrow": 5,
  2165. "lastrow": 13,
  2166. "header": ['group', 'entity', 'unit'],
  2167. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2168. "categories": ["category"],
  2169. "cols_to_ignore": [],
  2170. "stop_cats": ["", np.nan],
  2171. "unit_info": unit_info["default"],
  2172. },
  2173. "sector_mapping": [
  2174. ],
  2175. "entity_mapping": [],
  2176. "coords_defaults": {
  2177. "class": "Total",
  2178. },
  2179. }, # TODO
  2180. "Table4": { # LULUCF overview
  2181. "status": "tested",
  2182. "table": {
  2183. "firstrow": 5,
  2184. "lastrow": 29,
  2185. "header": ['entity', 'unit'],
  2186. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2187. "categories": ["category"],
  2188. "cols_to_ignore": [],
  2189. "stop_cats": ["", ".", np.nan],
  2190. "unit_info": unit_info["default"],
  2191. },
  2192. "sector_mapping": [
  2193. ['4. Total LULUCF', ['4']],
  2194. ['A. Forest land', ['4.A']],
  2195. ['1. Forest land remaining forest land', ['4.A.1']],
  2196. ['2. Land converted to forest land', ['4.A.2']],
  2197. ['B. Cropland', ['4.B']],
  2198. ['1. Cropland remaining cropland', ['4.B.1']],
  2199. ['2. Land converted to cropland', ['4.B.2']],
  2200. ['C. Grassland', ['4.C']],
  2201. ['1. Grassland remaining grassland', ['4.C.1']],
  2202. ['2. Land converted to grassland', ['4.C.2']],
  2203. ['D. Wetlands(3)', ['4.D']],
  2204. ['1. Wetlands remaining wetlands', ['4.D.1']],
  2205. ['2. Land converted to wetlands', ['4.D.2']],
  2206. ['E. Settlements', ['4.E']],
  2207. ['1. Settlements remaining settlements', ['4.E.1']],
  2208. ['2. Land converted to settlements', ['4.E.2']],
  2209. ['F. Other land (4)', ['4.F']],
  2210. ['1. Other land remaining other land', ['4.F.1']],
  2211. ['2. Land converted to other land', ['4.F.2']],
  2212. ['G. Harvested wood products (5)', ['4.G']],
  2213. ['H. Other (please specify)', ['4.H']],
  2214. ['Land converted to Settlement', ['4.H.1']],
  2215. ['Reservoir of Petit-Saut in French Guiana', ['4.H.5']],
  2216. ['Biogenic NMVOCs from managed forest', ['4.H.4']],
  2217. ['All other', ['4.H.9']],
  2218. ['Luxembourg', ['4.H.8']],
  2219. ['Settlements Remaining Settlements', ['4.H.2']],
  2220. ['4.E Settlements', ['4.H.2']],
  2221. ['4.C Grassland', ['4.H.3']],
  2222. ['Settlements', ['4.H.2']],
  2223. ['Other', ['4.H.9']],
  2224. ['N2O Emissions from Aquaculture Use', ['4.H.6']],
  2225. ['CH4 from artificial water bodies', ['4.H.7']],
  2226. ],
  2227. "entity_mapping": {
  2228. 'CH4(2)': 'CH4',
  2229. 'N2O(2)': 'N2O',
  2230. 'Net CO2 emissions/removals(1), (2)': 'CO2',
  2231. },
  2232. "coords_defaults": {
  2233. "class": "Total",
  2234. },
  2235. }, # tested
  2236. # TODO: all other LULUCF tables
  2237. "Table5": { # Waste overview
  2238. "status": "tested",
  2239. "table": {
  2240. "firstrow": 5,
  2241. "lastrow": 27,
  2242. "header": ['entity', 'unit'],
  2243. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2244. "categories": ["category"],
  2245. "cols_to_ignore": [],
  2246. "stop_cats": ["", np.nan],
  2247. "unit_info": unit_info["default"],
  2248. },
  2249. "sector_mapping": [
  2250. ['Total waste', ['5']],
  2251. ['A. Solid waste disposal', ['5.A']],
  2252. ['1. Managed waste disposal sites', ['5.A.1']],
  2253. ['2. Unmanaged waste disposal sites', ['5.A.2']],
  2254. ['3. Uncategorized waste disposal sites', ['5.A.3']],
  2255. ['B. Biological treatment of solid waste', ['5.B']],
  2256. ['1. Composting', ['5.B.1']],
  2257. ['2. Anaerobic digestion at biogas facilities', ['5.B.2']],
  2258. ['C. Incineration and open burning of waste', ['5.C']],
  2259. ['1. Waste incineration', ['5.C.1']],
  2260. ['2. Open burning of waste', ['5.C.2']],
  2261. ['D. Wastewater treatment and discharge', ['5.D']],
  2262. ['1. Domestic wastewater', ['5.D.1']],
  2263. ['2. Industrial wastewater', ['5.D.2']],
  2264. ['3. Other (as specified in table 5.D)', ['5.D.3']],
  2265. ['E. Other (please specify)', ['5.E']],
  2266. ['Other', ['5.E.5']], # EST, NOR
  2267. ['Recycling activities', ['5.E.1']], # NLD
  2268. ['Mechanical-Biological Treatment MBT', ['5.E.2']], # DEU
  2269. ['Accidental fires', ['5.E.3']], # DEU, DKE, DNK, DNM
  2270. ['Decomposition of Petroleum-Derived Surfactants', ['5.E.4']], # JPN
  2271. ['Other non-specified', ['5.E.5']], # USA
  2272. ['Biogas burning without energy recovery', ['5.E.6']], # PRT
  2273. ['Sludge spreading', ['5.E.7']], # ESP
  2274. ['Accidental combustion', ['5.E.3']], # ESP
  2275. ['Other waste', ['5.E.5']], # CZE
  2276. ['5.E.1 Industrial Wastewater', ['5.E.8']], # CAN, new in 2022
  2277. ['Accidental Fires at SWDS', ['5.E.9']], # AUS, new in 2022
  2278. ['Memo item:(2)', ['\IGNORE']],
  2279. ['Long-term storage of C in waste disposal sites', ['M.Memo.LTSW']],
  2280. ['Annual change in total long-term C storage', ['M.Memo.ACLT']],
  2281. ['Annual change in total long-term C storage in HWP waste(3)', ['M.Memo.ACLTHWP']],
  2282. ],
  2283. "entity_mapping": {
  2284. 'CO2(1)': 'CO2',
  2285. },
  2286. "coords_defaults": {
  2287. "class": "Total",
  2288. },
  2289. }, # tested; memo items not read because of empty lines
  2290. "Table5.A": { # solid waste disposal
  2291. "status": "tested",
  2292. "table": {
  2293. "firstrow": 6,
  2294. "lastrow": 15,
  2295. "header": ['group', 'group', 'entity', 'entity', 'unit'],
  2296. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2297. "categories": ["category"],
  2298. "cols_to_ignore": [
  2299. 'ACTIVITY DATA AND OTHER RELATED INFORMATION SINK CATEGORIES Annual waste at the SWDS',
  2300. 'ACTIVITY DATA AND OTHER RELATED INFORMATION SINK CATEGORIES MCF',
  2301. 'ACTIVITY DATA AND OTHER RELATED INFORMATION SINK CATEGORIES DOCf',
  2302. 'IMPLIED EMISSION FACTOR SINK CATEGORIES CH4(1)',
  2303. 'IMPLIED EMISSION FACTOR SINK CATEGORIES CO2',
  2304. 'EMISSIONS SINK CATEGORIES CH4 Amount of CH4 flared',
  2305. 'EMISSIONS SINK CATEGORIES CH4 Amount of CH4 for energy recovery(3)',
  2306. ],
  2307. "stop_cats": ["", np.nan],
  2308. "unit_info": unit_info["default"],
  2309. },
  2310. "sector_mapping": [
  2311. ['1. Managed waste disposal sites', ['5.A.1']],
  2312. ['a. Anaerobic', ['5.A.1.a']],
  2313. ['b. Semi-aerobic', ['5.A.1.b']],
  2314. ['2. Unmanaged waste disposal sites', ['5.A.2']],
  2315. ['3. Uncategorized waste disposal sites', ['5.A.3']],
  2316. ],
  2317. "entity_mapping": {
  2318. 'EMISSIONS SINK CATEGORIES CH4 Emissions(2)': 'CH4',
  2319. 'EMISSIONS SINK CATEGORIES CO2(4) Amount of CH4 for energy recovery(3)': 'CO2',
  2320. },
  2321. "coords_defaults": {
  2322. "class": "Total",
  2323. },
  2324. }, # tested
  2325. "Table5.B": { # Biological treatment of solid waste
  2326. "status": "tested",
  2327. "table": {
  2328. "firstrow": 5,
  2329. "lastrow": 16,
  2330. "header": ['group', 'entity', 'entity', 'unit'],
  2331. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2332. "categories": ["category"],
  2333. "cols_to_ignore": [
  2334. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Annual waste amount treated',
  2335. 'IMPLIED EMISSION FACTOR CH4(1)',
  2336. 'IMPLIED EMISSION FACTOR N2O',
  2337. 'EMISSIONS CH4 Amount of CH4 flared',
  2338. 'EMISSIONS CH4 Amount of CH4 for energy recovery(3)',
  2339. ],
  2340. "stop_cats": [".", "", np.nan],
  2341. "unit_info": unit_info["default"],
  2342. },
  2343. "sector_mapping": [
  2344. ['1. Composting', ['5.B.1'], 0],
  2345. ['Municipal solid waste', ['5.B.1.a'], 1],
  2346. ['Other (please specify)(4)', ['5.B.1.b'], 1],
  2347. ['Organic wastes households', ['5.B.1.b.i'], 2], # NLD
  2348. ['Organic wastes from gardens and horticulture', ['5.B.1.b.ii'], 2], # NLD
  2349. ['Food and garden waste', ['5.B.1.b.ii'], 2], # DNM, DNK, DKE
  2350. ['Industrial Solid Waste', ['5.B.1.b.iii'], 2], # POL
  2351. ['Home composting', ['5.B.1.b.iv'], 2], # NOR
  2352. ['Mixed waste', ['5.B.1.b.v'], 2], # LTU
  2353. ['Other waste', ['5.B.1.b.v'], 2], # SWE
  2354. ['Sludge', ['5.B.1.b.vi'], 2], # HUN, EST
  2355. ['Textile', ['5.B.1.b.vii'], 2], # EST
  2356. ['Wood', ['5.B.1.b.viii'], 2], # EST
  2357. ['Organic', ['5.B.1.b.ix'], 2], # EST
  2358. ['Paper', ['5.B.1.b.x'], 2], # EST
  2359. ['Other_SW', ['5.B.1.b.v'], 2], # CZE
  2360. ['MBA treated MSW', ['5.B.1.b.xi'], 2], # LUX
  2361. ['Specific Agricultural and Industrial Waste', ['5.B.1.b.xii'], 2], # UKR
  2362. ['Industrial solid waste and constr. waste', ['5.B.1.b.xiii'], 2], # FIN
  2363. ['Municipal sludge', ['5.B.1.b.xiv'], 2], # FIN
  2364. ['Industrial sludge', ['5.B.1.b.xv'], 2], # FIN
  2365. ['Open air composting', ['5.B.1.b.xvi'], 2], # LIE
  2366. ['Industrial Waste', ['5.B.1.b.xvii'], 2], # JPN
  2367. ['Human Waste and Johkasou sludge', ['5.B.1.b.xviii'], 2], # JPN
  2368. ['2. Anaerobic digestion at biogas facilities(3)', ['5.B.2'], 0],
  2369. ['Municipal solid waste', ['5.B.2.a'], 1],
  2370. ['Other (please specify)(4)', ['5.B.2.b'], 1],
  2371. ['Organic wastes households', ['5.B.2.b.i'], 2], # NLD
  2372. ['Organic wastes from gardens and horticulture', ['5.B.2.b.ii'], 2], # NLD
  2373. ['Animal manure and other organic waste', ['5.B.2.b.iii'], 2], # DNM, DNK, DKE
  2374. ['sewage sludge', ['5.B.2.b.iv'], 2], # LTU
  2375. ['Other waste', ['5.B.2.b.v'], 2], # SWE
  2376. ['Agricultural biogas facilities', ['5.B.2.b.vi'], 2], # CHE
  2377. ['Other biogases from anaerobic fermentation', ['5.B.2.b.vii'], 2], # HUN
  2378. ['Sludge', ['5.B.2.b.iv'], 2], # EST
  2379. ['Anaerobic Digestion On-Farm and at Wastewater Treatment Facilities', ['5.B.2.b.viii'], 2], # USA
  2380. ['Other_AD', ['5.B.2.b.v'], 2], # CZE
  2381. ['Biogenic waste incl. wastes from Agriculture (manure)', ['5.B.2.b.ix'], 2], # LUX
  2382. ['Industrial solid waste and constr. waste', ['5.B.2.b.x'], 2], # FIN
  2383. ['Municipal sludge', ['5.B.2.b.xi'], 2], # FIN
  2384. ['Industrial sludge', ['5.B.2.b.xii'], 2], # FIN
  2385. ['Livestock manure co-digested', ['5.B.2.b.xiii'], 2], # DEU, new in 2022
  2386. ['Waste water', ['5.B.2.b.xiv'], 2], # NOR, new in 2022
  2387. ],
  2388. "entity_mapping": {
  2389. 'EMISSIONS CH4 Emissions(2)': 'CH4',
  2390. 'EMISSIONS N2O Amount of CH4 for energy recovery(3)': 'N2O',
  2391. },
  2392. "coords_defaults": {
  2393. "class": "Total",
  2394. },
  2395. }, # tested
  2396. "Table5.C": { # Waste incineration and open burning
  2397. "status": "tested",
  2398. "table": {
  2399. "firstrow": 5,
  2400. "lastrow": 38,
  2401. "header": ['group', 'group', 'entity', 'unit'],
  2402. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2403. "categories": ["category"],
  2404. "cols_to_ignore": [
  2405. 'ACTIVITY DATA Amount of wastes (incinerated/open burned)',
  2406. 'IMPLIED EMISSION FACTOR Amount of wastes (incinerated/open burned) CO2',
  2407. 'IMPLIED EMISSION FACTOR Amount of wastes (incinerated/open burned) CH4',
  2408. 'IMPLIED EMISSION FACTOR Amount of wastes (incinerated/open burned) N2O',
  2409. ],
  2410. "stop_cats": [".", "", np.nan],
  2411. "unit_info": unit_info["default"],
  2412. },
  2413. "sector_mapping": [
  2414. ['1. Waste Incineration', ['5.C.1'], 0],
  2415. ['Biogenic (1)', ['5.C.1.a'], 1],
  2416. ['Municipal solid waste', ['5.C.1.a.i'], 2],
  2417. ['Other (please specify)(2)', ['5.C.1.a.ii'], 2],
  2418. ['Industrial Solid Wastes', ['5.C.1.a.ii.1'], 3],
  2419. ['Hazardous Waste', ['5.C.1.a.ii.2'], 3],
  2420. ['Clinical Waste', ['5.C.1.a.ii.3'], 3],
  2421. ['Sewage Sludge', ['5.C.1.a.ii.4'], 3],
  2422. ['Other (please specify)', ['5.C.1.a.ii.5'], 3],
  2423. ['Animal cremations', ['5.C.1.a.ii.5.a'], 4], # DKE, DNK, DNM
  2424. ['Human cremations', ['5.C.1.a.ii.5.b'], 4], # DKE, DNK, DNM
  2425. ['Cremation', ['5.C.1.a.ii.5.c'], 4], # CHE, NOR, FRA, FRK
  2426. ['cremation', ['5.C.1.a.ii.5.c'], 4], # DEU
  2427. ['Industrial waste', ['5.C.1.a.ii.5.d'], 4], # NOR
  2428. ['Biogenic other waste', ['5.C.1.a.ii.5.e'], 4], # EST
  2429. ['Biogenic waste other than Municipal Solid Waste', ['5.C.1.a.ii.5.e'], 4], # ROU
  2430. ['Sludge', ['5.C.1.a.ii.5.f'], 4], # JPN
  2431. ['Non-fossile liquid waste', ['5.C.1.a.ii.5.g'], 4], # JPN
  2432. ['Non-biogenic', ['5.C.1.b'], 1],
  2433. ['Municipal solid waste', ['5.C.1.b.i'], 2],
  2434. ['Other (please specify)(3)', ['5.C.1.b.ii'], 2],
  2435. ['Industrial Solid Wastes', ['5.C.1.b.ii.1'], 3],
  2436. ['Hazardous Waste', ['5.C.1.b.ii.2'], 3],
  2437. ['Clinical Waste', ['5.C.1.b.ii.3'], 3],
  2438. ['Sewage Sludge', ['5.C.1.b.ii.4'], 3],
  2439. ['Fossil liquid waste', ['5.C.1.b.ii.5'], 3],
  2440. ['Other (please specify)', ['5.C.1.b.ii.6'], 3],
  2441. ['Quarantine and other waste', ['5.C.1.b.ii.6.a'], 4], # NZL
  2442. ['Industrial waste', ['5.C.1.b.ii.6.b'], 4], # CHE
  2443. ['Chemical waste', ['5.C.1.b.ii.6.c'], 4], # GBR, GBK
  2444. ['Flaring in the chemical industry', ['5.C.1.a.ii.6.d'], 4], # BEL
  2445. ['Sludge', ['5.C.1.a.ii.6.e'], 4], # JPN
  2446. ['Solvents', ['5.C.1.a.ii.6.f'], 4], # GRC, AUS
  2447. ['2. Open burning of waste', ['5.C.2'], 0],
  2448. ['Biogenic (1)', ['5.C.2.a'], 1],
  2449. ['Municipal solid waste', ['5.C.2.a.i'], 2],
  2450. ['Other (please specify)', ['5.C.2.a.ii'], 2],
  2451. ['agricultural waste', ['5.C.2.a.ii.1'], 3], # ITA
  2452. ['Agricultural residues', ['5.C.2.a.ii.1'], 3], # ESP
  2453. ['Natural residues', ['5.C.2.a.ii.2'], 3], # CHE
  2454. ['Wood waste', ['5.C.2.a.ii.3'], 3], # GBR, GBK
  2455. ['Bonfires etc.', ['5.C.2.a.ii.4'], 3], # DEU
  2456. ['Bonfires', ['5.C.2.a.ii.4'], 3], # NLD, ISL
  2457. ['Other', ['5.C.2.a.ii.5'], 3], # EST
  2458. ['Other waste', ['5.C.2.a.ii.5'], 3], # CZE
  2459. ['Industrial Solid Waste', ['5.C.2.a.ii.6'], 3], # JPN
  2460. ['Non-biogenic', ['5.C.2.b'], 1],
  2461. ['Municipal solid waste', ['5.C.2.b.i'], 2],
  2462. ['Other (please specify)', ['5.C.2.b.ii'], 2],
  2463. ['Rural waste', ['5.C.2.b.ii.1'], 3], # NZL
  2464. ['Accidental fires (vehicles)', ['5.C.2.b.ii.2'], 3], # GBR, GBK
  2465. ['Accidental fires (buildings)', ['5.C.2.b.ii.3'], 3], # GBR, GBK
  2466. ['Bonfires', ['5.C.2.b.ii.4'], 3], # ISL
  2467. ['Other', ['5.C.2.b.ii.5'], 3], # EST
  2468. ['Other waste', ['5.C.2.b.ii.5'], 3], # CZE
  2469. ['Industrial Solid Waste', ['5.C.2.b.ii.6'], 3], # JPN
  2470. ],
  2471. "entity_mapping": {
  2472. 'EMISSIONS Amount of wastes (incinerated/open burned) CH4': 'CH4',
  2473. 'EMISSIONS Amount of wastes (incinerated/open burned) CO2': 'CO2',
  2474. 'EMISSIONS Amount of wastes (incinerated/open burned) N2O': 'N2O',
  2475. },
  2476. "coords_defaults": {
  2477. "class": "Total",
  2478. },
  2479. }, # tested
  2480. "Table5.D": { # Waste incineration and open burning
  2481. "status": "tested",
  2482. "table": {
  2483. "firstrow": 5,
  2484. "lastrow": 13,
  2485. "header": ['group', 'entity', 'entity', 'entity', 'unit'],
  2486. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2487. "categories": ["category"],
  2488. "cols_to_ignore": [
  2489. 'ACTIVITY DATA AND RELATED INFORMATION Total organic product',
  2490. 'ACTIVITY DATA AND RELATED INFORMATION Sludge removed(1)',
  2491. 'ACTIVITY DATA AND RELATED INFORMATION Sludge removed(1) N in effluent',
  2492. 'IMPLIED EMISSION FACTOR CH4(2) N in effluent',
  2493. 'IMPLIED EMISSION FACTOR N2O(3) N in effluent',
  2494. 'EMISSIONS CH4 Amount of CH4 flared',
  2495. 'EMISSIONS CH4 Amount of CH4 for Energy Recovery(5)',
  2496. ],
  2497. "stop_cats": [".", "", np.nan],
  2498. "unit_info": unit_info["default"],
  2499. },
  2500. "sector_mapping": [
  2501. ['1. Domestic wastewater', ['5.D.1']],
  2502. ['2. Industrial wastewater', ['5.D.2']],
  2503. ['3. Other (please specify)', ['5.D.3']],
  2504. ['Other', ['5.D.3.a']], # EST
  2505. ['Septic tanks', ['5.D.3.b']], # NLD
  2506. ['Wastewater Effluent', ['5.D.3.c']], # NLD
  2507. ['Fish farming', ['5.D.3.d']], # FIN
  2508. ['Uncategorized wastewater', ['5.D.3.a']], # CZE
  2509. ],
  2510. "entity_mapping": {
  2511. 'EMISSIONS CH4 Emissions(4)': 'CH4',
  2512. 'EMISSIONS N2O(3) Amount of CH4 for Energy Recovery(5)': 'N2O',
  2513. },
  2514. "coords_defaults": {
  2515. "class": "Total",
  2516. },
  2517. }, # tested
  2518. }