CRF2021_specification.py 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508
  1. """ CRF2021 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. CRF2021 = {
  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. ['Gaseous fuels', ['1.A.3.b.iii', 'Gaseous'], 3],
  773. ['Biomass(6)', ['1.A.3.b.iii', 'Biomass'], 3],
  774. ['Other fossil fuels (please specify)(4)', ['1.A.3.b.iii', 'OtherFF'], 3],
  775. ['Other Fossil Fuels', ['1.A.3.b.iii', 'OFFOther'], 4], # CYP, POL
  776. ['Biodiesel (fossil component)', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # LUX
  777. ['Biodiesel fossil fraction', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # NOR
  778. ['Biodiesel (fossil fraction)', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # NZL
  779. ['Fossil part of biodiesel or biogasoline', ['1.A.3.b.iii', 'OFFBiofuelFC'], 4], # PRT
  780. ['Fossil part of biodiesel and biogasoline', ['1.A.3.b.iii', 'OFFBiofuelFC'], 4], # SWE
  781. ['fossil part of biofuels', ['1.A.3.b.iii', 'OFFBiofuelFC'], 4], # CZE
  782. ['fossil part of biodiesel', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # DKE, DNK, HRV
  783. ['Fossil part of biodiesel', ['1.A.3.b.iii', 'OFFBiodieselFC'], 4], # DNM, BEL, HUN. LVA, ESP
  784. ['Fossil part of biogasoline', ['1.A.3.b.iii', 'OFFBiogasolineFC'], 4], # BEL
  785. ['Fossil part of biofuel', ['1.A.3.b.iii', 'OFFBiofuelFC'], 4], # IRL
  786. # iv. Motorcycles
  787. ['iv. Motorcycles', ['1.A.3.b.iv', 'Total'], 2],
  788. ['Gasoline', ['1.A.3.b.iv', 'Gasoline'], 3],
  789. ['Diesel oil', ['1.A.3.b.iv', 'DieselOil'], 3],
  790. ['Liquefied petroleum gases (LPG)', ['1.A.3.b.iv', 'LPG'], 3],
  791. ['Other liquid fuels (please specify)', ['1.A.3.b.iv', 'OtherLiquid'], 3],
  792. ['Kerosene', ['1.A.3.b.iv', 'Kerosene'], 4], # UKR (and probably others)
  793. ['Lubricants', ['1.A.3.b.iv', 'Lubricants'], 4], # UKR, JPN, HRV
  794. ['Lubricant Oil', ['1.A.3.b.iv', 'Lubricants'], 4], # PRT
  795. ['Other', ['1.A.3.b.iv', 'OLOther'], 4], # UKR (and probably others)
  796. ['Other Liquid Fuels', ['1.A.3.b.iv', 'OLOther'], 4], # CYP
  797. ['Lube', ['1.A.3.b.iv', 'Lubricants'], 4], # MCO
  798. ['Lubricants in 2-stroke engines', ['1.A.3.b.iv', 'Lubricants'], 4], # HUN
  799. ['Lubricants (two-stroke engines)', ['1.A.3.b.iv', 'Lubricants'], 4], # ESP
  800. ['lubricants', ['1.A.3.b.iv', 'Lubricants'], 4], # SVN
  801. ['Gaseous fuels', ['1.A.3.b.iv', 'Gaseous'], 3],
  802. ['Biomass(6)', ['1.A.3.b.iv', 'Biomass'], 3],
  803. ['Other fossil fuels (please specify)(4)', ['1.A.3.b.iv', 'OtherFF'], 3],
  804. ['Other Fossil Fuels', ['1.A.3.b.iv', 'OFFOther'], 4], # CYP
  805. ['Fossil part of biodiesel or biogasoline', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # PRT
  806. ['Fossil part of biodiesel and biogasoline', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # SWE
  807. ['fossil part of biofuels', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # CZE
  808. ['Fossil part of biodiesel', ['1.A.3.b.iv', 'OFFBiodieselFC'], 4], # BEL
  809. ['Fossil part of biogasoline', ['1.A.3.b.iv', 'OFFBiogasolineFC'], 4], # BEL
  810. ['Fossil part of biodiese', ['1.A.3.b.iv', 'OFFBiodieselFC'], 4], # LVA
  811. ['Fossil part of biofuel', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # IRL
  812. ['fossil part of biodiesel', ['1.A.3.b.iv', 'OFFBiofuelFC'], 4], # HRV
  813. # v. Other
  814. ['v. Other (please specify)', ['1.A.3.b.v', 'Total'], 2],
  815. # TUR
  816. ['Road total', ['1.A.3.b.v.1', 'Total'], 3],
  817. ['Gasoline', ['1.A.3.b.v.1', 'Gasoline'], 4],
  818. ['Diesel Oil', ['1.A.3.b.v.1', 'DieselOil'], 4],
  819. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.1', 'LPG'], 4],
  820. ['Gaseous Fuels', ['1.A.3.b.v.1', 'Gaseous'], 4],
  821. ['Biomass', ['1.A.3.b.v.1', 'Biomass'], 4],
  822. # CYP
  823. ['Buses', ['1.A.3.b.v.2', 'Total'], 3],
  824. ['Gasoline', ['1.A.3.b.v.2', 'Gasoline'], 4],
  825. ['Diesel Oil', ['1.A.3.b.v.2', 'DieselOil'], 4],
  826. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.2', 'LPG'], 4],
  827. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.2', 'OtherLiquid'], 4],
  828. ['Gaseous Fuels', ['1.A.3.b.v.2', 'Gaseous'], 4],
  829. ['Biomass', ['1.A.3.b.v.2', 'Biomass'], 4],
  830. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.2', 'OtherFF'], 4],
  831. # GBK, GBR
  832. ['All vehicles - biofuel use', ['1.A.3.b.v.3', 'Total'], 3],
  833. ['Biomass', ['1.A.3.b.v.3', 'Biomass'], 4],
  834. ['All vehicles - LPG use', ['1.A.3.b.v.4', 'Total'], 4],
  835. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.4', 'LPG'], 4],
  836. ['All vehicles - biofuel use (fossil component)', ['1.A.3.b.v.5', 'Total'], 4],
  837. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.5', 'OtherFF'], 4],
  838. # CAN
  839. ['Propane and Natural Gas Vehicles', ['1.A.3.b.v.6', 'Total'], 3],
  840. ['Gasoline', ['1.A.3.b.v.6', 'Gasoline'], 4],
  841. ['Diesel Oil', ['1.A.3.b.v.6', 'DieselOil'], 4],
  842. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.6', 'LPG'], 4],
  843. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.6', 'OtherLiquid'], 4],
  844. ['Gaseous Fuels', ['1.A.3.b.v.6', 'Gaseous'], 4],
  845. ['Biomass', ['1.A.3.b.v.6', 'Biomass'], 4],
  846. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.6', 'OtherFF'], 4],
  847. # BEL
  848. ['Lubricant Two-Stroke Engines', ['1.A.3.b.v.7', 'Total'], 3],
  849. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.7', 'OtherLiquid'], 4],
  850. # ROU
  851. ['Gaseous Fuels', ['1.A.3.b.v.8', 'Total'], 3],
  852. ['Gaseous Fuels', ['1.A.3.b.v.8', 'Gaseous'], 4],
  853. ['Other Liquid Fuels', ['1.A.3.b.v.9', 'Total'], 3],
  854. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.9', 'OtherLiquid'], 4],
  855. ['Other Kerosene', ['1.A.3.b.v.9', 'Kerosene'], 5],
  856. ['Heating and Other Gasoil', ['1.A.3.b.v.9', 'HeatingGasoil'], 5],
  857. ['Biomass', ['1.A.3.b.v.10', 'Total'], 3],
  858. ['Biomass', ['1.A.3.b.v.10', 'Biomass'], 4],
  859. # DEU
  860. ['CO2 from lubricant co-incineration in 2-stroke road vehicles', ['1.A.3.b.v.7', 'Total'], 3],
  861. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.7', 'OtherLiquid'], 4],
  862. ['lubricant used in 2-stroke mix', ['1.A.3.b.v.7', 'Lubricants'], 5],
  863. # USA
  864. ['Evaporative Emissions', ['1.A.3.b.v.11', 'Total'], 3],
  865. ['Gasoline', ['1.A.3.b.v.11', 'Gasoline'], 4],
  866. ['Diesel Oil', ['1.A.3.b.v.11', 'DieselOil'], 4],
  867. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.11', 'LPG'], 4],
  868. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.11', 'OtherLiquid'], 4],
  869. ['Gaseous Fuels', ['1.A.3.b.v.11', 'Gaseous'], 4],
  870. ['Biomass', ['1.A.3.b.v.11', 'Biomass'], 4],
  871. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.11', 'OtherFF'], 4],
  872. # SVK
  873. ['Urea-based catalysts', ['1.A.3.b.v.12', 'Total'], 3],
  874. ['Diesel Oil', ['1.A.3.b.v.12', 'DieselOil'], 4],
  875. # ESP
  876. ['Other non-specified', ['1.A.3.b.v.13', 'Total'], 3],
  877. ['Gasoline', ['1.A.3.b.v.13', 'Gasoline'], 4],
  878. ['Diesel Oil', ['1.A.3.b.v.13', 'DieselOil'], 4],
  879. ['Liquefied Petroleum Gases (LPG)', ['1.A.3.b.v.13', 'LPG'], 4],
  880. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.13', 'OtherLiquid'], 4],
  881. ['Gaseous Fuels', ['1.A.3.b.v.13', 'Gaseous'], 4],
  882. ['Biomass', ['1.A.3.b.v.13', 'Biomass'], 4],
  883. ['Other Fossil Fuels (please specify)', ['1.A.3.b.v.13', 'OtherFF'], 4],
  884. # BGR
  885. ['Urea', ['1.A.3.b.v.12', 'Total'], 3],
  886. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.12', 'OtherLiquid'], 4],
  887. ['Lubricants', ['1.A.3.b.v.7', 'Total'], 3],
  888. ['Other Liquid Fuels (please specify)', ['1.A.3.b.v.7', 'OtherLiquid'], 4],
  889. # c. Railways
  890. ['c. Railways', ['1.A.3.c', 'Total'], 1],
  891. ['Liquid fuels', ['1.A.3.c', 'Liquid'], 2],
  892. ['Solid fuels', ['1.A.3.c', 'Solid'], 2],
  893. ['Gaseous fuels', ['1.A.3.c', 'Gaseous'], 2],
  894. ['Biomass(6)', ['1.A.3.c', 'Biomass'], 2],
  895. ['Other fossil fuels (please specify)', ['1.A.3.c', 'OtherFF'], 2],
  896. ['Biodiesel (fossil component)', ['1.A.3.c', 'OFFBiodieselFC'], 3], # LUX
  897. ['Fossil part of biodiesel and biogasoline', ['1.A.3.c', 'OFFBiodieselFC'], 3], # SWE
  898. # d. Domestic navigation
  899. ['d. Domestic Navigation(10)', ['1.A.3.d', 'Total'], 1],
  900. ['Residual fuel oil', ['1.A.3.d', 'ResFuelOil'], 2],
  901. ['Gas/diesel oil', ['1.A.3.d', 'GasDieselOil'], 2],
  902. ['Gasoline', ['1.A.3.d', 'Gasoline'], 2],
  903. ['Other liquid fuels (please specify)', ['1.A.3.d', 'OtherLiquid'], 2],
  904. ['Lubricants', ['1.A.3.d', 'Lubricants'], 3], # UKR, JPN
  905. ['Biodiesel (5 percent fossil portion)', ['1.A.3.d', 'OLBiodieselFC'], 3], # CAN
  906. ['Light Fuel Oil', ['1.A.3.d', 'LightFuelOil'], 3], # CAN
  907. ['Kerosene and stove oil', ['1.A.3.d', 'KeroseStoveOil'], 3], # CAN
  908. ['Kerosene', ['1.A.3.d', 'Kerosene'], 3], # DKE, DNK
  909. ['Natural Gas Liquids', ['1.A.3.d', 'NGL'], 3], # DKE, DNK
  910. ['Fossil part of biodiesel', ['1.A.3.d', 'OLBiodieselFC'], 3], # LTU
  911. ['Other non-specified', ['1.A.3.d', 'OLOther'], 3], # SWE
  912. ['Other motor fuels', ['1.A.3.d', 'OMotorFuels'], 3], # RUS
  913. ['Fuel oil A', ['1.A.3.d', 'FuelOilA'], 3], # JPN
  914. ['Fuel oil B', ['1.A.3.d', 'FuelOilB'], 3], # JPN
  915. ['Fuel oil C', ['1.A.3.d', 'FuelOilC'], 3], # JPN
  916. ['Diesel Oil', ['1.A.3.d', 'OLDiesel'], 3], # FIN
  917. ['Gaseous fuels', ['1.A.3.d', 'Gaseous'], 2],
  918. ['Biomass(6)', ['1.A.3.d', 'Biomass'], 2],
  919. ['Other fossil fuels (please specify)(4)', ['1.A.3.d', 'OtherFF'], 2],
  920. ['Liquified natural gas', ['1.A.3.d', 'LNG'], 3], # DKE, DNK, DNM
  921. ['Biodiesel (fossil component)', ['1.A.3.d', 'OFFBiodieselFC'], 3], # LUX
  922. ['Coal', ['1.A.3.d', 'OFFCoal'], 3], # NZL, NDL
  923. ['fossil part of biodiesel', ['1.A.3.d', 'OFFBiodieselFC'], 3], # AUT
  924. ['Fossil part of biodiesel and biogasoline', ['1.A.3.d', 'OFFBioGasDieselFC'], 3], # SWE
  925. ['Solid Fuels', ['1.A.3.d', 'OFFSolid'], 3], # AUS
  926. # e. other transportation
  927. # keep details also for top category as it's present
  928. ['e. Other transportation (please specify)', ['1.A.3.e', 'Total'], 1],
  929. ['Liquid fuels', ['1.A.3.e', 'Liquid'], 2],
  930. ['Solid fuels', ['1.A.3.e', 'Solid'], 2],
  931. ['Gaseous fuels', ['1.A.3.e', 'Gaseous'], 2],
  932. ['Other fossil fuels(4)', ['1.A.3.e', 'OtherFF'], 2],
  933. ['Biomass(6)', ['1.A.3.e', 'Biomass'], 2],
  934. # i. pipeline
  935. ['i. Pipeline transport', ['1.A.3.e.i', 'Total'], 2],
  936. ['Liquid fuels', ['1.A.3.e.i', 'Liquid'], 3],
  937. ['Solid fuels', ['1.A.3.e.i', 'Solid'], 3],
  938. ['Gaseous fuels', ['1.A.3.e.i', 'Gaseous'], 3],
  939. ['Other fossil fuels(4)', ['1.A.3.e.i', 'OtherFF'], 3],
  940. ['Biomass(6)', ['1.A.3.e.i', 'Biomass'], 3],
  941. # ii other
  942. ['ii. Other (please specify)', ['1.A.3.e.ii', 'Total'], 2],
  943. ## temp
  944. # ['Liquid fuels', ['1.A.3.e.ii', 'Liquid'], False],
  945. # ['Solid fuels', ['1.A.3.e.ii', 'Solid'], False],
  946. # ['Gaseous fuels', ['1.A.3.e.ii', 'Gaseous'], False],
  947. # ['Other fossil fuels(4)', ['1.A.3.e.ii', 'OtherFF'], False],
  948. # ['Biomass(6)', ['1.A.3.e.ii', 'Biomass'], False],
  949. ## end temp
  950. # UKR, SWE
  951. ['Off-road vehicles and other machinery', ['1.A.3.e.ii.1', 'Total'], 3],
  952. ['Liquid Fuels', ['1.A.3.e.ii.1', 'Liquid'], 4],
  953. ['Solid Fuels', ['1.A.3.e.ii.1', 'Solid'], 4],
  954. ['Gaseous Fuels', ['1.A.3.e.ii.1', 'Gaseous'], 4],
  955. ['Other Fossil Fuels', ['1.A.3.e.ii.1', 'OtherFF'], 4],
  956. ['Biomass', ['1.A.3.e.ii.1', 'Biomass'], 4],
  957. # GBR, GBK
  958. ['Aircraft support vehicles', ['1.A.3.e.ii.2', 'Total'], 3],
  959. ['Liquid Fuels', ['1.A.3.e.ii.2', 'Liquid'], 4],
  960. # CAN
  961. ['Off Road', ['1.A.3.e.ii.1', 'Total'], 3],
  962. ['Liquid Fuels', ['1.A.3.e.ii.1', 'Liquid'], 4],
  963. ['Solid Fuels', ['1.A.3.e.ii.1', 'Solid'], 4],
  964. ['Gaseous Fuels', ['1.A.3.e.ii.1', 'Gaseous'], 4],
  965. ['Other Fossil Fuels', ['1.A.3.e.ii.1', 'OtherFF'], 4],
  966. ['Biomass', ['1.A.3.e.ii.1', 'Biomass'], 4],
  967. # LTU
  968. ['Off-road transport', ['1.A.3.e.ii.1', 'Total'], 3],
  969. ['Liquid Fuels', ['1.A.3.e.ii.1', 'Liquid'], 4],
  970. ['Solid Fuels', ['1.A.3.e.ii.1', 'Solid'], 4],
  971. ['Gaseous Fuels', ['1.A.3.e.ii.1', 'Gaseous'], 4],
  972. ['Other Fossil Fuels', ['1.A.3.e.ii.1', 'OtherFF'], 4],
  973. ['Biomass', ['1.A.3.e.ii.1', 'Biomass'], 4],
  974. # BEL
  975. ['Other non-specified', ['1.A.3.e.ii.3', 'Total'], 3],
  976. ['Liquid Fuels', ['1.A.3.e.ii.3', 'Liquid'], 4],
  977. ['Solid Fuels', ['1.A.3.e.ii.3', 'Solid'], 4],
  978. ['Gaseous Fuels', ['1.A.3.e.ii.3', 'Gaseous'], 4],
  979. ['Other Fossil Fuels', ['1.A.3.e.ii.3', 'OtherFF'], 4],
  980. ['Biomass', ['1.A.3.e.ii.3', 'Biomass'], 4],
  981. # AUS
  982. ['Off-Road Vehicles', ['1.A.3.e.ii.1', 'Total'], 3],
  983. ['Liquid Fuels', ['1.A.3.e.ii.1', 'Liquid'], 4],
  984. ['Solid Fuels', ['1.A.3.e.ii.1', 'Solid'], 4],
  985. ['Gaseous Fuels', ['1.A.3.e.ii.1', 'Gaseous'], 4],
  986. ['Other Fossil Fuels', ['1.A.3.e.ii.1', 'OtherFF'], 4],
  987. ['Biomass', ['1.A.3.e.ii.1', 'Biomass'], 4],
  988. # USA
  989. ['Non-Transportation Mobile', ['1.A.3.e.ii.4', 'Total'], 3],
  990. ['Liquid Fuels', ['1.A.3.e.ii.4', 'Liquid'], 4],
  991. ['Solid Fuels', ['1.A.3.e.ii.4', 'Solid'], 4],
  992. ['Gaseous Fuels', ['1.A.3.e.ii.4', 'Gaseous'], 4],
  993. ['Other Fossil Fuels', ['1.A.3.e.ii.4', 'OtherFF'], 4],
  994. ['Biomass', ['1.A.3.e.ii.4', 'Biomass'], 4],
  995. ],
  996. "entity_mapping": {
  997. 'EMISSIONS CH4': "CH4",
  998. 'EMISSIONS CO2(2)': "CO2",
  999. 'EMISSIONS N2O': "N2O",
  1000. },
  1001. }, # tested
  1002. "Table1.A(a)s4": {
  1003. "status": "tested",
  1004. "table": {
  1005. "firstrow": 5,
  1006. "lastrow": 127,
  1007. "header": ['group', 'entity', 'entity', 'unit'],
  1008. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1009. "categories": ["category", "class"],
  1010. "cols_to_ignore": [
  1011. 'AGGREGATE ACTIVITY DATA Consumption',
  1012. 'AGGREGATE ACTIVITY DATA Consumption',
  1013. 'IMPLIED EMISSION FACTORS CO2(1)',
  1014. 'IMPLIED EMISSION FACTORS CH4',
  1015. 'IMPLIED EMISSION FACTORS N2O',
  1016. 'EMISSIONS CO2 Amount captured',
  1017. ],
  1018. "stop_cats": ["", np.nan],
  1019. "unit_info": unit_info["default"],
  1020. },
  1021. "sector_mapping": [
  1022. ['1.A.4 Other sectors', ['1.A.4', 'Total'], 0],
  1023. ['Liquid fuels', ['1.A.4', 'Liquid'], 1],
  1024. ['Solid fuels', ['1.A.4', 'Solid'], 1],
  1025. ['Gaseous fuels', ['1.A.4', 'Gaseous'], 1],
  1026. ['Other fossil fuels(4)', ['1.A.4', 'OtherFF'], 1],
  1027. ['Peat(5)', ['1.A.4', 'Peat'], 1],
  1028. ['Biomass(6)', ['1.A.4', 'Biomass'], 1],
  1029. # a. Commercial/institutional(12)
  1030. ['a. Commercial/institutional(12)', ['1.A.4.a', 'Total'], 1],
  1031. ['Liquid fuels', ['1.A.4.a', 'Liquid'], 2],
  1032. ['Solid fuels', ['1.A.4.a', 'Solid'], 2],
  1033. ['Gaseous fuels', ['1.A.4.a', 'Gaseous'], 2],
  1034. ['Other fossil fuels(4)', ['1.A.4.a', 'OtherFF'], 2],
  1035. ['Peat(5)', ['1.A.4.a', 'Peat'], 2],
  1036. ['Biomass(6)', ['1.A.4.a', 'Biomass'], 2],
  1037. # 1.A.4.a.i Stationary combustion
  1038. ['1.A.4.a.i Stationary combustion', ['1.A.4.a.i', 'Total'], 2],
  1039. ['Liquid Fuels', ['1.A.4.a.i', 'Liquid'], 3],
  1040. ['Solid Fuels', ['1.A.4.a.i', 'Solid'], 3],
  1041. ['Gaseous Fuels', ['1.A.4.a.i', 'Gaseous'], 3],
  1042. ['Other Fossil Fuels', ['1.A.4.a.i', 'OtherFF'], 3],
  1043. ['Peat', ['1.A.4.a.i', 'Peat'], 3],
  1044. ['Biomass', ['1.A.4.a.i', 'Biomass'], 3],
  1045. # 1.A.4.a.ii Off-road vehicles and other machinery
  1046. ['1.A.4.a.ii Off-road vehicles and other machinery', ['1.A.4.a.ii', 'Total'], 2],
  1047. ['Liquid Fuels', ['1.A.4.a.ii', 'Liquid'], 3],
  1048. ['Solid Fuels', ['1.A.4.a.ii', 'Solid'], 3],
  1049. ['Gaseous Fuels', ['1.A.4.a.ii', 'Gaseous'], 3],
  1050. ['Other Fossil Fuels', ['1.A.4.a.ii', 'OtherFF'], 3],
  1051. ['Biomass', ['1.A.4.a.ii', 'Biomass'], 3],
  1052. # 1.A.4.a.iii Other (please specify)
  1053. ['1.A.4.a.iii Other (please specify)', ['1.A.4.a.iii', 'Total'], 2],
  1054. ['Liquid Fuels', ['1.A.4.a.iii', 'Liquid'], 3],
  1055. ['Solid Fuels', ['1.A.4.a.iii', 'Solid'], 3],
  1056. ['Gaseous Fuels', ['1.A.4.a.iii', 'Gaseous'], 3],
  1057. ['Other Fossil Fuels', ['1.A.4.a.iii', 'OtherFF'], 3],
  1058. ['Peat', ['1.A.4.a.iii', 'Peat'], 3],
  1059. ['Biomass', ['1.A.4.a.iii', 'Biomass'], 3],
  1060. # b. Residential(13)
  1061. ['b. Residential(13)', ['1.A.4.b', 'Total'], 1],
  1062. ['Liquid fuels', ['1.A.4.b', 'Liquid'], 2],
  1063. ['Solid fuels', ['1.A.4.b', 'Solid'], 2],
  1064. ['Gaseous fuels', ['1.A.4.b', 'Gaseous'], 2],
  1065. ['Other fossil fuels(4)', ['1.A.4.b', 'OtherFF'], 2],
  1066. ['Peat(5)', ['1.A.4.b', 'Peat'], 2],
  1067. ['Biomass(6)', ['1.A.4.b', 'Biomass'], 2],
  1068. # 1.A.4.b.i Stationary combustion
  1069. ['1.A.4.b.i Stationary combustion', ['1.A.4.b.i', 'Total'], 2],
  1070. ['Liquid Fuels', ['1.A.4.b.i', 'Liquid'], 3],
  1071. ['Solid Fuels', ['1.A.4.b.i', 'Solid'], 3],
  1072. ['Gaseous Fuels', ['1.A.4.b.i', 'Gaseous'], 3],
  1073. ['Other Fossil Fuels', ['1.A.4.b.i', 'OtherFF'], 3],
  1074. ['Peat', ['1.A.4.b.i', 'Peat'], 3],
  1075. ['Biomass', ['1.A.4.b.i', 'Biomass'], 3],
  1076. # 1.A.4.b.ii Off-road vehicles and other machinery
  1077. ['1.A.4.b.ii Off-road vehicles and other machinery', ['1.A.4.b.ii', 'Total'], 2],
  1078. ['Liquid Fuels', ['1.A.4.b.ii', 'Liquid'], 3],
  1079. ['Solid Fuels', ['1.A.4.b.ii', 'Solid'], 3],
  1080. ['Gaseous Fuels', ['1.A.4.b.ii', 'Gaseous'], 3],
  1081. ['Other Fossil Fuels', ['1.A.4.b.ii', 'OtherFF'], 3],
  1082. ['Biomass', ['1.A.4.b.ii', 'Biomass'], 3],
  1083. # 1.A.4.b.iii Other (please specify)
  1084. ['1.A.4.b.iii Other (please specify)', ['1.A.4.b.iii', 'Total'], 2],
  1085. # CYP, USA
  1086. ['Residential', ['1.A.4.b.iii.1', 'Total'], 3],
  1087. ['Liquid Fuels', ['1.A.4.b.iii.1', 'Liquid'], 3],
  1088. ['Solid Fuels', ['1.A.4.b.iii.1', 'Solid'], 3],
  1089. ['Gaseous Fuels', ['1.A.4.b.iii.1', 'Gaseous'], 3],
  1090. ['Other Fossil Fuels', ['1.A.4.b.iii.1', 'OtherFF'], 3],
  1091. ['Peat', ['1.A.4.b.iii.1', 'Peat'], 3],
  1092. ['Biomass', ['1.A.4.b.iii.1', 'Biomass'], 3],
  1093. # c. Agriculture/forestry/fishing
  1094. ['c. Agriculture/forestry/fishing', ['1.A.4.c', 'Total'], 1],
  1095. ['Liquid fuels', ['1.A.4.c', 'Liquid'], 2],
  1096. ['Solid fuels', ['1.A.4.c', 'Solid'], 2],
  1097. ['Gaseous fuels', ['1.A.4.c', 'Gaseous'], 2],
  1098. ['Other fossil fuels(4)', ['1.A.4.c', 'OtherFF'], 2],
  1099. ['Peat(5)', ['1.A.4.c', 'Peat'], 2],
  1100. ['Biomass(6)', ['1.A.4.c', 'Biomass'], 2],
  1101. # i. Stationary
  1102. ['i. Stationary', ['1.A.4.c.i', 'Total'], 2],
  1103. ['Liquid fuels', ['1.A.4.c.i', 'Liquid'], 3],
  1104. ['Solid fuels', ['1.A.4.c.i', 'Solid'], 3],
  1105. ['Gaseous fuels', ['1.A.4.c.i', 'Gaseous'], 3],
  1106. ['Other fossil fuels(4)', ['1.A.4.c.i', 'OtherFF'], 3],
  1107. ['Peat(5)', ['1.A.4.c.i', 'Peat'], 3],
  1108. ['Biomass(6)', ['1.A.4.c.i', 'Biomass'], 3],
  1109. # ii. Off-road vehicles and other machinery
  1110. ['ii. Off-road vehicles and other machinery', ['1.A.4.c.ii', 'Total'], 2],
  1111. ['Gasoline', ['1.A.4.c.ii', 'Gasoline'], 3],
  1112. ['Diesel oil', ['1.A.4.c.ii', 'DieselOil'], 3],
  1113. ['Liquefied petroleum gases (LPG)', ['1.A.4.c.ii', 'LPG'], 3],
  1114. ['Other liquid fuels (please specify)', ['1.A.4.c.ii', 'OtherLiquid'], 3],
  1115. ['Other Kerosene', ['1.A.4.c.ii', 'Kerosene'], 4], # HRV
  1116. ['Lubricants', ['1.A.4.c.ii', 'Lubricants'], 4], # HRV
  1117. ['Gasoil', ['1.A.4.c.ii', 'Gasoil'], 4], # FIN
  1118. ['Marine gasoil', ['1.A.4.c.ii', 'MarineGasoil'], 4], # NOR
  1119. ['heavy fuel oil', ['1.A.4.c.ii', 'HeavyFuelOil'], 4], # NOR
  1120. ['Other motor fuels', ['1.A.4.c.ii', 'OMotorFuels'], 4], # RUS
  1121. ['Biodiesel (5 percent fossil portion)', ['1.A.4.c.ii', 'OLBiodieselFC'], 4], # CAN
  1122. ['Gaseous fuels', ['1.A.4.c.ii', 'Gaseous'], 3],
  1123. ['Biomass(6)', ['1.A.4.c.ii', 'Biomass'], 3],
  1124. ['Other fossil fuels (please specify)(4)', ['1.A.4.c.ii', 'OtherFF'], 3],
  1125. ['fossil part of biodiesel', ['1.A.4.c.ii', 'OFFBiodieselFC'], 4],
  1126. ['Fossil part of biodiesel and biogasoline', ['1.A.4.c.ii', 'OFFBiofuelFC'], 4],
  1127. ['Biodiesel (fossil component)', ['1.A.4.c.ii', 'OFFBiodieselFC'], 4], # LUX
  1128. ['Alkylate Gasoline', ['1.A.4.c.ii', 'OFFAlkylateGasoline'], 4], # LIE
  1129. # iii. Fishing
  1130. ['iii. Fishing', ['1.A.4.c.iii', 'Total'], 2],
  1131. ['Residual fuel oil', ['1.A.4.c.iii', 'ResFuelOil'], 3],
  1132. ['Gas/diesel oil', ['1.A.4.c.iii', 'GasDieselOil'], 3],
  1133. ['Gasoline', ['1.A.4.c.iii', 'Gasoline'], 3],
  1134. ['Other liquid fuels (please specify)', ['1.A.4.c.iii', 'OtherLiquid'], 3],
  1135. ['Biodiesel (5 percent fossil portion)', ['1.A.4.c.iii', 'OLBiodieselFC'], 4], # CAN
  1136. ['Gaseous fuels', ['1.A.4.c.iii', 'Gaseous'], 3],
  1137. ['Biomass(6)', ['1.A.4.c.iii', 'Biomass'], 3],
  1138. ['Other fossil fuels (please specify)(4)', ['1.A.4.c.iii', 'OtherFF'], 3],
  1139. ['Fossil part of biodiesel and biogasoline', ['1.A.4.c.iii', 'OFFBiofuelFC'], 3],
  1140. # 1.A.5 Other (Not specified elsewhere)(14)
  1141. ['1.A.5 Other (Not specified elsewhere)(14)', ['1.A.5', 'Total'], 0],
  1142. # a. Stationary (please specify)
  1143. ['a. Stationary (please specify)', ['1.A.5.a', 'Total'], 1],
  1144. # temp
  1145. ['Liquid Fuels', ['1.A.5.a', 'Liquid'], 2],
  1146. ['Solid Fuels', ['1.A.5.a', 'Solid'], 2],
  1147. ['Gaseous Fuels', ['1.A.5.a', 'Gaseous'], 2],
  1148. ['Other Fossil Fuels', ['1.A.5.a', 'OtherFF'], 2],
  1149. ['Peat', ['1.A.5.a', 'Peat'], 2],
  1150. ['Biomass', ['1.A.5.a', 'Biomass'], 2],
  1151. # temp
  1152. # GBK, GBR
  1153. ['Military fuel use', ['1.A.5.a.i', 'Total'], 2],
  1154. ['Liquid Fuels', ['1.A.5.a.i', 'Liquid'], 3],
  1155. ['Solid Fuels', ['1.A.5.a.i', 'Solid'], 3],
  1156. ['Gaseous Fuels', ['1.A.5.a.i', 'Gaseous'], 3],
  1157. ['Other Fossil Fuels', ['1.A.5.a.i', 'OtherFF'], 3],
  1158. ['Peat', ['1.A.5.a.i', 'Peat'], 3],
  1159. ['Biomass', ['1.A.5.a.i', 'Biomass'], 3],
  1160. # TUR
  1161. ['Liquid fuels', ['1.A.5.a', 'Liquid'], 2],
  1162. # ESP, FIN, SWE
  1163. ['Other non-specified', ['1.A.5.a.ii', 'Total'], 2],
  1164. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1165. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1166. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1167. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1168. ['Peat', ['1.A.5.a.ii', 'Peat'], 3],
  1169. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1170. # ROU, SVK, RUS
  1171. ['Other', ['1.A.5.a.ii', 'Total'], 2],
  1172. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1173. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1174. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1175. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1176. ['Peat', ['1.A.5.a.ii', 'Peat'], 3],
  1177. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1178. # FRA, FRK
  1179. ['Other not specified', ['1.A.5.a.ii', 'Total'], 2],
  1180. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1181. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1182. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1183. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1184. ['Peat', ['1.A.5.a.ii', 'Peat'], 3],
  1185. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1186. # CYP
  1187. ['Other (not specified elsewhere)', ['1.A.5.a.ii', 'Total'], 2],
  1188. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1189. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1190. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1191. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1192. ['Peat', ['1.A.5.a.ii', 'Peat'], 3],
  1193. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1194. # NOR, HUN
  1195. ['Military', ['1.A.5.a.i', 'Total'], 2],
  1196. ['Liquid Fuels', ['1.A.5.a.i', 'Liquid'], 3],
  1197. ['Solid Fuels', ['1.A.5.a.i', 'Solid'], 3],
  1198. ['Gaseous Fuels', ['1.A.5.a.i', 'Gaseous'], 3],
  1199. ['Other Fossil Fuels', ['1.A.5.a.i', 'OtherFF'], 3],
  1200. ['Peat', ['1.A.5.a.i', 'Peat'], 3],
  1201. ['Biomass', ['1.A.5.a.i', 'Biomass'], 3],
  1202. ['Non-fuel Use', ['1.A.5.a.iii', 'Total'], 2],
  1203. ['Liquid Fuels', ['1.A.5.a.iii', 'Liquid'], 3],
  1204. # DNM, DKE, DNK
  1205. ['Other stationary combustion', ['1.A.5.a.ii', 'Total'], 2],
  1206. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1207. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1208. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1209. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1210. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1211. # LUX
  1212. ['Stationary', ['1.A.5.a.ii', 'Total'], 2],
  1213. ['Liquid Fuels', ['1.A.5.a.ii', 'Liquid'], 3],
  1214. ['Solid Fuels', ['1.A.5.a.ii', 'Solid'], 3],
  1215. ['Gaseous Fuels', ['1.A.5.a.ii', 'Gaseous'], 3],
  1216. ['Other Fossil Fuels', ['1.A.5.a.ii', 'OtherFF'], 3],
  1217. ['Biomass', ['1.A.5.a.ii', 'Biomass'], 3],
  1218. # USA
  1219. ['Incineration of Waste', ['1.A.5.a.iv', 'Total'], 2],
  1220. ['Liquid Fuels', ['1.A.5.a.iv', 'Liquid'], 3],
  1221. ['Solid Fuels', ['1.A.5.a.iv', 'Solid'], 3],
  1222. ['Gaseous Fuels', ['1.A.5.a.iv', 'Gaseous'], 3],
  1223. ['Other Fossil Fuels', ['1.A.5.a.iv', 'OtherFF'], 3],
  1224. ['Peat', ['1.A.5.a.iv', 'Peat'], 3],
  1225. ['Biomass', ['1.A.5.a.iv', 'Biomass'], 3],
  1226. ['U.S. Territories', ['1.A.5.a.v', 'Total'], 2],
  1227. ['Liquid Fuels', ['1.A.5.a.v', 'Liquid'], 3],
  1228. ['Solid Fuels', ['1.A.5.a.v', 'Solid'], 3],
  1229. ['Gaseous Fuels', ['1.A.5.a.v', 'Gaseous'], 3],
  1230. ['Other Fossil Fuels', ['1.A.5.a.v', 'OtherFF'], 3],
  1231. ['Peat', ['1.A.5.a.v', 'Peat'], 3],
  1232. ['Biomass', ['1.A.5.a.v', 'Biomass'], 3],
  1233. ['Non Energy Use', ['1.A.5.a.iii', 'Total'], 2],
  1234. ['Liquid Fuels', ['1.A.5.a.iii', 'Liquid'], 3],
  1235. ['Solid Fuels', ['1.A.5.a.iii', 'Solid'], 3],
  1236. ['Gaseous Fuels', ['1.A.5.a.iii', 'Gaseous'], 3],
  1237. ['Other Fossil Fuels', ['1.A.5.a.iii', 'OtherFF'], 3],
  1238. ['Peat', ['1.A.5.a.iii', 'Peat'], 3],
  1239. ['Biomass', ['1.A.5.a.iii', 'Biomass'], 3],
  1240. # b. Mobile (please specify)
  1241. ['b. Mobile (please specify)', ['1.A.5.b', 'Total'], 1],
  1242. # temp
  1243. ['Liquid Fuels', ['1.A.5.b', 'Liquid'], 2],
  1244. ['Solid Fuels', ['1.A.5.b', 'Solid'], 2],
  1245. ['Gaseous Fuels', ['1.A.5.b', 'Gaseous'], 2],
  1246. ['Other Fossil Fuels', ['1.A.5.b', 'OtherFF'], 2],
  1247. ['Biomass', ['1.A.5.b', 'Biomass'], 2],
  1248. # temp
  1249. # GBK, GBR
  1250. ['Military aviation and naval shipping', ['1.A.5.b.i', 'Total'], 2],
  1251. ['Liquid Fuels', ['1.A.5.b.i', 'Liquid'], 3],
  1252. # HRV
  1253. ['Military aviation component', ['1.A.5.b.ii', 'Total'], 2],
  1254. ['Liquid Fuels', ['1.A.5.b.ii', 'Liquid'], 3],
  1255. ['Solid Fuels', ['1.A.5.b.ii', 'Solid'], 3],
  1256. ['Gaseous Fuels', ['1.A.5.b.ii', 'Gaseous'], 3],
  1257. ['Other Fossil Fuels', ['1.A.5.b.ii', 'OtherFF'], 3],
  1258. ['Biomass', ['1.A.5.b.ii', 'Biomass'], 3],
  1259. ['Military water-borne component', ['1.A.5.b.iii', 'Total'], 2],
  1260. ['Liquid Fuels', ['1.A.5.b.iii', 'Liquid'], 3],
  1261. ['Solid Fuels', ['1.A.5.b.iii', 'Solid'], 3],
  1262. ['Gaseous Fuels', ['1.A.5.b.iii', 'Gaseous'], 3],
  1263. ['Other Fossil Fuels', ['1.A.5.b.iii', 'OtherFF'], 3],
  1264. ['Biomass', ['1.A.5.b.iii', 'Biomass'], 3],
  1265. # ESP, FIN
  1266. ['Other non-specified', ['1.A.5.b.iv', 'Total'], 2],
  1267. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1268. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1269. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1270. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1271. ['Peat', ['1.A.5.b.iv', 'Peat'], 3],
  1272. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1273. # NLD, DKE, DNM, DNK, SWE, UKR
  1274. ['Military use', ['1.A.5.b.v', 'Total'], 2],
  1275. ['Liquid Fuels', ['1.A.5.b.v', 'Liquid'], 3],
  1276. ['Solid Fuels', ['1.A.5.b.v', 'Solid'], 3],
  1277. ['Gaseous Fuels', ['1.A.5.b.v', 'Gaseous'], 3],
  1278. ['Other Fossil Fuels', ['1.A.5.b.v', 'OtherFF'], 3],
  1279. ['Peat', ['1.A.5.b.v', 'Peat'], 3],
  1280. ['Biomass', ['1.A.5.b.v', 'Biomass'], 3],
  1281. # AUT, NOR, USA, CHE, HUN, LTU
  1282. ['Military', ['1.A.5.b.v', 'Total'], 2],
  1283. ['Liquid Fuels', ['1.A.5.b.v', 'Liquid'], 3],
  1284. ['Gaseous Fuels', ['1.A.5.b.v', 'Gaseous'], 3],
  1285. ['Other Fossil Fuels', ['1.A.5.b.v', 'OtherFF'], 3],
  1286. ['Biomass', ['1.A.5.b.v', 'Biomass'], 3],
  1287. # PRT
  1288. ['Military Aviation', ['1.A.5.b.ii', 'Total'], 2],
  1289. ['Liquid Fuels', ['1.A.5.b.ii', 'Liquid'], 3],
  1290. # ROU, MLT
  1291. ['Other', ['1.A.5.b.iv', 'Total'], 2],
  1292. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1293. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1294. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1295. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1296. ['Peat', ['1.A.5.b.iv', 'Peat'], 3],
  1297. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1298. # FRA, FRK
  1299. ['Other not specified', ['1.A.5.b.iv', 'Total'], 2],
  1300. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1301. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1302. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1303. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1304. ['Peat', ['1.A.5.b.iv', 'Peat'], 3],
  1305. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1306. # CYP
  1307. ['1A5b i Mobile (aviation component)', ['1.A.5.b.vi', 'Total'], 2],
  1308. ['Liquid Fuels', ['1.A.5.b.vi', 'Liquid'], 3],
  1309. # GBK, GBR
  1310. ['Lubricants used in 2-stroke engines', ['1.A.5.b.vii', 'Total'], 2],
  1311. ['Liquid Fuels', ['1.A.5.b.vii', 'Liquid'], 3],
  1312. # DNM, DKE, DNK
  1313. ['Recreational crafts', ['1.A.5.b.viii', 'Total'], 2],
  1314. ['Liquid Fuels', ['1.A.5.b.viii', 'Liquid'], 3],
  1315. ['Solid Fuels', ['1.A.5.b.viii', 'Solid'], 3],
  1316. ['Gaseous Fuels', ['1.A.5.b.viii', 'Gaseous'], 3],
  1317. ['Other Fossil Fuels', ['1.A.5.b.viii', 'OtherFF'], 3],
  1318. ['Biomass', ['1.A.5.b.viii', 'Biomass'], 3],
  1319. # SVK
  1320. ['Military use Jet Kerosene', ['1.A.5.b.ix', 'Total'], 2],
  1321. ['Liquid Fuels', ['1.A.5.b.ix', 'Liquid'], 3],
  1322. ['Military Gasoline', ['1.A.5.b.x', 'Total'], 2],
  1323. ['Liquid Fuels', ['1.A.5.b.x', 'Liquid'], 3],
  1324. ['Biomass', ['1.A.5.b.ix', 'Biomass'], 3],
  1325. ['Military Diesel Oil', ['1.A.5.b.xi', 'Total'], 2],
  1326. ['Liquid Fuels', ['1.A.5.b.xi', 'Liquid'], 3],
  1327. ['Biomass', ['1.A.5.b.xi', 'Biomass'], 3],
  1328. # BEL
  1329. ['Military Use', ['1.A.5.b.v', 'Total'], 2],
  1330. ['Liquid Fuels', ['1.A.5.b.v', 'Liquid'], 3],
  1331. ['Solid Fuels', ['1.A.5.b.v', 'Solid'], 3],
  1332. ['Gaseous Fuels', ['1.A.5.b.v', 'Gaseous'], 3],
  1333. ['Other Fossil Fuels', ['1.A.5.b.v', 'OtherFF'], 3],
  1334. ['Biomass', ['1.A.5.b.v', 'Biomass'], 3],
  1335. # AUS
  1336. ['Military Transport', ['1.A.5.b.xii', 'Total'], 2],
  1337. ['Liquid Fuels', ['1.A.5.b.xii', 'Liquid'], 3],
  1338. ['Solid Fuels', ['1.A.5.b.xii', 'Solid'], 3],
  1339. ['Gaseous Fuels', ['1.A.5.b.xii', 'Gaseous'], 3],
  1340. ['Other Fossil Fuels', ['1.A.5.b.xii', 'OtherFF'], 3],
  1341. ['Biomass', ['1.A.5.b.xii', 'Biomass'], 3],
  1342. # CZE
  1343. ['Agriculture and Forestry and Fishing', ['1.A.5.b.xiii', 'Total'], 2],
  1344. ['Liquid Fuels', ['1.A.5.b.xiii', 'Liquid'], 3],
  1345. ['Solid Fuels', ['1.A.5.b.xiii', 'Solid'], 3],
  1346. ['Gaseous Fuels', ['1.A.5.b.xiii', 'Gaseous'], 3],
  1347. ['Other Fossil Fuels', ['1.A.5.b.xiii', 'OtherFF'], 3],
  1348. ['Biomass', ['1.A.5.b.xiii', 'Biomass'], 3],
  1349. ['Other mobile sources not included elsewhere', ['1.A.5.b.iv', 'Total'], 2],
  1350. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1351. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1352. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1353. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1354. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1355. # SVN
  1356. ['Military use of fuels', ['1.A.5.b.v', 'Total'], 2],
  1357. ['Liquid Fuels', ['1.A.5.b.v', 'Liquid'], 3],
  1358. # LUX
  1359. ['Unspecified Mobile', ['1.A.5.b.iv', 'Total'], 2],
  1360. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1361. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1362. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1363. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1364. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1365. # LVA
  1366. ['Mobile', ['1.A.5.b.iv', 'Total'], 2],
  1367. ['Liquid Fuels', ['1.A.5.b.iv', 'Liquid'], 3],
  1368. ['Solid Fuels', ['1.A.5.b.iv', 'Solid'], 3],
  1369. ['Gaseous Fuels', ['1.A.5.b.iv', 'Gaseous'], 3],
  1370. ['Other Fossil Fuels', ['1.A.5.b.iv', 'OtherFF'], 3],
  1371. ['Biomass', ['1.A.5.b.iv', 'Biomass'], 3],
  1372. # CAN
  1373. ['Domestic Military (Aviation)', ['1.A.5.b.ii', 'Total'], 2],
  1374. ['Liquid Fuels', ['1.A.5.b.ii', 'Liquid'], 3],
  1375. ['Solid Fuels', ['1.A.5.b.ii', 'Solid'], 3],
  1376. ['Gaseous Fuels', ['1.A.5.b.ii', 'Gaseous'], 3],
  1377. ['Other Fossil Fuels', ['1.A.5.b.ii', 'OtherFF'], 3],
  1378. ['Biomass', ['1.A.5.b.ii', 'Biomass'], 3],
  1379. ['Military Water-borne Navigation', ['1.A.5.b.iii', 'Total'], 2],
  1380. ['Liquid Fuels', ['1.A.5.b.iii', 'Liquid'], 3],
  1381. ['Solid Fuels', ['1.A.5.b.iii', 'Solid'], 3],
  1382. ['Gaseous Fuels', ['1.A.5.b.iii', 'Gaseous'], 3],
  1383. ['Other Fossil Fuels', ['1.A.5.b.iii', 'OtherFF'], 3],
  1384. ['Biomass', ['1.A.5.b.iii', 'Biomass'], 3],
  1385. # ESP, FIN
  1386. # Information Item
  1387. ['Information item:(15)', ['\IGNORE', '\IGNORE'], 0],
  1388. ['Waste incineration with energy recovery included as:', ['\IGNORE', '\IGNORE'], 1],
  1389. ['Biomass(6)', ['\IGNORE', '\IGNORE'], 1],
  1390. ['Fossil fuels(4)', ['\IGNORE', '\IGNORE'], 1],
  1391. ],
  1392. "entity_mapping": {
  1393. 'EMISSIONS CH4': "CH4",
  1394. 'EMISSIONS CO2(2)': "CO2",
  1395. 'EMISSIONS N2O': "N2O",
  1396. },
  1397. }, # tested
  1398. "Table1.B.1": {
  1399. "status": "tested",
  1400. "table": {
  1401. "firstrow": 5,
  1402. "lastrow": 19,
  1403. "header": ['group', 'entity', 'entity', 'unit'],
  1404. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1405. "categories": ["category"],
  1406. "cols_to_ignore": [
  1407. 'ACTIVITY DATA Amount of fuel produced',
  1408. 'IMPLIED EMISSION FACTORS CH4(1)',
  1409. 'IMPLIED EMISSION FACTORS CO2',
  1410. 'EMISSIONS CH4 Recovery/Flaring(2)',
  1411. ],
  1412. "stop_cats": ["", np.nan],
  1413. "unit_info": unit_info["default"],
  1414. },
  1415. "sector_mapping": [
  1416. ['1. B. 1. a. Coal mining and handling', ['1.B.1.a'], 0],
  1417. ['i. Underground mines(4)', ['1.B.1.a.i'], 1],
  1418. ['Mining activities', ['1.B.1.a.i.1'], 2],
  1419. ['Post-mining activities', ['1.B.1.a.i.2'], 2],
  1420. ['Abandoned underground mines', ['1.B.1.a.i.3'], 2],
  1421. ['ii. Surface mines(4)', ['1.B.1.a.ii'], 1],
  1422. ['Mining activities', ['1.B.1.a.ii.1'], 2],
  1423. ['Post-mining activities', ['1.B.1.a.ii.2'], 2],
  1424. ['1. B. 1. b. Solid fuel transformation(5)', ['1.B.1.b'], 0],
  1425. ['1. B. 1. c. Other (please specify)(6)', ['1.B.1.c'], 0],
  1426. ['Flaring', ['1.B.1.c.i'], 1], # UKR, AUS
  1427. ['Flaring of gas', ['1.B.1.c.i'], 1], # SWE
  1428. ['Coal Dumps', ['1.B.1.c.ii'], 1], # JPN
  1429. ['SO2 scrubbing', ['1.B.1.c.iii'], 1], # SVN
  1430. ['Flaring of coke oven gas', ['1.B.1.c.iv'], 1], # KAZ
  1431. ['Emisson from Coke Oven Gas Subsystem', ['1.B.1.c.iv'], 1], # POL
  1432. ],
  1433. "entity_mapping": {
  1434. 'EMISSIONS CH4 Emissions(3)': 'CH4',
  1435. 'EMISSIONS CO2 Emissions': 'CO2',
  1436. },
  1437. "coords_defaults": {
  1438. "class": "Total",
  1439. },
  1440. }, # tested
  1441. "Table1.B.2": {
  1442. "status": "tested",
  1443. "table": {
  1444. "firstrow": 5,
  1445. "lastrow": 33,
  1446. "header": ['group', 'entity', 'entity', 'unit'],
  1447. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1448. "categories": ["category"],
  1449. "cols_to_ignore": [
  1450. 'ACTIVITY DATA(1) Description(1)',
  1451. 'ACTIVITY DATA(1) Unit(1)',
  1452. 'ACTIVITY DATA(1) Value',
  1453. 'IMPLIED EMISSION FACTORS CO2(2)',
  1454. 'IMPLIED EMISSION FACTORS CH4',
  1455. 'IMPLIED EMISSION FACTORS N2O',
  1456. 'EMISSIONS CO2 Amount captured',
  1457. ],
  1458. "stop_cats": [".", np.nan],
  1459. "unit_info": unit_info["default"],
  1460. },
  1461. "sector_mapping": [
  1462. ['1. B. 2. a. Oil(6)', ['1.B.2.a'], 0],
  1463. ['1. Exploration', ['1.B.2.a.1'], 1],
  1464. ['2. Production(7)', ['1.B.2.a.2'], 1],
  1465. ['3. Transport', ['1.B.2.a.3'], 1],
  1466. ['4. Refining/storage', ['1.B.2.a.4'], 1],
  1467. ['5. Distribution of oil products', ['1.B.2.a.5'], 1],
  1468. ['6. Other', ['1.B.2.a.6'], 1],
  1469. ['1. B. 2. b. Natural gas', ['1.B.2.b'], 0],
  1470. ['1. Exploration', ['1.B.2.b.1'], 1],
  1471. ['2. Production(7)', ['1.B.2.b.2'], 1],
  1472. ['3. Processing', ['1.B.2.b.3'], 1],
  1473. ['4. Transmission and storage', ['1.B.2.b.4'], 1],
  1474. ['5. Distribution', ['1.B.2.b.5'], 1],
  1475. ['6. Other', ['1.B.2.b.6'], 1],
  1476. ['1. B. 2. c. Venting and flaring', ['1.B.2.c'], 0],
  1477. ['Venting', ['1.B.2.c-ven'], 1],
  1478. ['i. Oil', ['1.B.2.c-ven.i'], 2],
  1479. ['ii. Gas', ['1.B.2.c-ven.ii'], 2],
  1480. ['iii. Combined', ['1.B.2.c-ven.iii'], 2],
  1481. ['Flaring(8)', ['1.B.2.c-fla'], 1],
  1482. ['i. Oil', ['1.B.2.c-fla.i'], 2],
  1483. ['ii. Gas', ['1.B.2.c-fla.ii'], 2],
  1484. ['iii. Combined', ['1.B.2.c-fla.iii'], 2],
  1485. ['1.B.2.d. Other (please specify)(9)', ['1.B.2.d'], 0],
  1486. ['Groundwater extraction and CO2 mining', ['1.B.2.d.i'], 1], # HUN
  1487. ['Geothermal', ['1.B.2.d.ii'], 1], # NOR, DEU, PRT, NZL
  1488. ['Geothermal Energy', ['1.B.2.d.ii'], 1], # ISL
  1489. ['Geothermal Generation', ['1.B.2.d.ii'], 1], # JPN
  1490. ['Geotherm', ['1.B.2.d.ii'], 1], # ITA
  1491. ['City Gas Production', ['1.B.2.d.iii'], 1], # PRT
  1492. ['Other', ['1.B.2.d.iv'], 1], # UKR, ROU
  1493. ['Other non-specified', ['1.B.2.d.iv'], 1], # SWE
  1494. ['Flaring in refineries', ['1.B.2.d.v'], 1], # ITA
  1495. ['LPG transport', ['1.B.2.d.vi'], 1], # GRC
  1496. ['Distribution of town gas', ['1.B.2.d.vii'], 1], # FIN
  1497. ['Petrol distribution', ['1.B.2.d.viii'], 1], # IRL
  1498. ['Natural Gas Transport', ['1.B.2.d.ix'], 1], # BLR
  1499. ['Natural gas exploration - N2O emissions', ['1.B.2.d.x'], 1], # GBR, GBK
  1500. ],
  1501. "entity_mapping": {
  1502. 'EMISSIONS CH4 (4) Amount captured': 'CH4',
  1503. 'EMISSIONS CO2 Emissions(3)': 'CO2',
  1504. 'EMISSIONS N2O Amount captured': 'N2O',
  1505. },
  1506. "coords_defaults": {
  1507. "class": "Total",
  1508. },
  1509. }, # tested
  1510. "Table1.C": {
  1511. "status": "tested",
  1512. "table": {
  1513. "firstrow": 5,
  1514. "lastrow": 24,
  1515. "header": ['group', 'entity', 'unit'],
  1516. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1517. "categories": ["category"],
  1518. "cols_to_ignore": [
  1519. 'ACTIVITY DATA CO2 transported or injected(1)',
  1520. 'IMPLIED EMISSION FACTORS CO2',
  1521. ],
  1522. "stop_cats": ["", np.nan],
  1523. "unit_info": unit_info["default"],
  1524. },
  1525. "sector_mapping": [
  1526. ['1. Transport of CO2', ['1.C.1']],
  1527. ['a. Pipelines', ['1.C.1.a']],
  1528. ['b. Ships', ['1.C.1.b']],
  1529. ['c. Other', ['1.C.1.c']],
  1530. ['2. Injection and storage(3)', ['1.C.2']],
  1531. ['a. Injection', ['1.C.2.a']],
  1532. ['b. Storage', ['1.C.2.b']],
  1533. ['3. Other', ['1.C.3']],
  1534. ['Information item(4, 5)', ['\IGNORE']],
  1535. ['Total amount captured for storage', ['M.Info.A.TACS']],
  1536. ['Total amount of imports for storage', ['M.Info.A.TAIS']],
  1537. ['Total A', ['M.Info.A']],
  1538. ['Total amount of exports for storage', ['M.Info.B.TAES']],
  1539. ['Total amount of CO2 injected at storage sites', ['M.Info.B.TAI']],
  1540. ['Total leakage from transport, injection and storage', ['M.Info.B.TLTIS']],
  1541. ['Total B', ['M.Info.B']],
  1542. ['Difference (A-B)(6)', ['\IGNORE']],
  1543. ],
  1544. "entity_mapping": {
  1545. 'EMISSIONS CO2(2)': 'CO2',
  1546. },
  1547. "coords_defaults": {
  1548. "class": "Total",
  1549. },
  1550. }, # tested
  1551. "Table1.D": {
  1552. "status": "TODO",
  1553. "table": {
  1554. "firstrow": 5,
  1555. "lastrow": 20,
  1556. "header": ['group', 'entity', 'unit'],
  1557. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1558. "categories": ["category", "class"],
  1559. "cols_to_ignore": [],
  1560. "stop_cats": ["", np.nan],
  1561. "unit_info": unit_info["default"],
  1562. },
  1563. "sector_mapping": [
  1564. ],
  1565. "entity_mapping": [],
  1566. "coords_defaults": {
  1567. "class": "Total",
  1568. },
  1569. }, # TODO
  1570. "Table2(I)s1": {
  1571. "status": "tested",
  1572. "table": {
  1573. "firstrow": 5,
  1574. "lastrow": 31,
  1575. "header": ['entity', 'unit'],
  1576. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1577. "categories": ["category"],
  1578. "cols_to_ignore": [],
  1579. "stop_cats": ["", np.nan],
  1580. "unit_info": unit_info["industry"],
  1581. },
  1582. "sector_mapping": [
  1583. ['Total industrial processes', ['2']],
  1584. ['A. Mineral industry', ['2.A']],
  1585. ['1. Cement production', ['2.A.1']],
  1586. ['2. Lime production', ['2.A.2']],
  1587. ['3. Glass production', ['2.A.3']],
  1588. ['4. Other process uses of carbonates', ['2.A.4']],
  1589. ['B. Chemical industry', ['2.B']],
  1590. ['1. Ammonia production', ['2.B.1']],
  1591. ['2. Nitric acid production', ['2.B.2']],
  1592. ['3. Adipic acid production', ['2.B.3']],
  1593. ['4. Caprolactam, glyoxal and glyoxylic acid production', ['2.B.4']],
  1594. ['5. Carbide production', ['2.B.5']],
  1595. ['6. Titanium dioxide production', ['2.B.6']],
  1596. ['7. Soda ash production', ['2.B.7']],
  1597. ['8. Petrochemical and carbon black production', ['2.B.8']],
  1598. ['9. Fluorochemical production', ['2.B.9']],
  1599. ['10. Other (as specified in table 2(I).A-H)', ['2.B.10']],
  1600. ['C. Metal industry', ['2.C']],
  1601. ['1. Iron and steel production', ['2.C.1']],
  1602. ['2. Ferroalloys production', ['2.C.2']],
  1603. ['3. Aluminium production', ['2.C.3']],
  1604. ['4. Magnesium production', ['2.C.4']],
  1605. ['5. Lead production', ['2.C.5']],
  1606. ['6. Zinc production', ['2.C.6']],
  1607. ['7. Other (as specified in table 2(I).A-H)', ['2.C.7']],
  1608. ],
  1609. "entity_mapping": {
  1610. 'HFCs(1)': 'HFCS (AR4GWP100)',
  1611. 'PFCs(1)': 'PFCS (AR4GWP100)',
  1612. 'Unspecified mix of HFCs and PFCs(1)': 'UnspMixOfHFCsPFCs (AR4GWP100)',
  1613. },
  1614. "coords_defaults": {
  1615. "class": "Total",
  1616. },
  1617. }, # tested
  1618. "Table2(I)s2": {
  1619. "status": "tested",
  1620. "table": {
  1621. "firstrow": 5,
  1622. "lastrow": 29,
  1623. "header": ['entity', 'unit'],
  1624. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1625. "categories": ["category"],
  1626. "cols_to_ignore": [],
  1627. "stop_cats": ["", np.nan],
  1628. "unit_info": unit_info["industry"],
  1629. },
  1630. "sector_mapping": [
  1631. ['D. Non-energy products from fuels and solvent use', ['2.D']],
  1632. ['1. Lubricant use', ['2.D.1']],
  1633. ['2. Paraffin wax use', ['2.D.2']],
  1634. ['3. Other', ['2.D.3']],
  1635. ['E. Electronics industry', ['2.E']],
  1636. ['1. Integrated circuit or semiconductor', ['2.E.1']],
  1637. ['2. TFT flat panel display', ['2.E.2']],
  1638. ['3. Photovoltaics', ['2.E.3']],
  1639. ['4. Heat transfer fluid', ['2.E.4']],
  1640. ['5. Other (as specified in table 2(II))', ['2.E.5']],
  1641. ['F. Product uses as substitutes for ODS(2)', ['2.F']],
  1642. ['1. Refrigeration and air conditioning', ['2.F.1']],
  1643. ['2. Foam blowing agents', ['2.F.2']],
  1644. ['3. Fire protection', ['2.F.3']],
  1645. ['4. Aerosols', ['2.F.4']],
  1646. ['5. Solvents', ['2.F.5']],
  1647. ['6. Other applications', ['2.F.6']],
  1648. ['G. Other product manufacture and use', ['2.G']],
  1649. ['1. Electrical equipment', ['2.G.1']],
  1650. ['2. SF6 and PFCs from other product use', ['2.G.2']],
  1651. ['3. N2O from product uses', ['2.G.3']],
  1652. ['4. Other', ['2.G.4']],
  1653. ['H. Other (as specified in tables 2(I).A-H and 2(II))(3)', ['2.H']],
  1654. ],
  1655. "entity_mapping": {
  1656. 'HFCs(1)': 'HFCS (AR4GWP100)',
  1657. 'PFCs(1)': 'PFCS (AR4GWP100)',
  1658. 'Unspecified mix of HFCs and PFCs(1)': 'UnspMixOfHFCsPFCs (AR4GWP100)',
  1659. },
  1660. "coords_defaults": {
  1661. "class": "Total",
  1662. },
  1663. }, # tested
  1664. "Table2(I).A-Hs1": {
  1665. "status": "TODO",
  1666. "table": {
  1667. "firstrow": 5,
  1668. "lastrow": 40,
  1669. "header": ['group', 'entity', 'entity', 'unit'],
  1670. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1671. "categories": ["category"],
  1672. "cols_to_ignore": [],
  1673. "stop_cats": ["", np.nan],
  1674. "unit_info": unit_info["default"],
  1675. },
  1676. "sector_mapping": [
  1677. ],
  1678. "entity_mapping": [],
  1679. "coords_defaults": {
  1680. "class": "Total",
  1681. },
  1682. }, # TODO
  1683. "Table2(I).A-Hs2": {
  1684. "status": "TODO",
  1685. "table": {
  1686. "firstrow": 5,
  1687. "lastrow": 36,
  1688. "header": ['group', 'entity', 'entity', 'unit'],
  1689. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1690. "categories": ["category"],
  1691. "cols_to_ignore": [],
  1692. "stop_cats": ["", np.nan],
  1693. "unit_info": unit_info["default"],
  1694. },
  1695. "sector_mapping": [
  1696. ],
  1697. "entity_mapping": [],
  1698. "coords_defaults": {
  1699. "class": "Total",
  1700. },
  1701. }, # TODO
  1702. "Table2(II)": {
  1703. "status": "tested",
  1704. "table": {
  1705. "firstrow": 5,
  1706. "lastrow": 38,
  1707. "header": ['entity', 'unit'],
  1708. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1709. "categories": ["category"],
  1710. "cols_to_ignore": [],
  1711. "stop_cats": [".", np.nan],
  1712. "unit_info": unit_info["fgases"],
  1713. },
  1714. "sector_mapping": [
  1715. ['Total actual emissions of halocarbons (by chemical) and SF6', ['2']],
  1716. ['B. Chemical industry', ['2.B']],
  1717. ['9. Flurochemical production', ['2.B.9']],
  1718. ['By-product emissions', ['2.B.9.a']],
  1719. ['Fugitive emissions', ['2.B.9.b']],
  1720. ['10. Other', ['2.B.10']],
  1721. ['C. Metal industry', ['2.C']],
  1722. ['3. Aluminium production', ['2.C.3']],
  1723. ['4. Magnesium production', ['2.C.4']],
  1724. ['7. Other', ['2.C.7']],
  1725. ['E. Electronics industry', ['2.E']],
  1726. ['1. Integrated circuit or semiconductor', ['2.E.1']],
  1727. ['2. TFT flat panel display', ['2.E.2']],
  1728. ['3. Photovoltaics', ['2.E.3']],
  1729. ['4. Heat transfer fluid', ['2.E.4']],
  1730. ['5. Other (as specified in table 2(II))', ['2.E.5']],
  1731. ['F. Product uses as substitutes for ODS(2)', ['2.F']],
  1732. ['1. Refrigeration and air conditioning', ['2.F.1']],
  1733. ['2. Foam blowing agents', ['2.F.2']],
  1734. ['3. Fire protection', ['2.F.3']],
  1735. ['4. Aerosols', ['2.F.4']],
  1736. ['5. Solvents', ['2.F.5']],
  1737. ['6. Other applications', ['2.F.6']],
  1738. ['G. Other product manufacture and use', ['2.G']],
  1739. ['1. Electrical equipment', ['2.G.1']],
  1740. ['2. SF6 and PFCs from other product use', ['2.G.2']],
  1741. ['4. Other', ['2.G.4']],
  1742. ['H. Other (please specify)', ['2.H']],
  1743. ['2.H.1 Pulp and paper', ['2.H.1']],
  1744. ['2.H.2 Food and beverages industry', ['2.H.2']],
  1745. ['2.H.3 Other (please specify)', ['2.H.3']],
  1746. ],
  1747. "entity_mapping": {
  1748. 'C 3F8': 'C3F8',
  1749. #'C10F18' 'C2F6' 'C4F10' 'C5F12' 'C6F14' 'CF4'
  1750. 'HFC-125': 'HFC125',
  1751. 'HFC-134': 'HFC134',
  1752. 'HFC-134a': 'HFC134a',
  1753. 'HFC-143': 'HFC143',
  1754. 'HFC-143a': 'HFC143a',
  1755. 'HFC-152': 'HFC152',
  1756. 'HFC-152a': 'HFC152a',
  1757. 'HFC-161': 'HFC161',
  1758. 'HFC-227ea': 'HFC227ea',
  1759. 'HFC-23': 'HFC23',
  1760. 'HFC-236cb': 'HFC236cb',
  1761. 'HFC-236ea': 'HFC236ea',
  1762. 'HFC-236fa': 'HFC236fa',
  1763. 'HFC-245ca': 'HFC245ca',
  1764. 'HFC-245fa': 'HFC245fa',
  1765. 'HFC-32': 'HFC32',
  1766. 'HFC-365mfc': 'HFC365mfc',
  1767. 'HFC-41': 'HFC41',
  1768. 'HFC-43-10mee': 'HFC4310mee',
  1769. 'Unspecified mix of HFCs (1)': 'UnspMixOfHFCs (AR4GWP100)',
  1770. 'Unspecified mix of HFCs and PFCs(1)': 'UnspMixOfHFCsPFCs (AR4GWP100)',
  1771. 'Unspecified mix of PFCs (1)': 'UnspMixOfPFCs (AR4GWP100)',
  1772. 'c-C3F6': 'cC3F6',
  1773. 'c-C4F8': 'cC4F8',
  1774. },
  1775. "coords_defaults": {
  1776. "class": "Total",
  1777. },
  1778. }, # tested
  1779. "Table3s1": { # Agriculture summary sheet 1
  1780. "status": "tested",
  1781. "table": {
  1782. "firstrow": 5,
  1783. "lastrow": 75,
  1784. "header": ['entity', 'unit'],
  1785. "col_for_categories": "GREENHOUSE GAS SOURCE AND",
  1786. "categories": ["category"],
  1787. "cols_to_ignore": [],
  1788. "stop_cats": ["", np.nan],
  1789. "unit_info": unit_info["default"],
  1790. },
  1791. "sector_mapping": [
  1792. ['3. Total agriculture', ['3'], 0],
  1793. # I. Livestock
  1794. ['I. Livestock', ['M.3.LV'], 1],
  1795. # A. Enteric fermentation
  1796. ['A. Enteric fermentation', ['3.A'], 2],
  1797. ['1. Cattle(1)', ['3.A.1'], 3],
  1798. ['Option A:', ['\IGNORE'], 4],
  1799. ['Dairy cattle', ['3.A.1.Aa'], 5],
  1800. ['Non-dairy cattle', ['3.A.1.Ab'], 5],
  1801. ['Option B:', ['\IGNORE'], 4],
  1802. ['Mature dairy cattle', ['3.A.1.Ba'], 5],
  1803. ['Other mature cattle', ['3.A.1.Bb'], 5],
  1804. ['Growing cattle', ['3.A.1.Bc'], 5],
  1805. ['Option C (country-specific):', ['\IGNORE'], 4],
  1806. # all countries not specified explcitly
  1807. ['\C!-AUS-MLT-LUX-POL-SVN-USA\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1808. # Australia
  1809. ['\C-AUS\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1810. ['\C-AUS\ Dairy Cattle', ['3.A.1.C-AUS-a'], 6],
  1811. ['\C-AUS\ Beef Cattle - Pasture', ['3.A.1.C-AUS-b'], 6],
  1812. ['\C-AUS\ Beef Cattle - Feedlot', ['3.A.1.C-AUS-c'], 6],
  1813. # malta
  1814. ['\C-MLT\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1815. ['\C-MLT\ dairy cows', ['3.A.1.C-MLT-a'], 6],
  1816. ['\C-MLT\ non-lactating cows', ['3.A.1.C-MLT-b'], 6],
  1817. ['\C-MLT\ bulls', ['3.A.1.C-MLT-c'], 6],
  1818. ['\C-MLT\ calves', ['3.A.1.C-MLT-d'], 6],
  1819. ['\C-MLT\ growing cattle 1-2 years', ['3.A.1.C-MLT-e'], 6],
  1820. # Luxembourg
  1821. ['\C-LUX\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1822. ['\C-LUX\ Bulls', ['3.A.1.C-LUX-a'], 6],
  1823. ['\C-LUX\ Calves', ['3.A.1.C-LUX-b'], 6],
  1824. ['\C-LUX\ Young Cattle', ['3.A.1.C-LUX-c'], 6],
  1825. ['\C-LUX\ Suckler Cows', ['3.A.1.C-LUX-d'], 6],
  1826. ['\C-LUX\ Bulls under 2 years', ['3.A.1.C-LUX-e'], 6],
  1827. ['\C-LUX\ Dairy Cows', ['3.A.1.C-LUX-f'], 6],
  1828. # Poland
  1829. ['\C-POL\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1830. ['\C-POL\ Bulls (older than 2 years)', ['3.A.1.C-POL-a'], 6],
  1831. ['\C-POL\ Non-dairy Heifers (older than 2 years)', ['3.A.1.C-POL-b'], 6],
  1832. ['\C-POL\ Non-dairy Young Cattle (younger than 1 year)', ['3.A.1.C-POL-c'], 6],
  1833. ['\C-POL\ Dairy Cattle', ['3.A.1.C-POL-d'], 6],
  1834. ['\C-POL\ Non-dairy Young Cattle (1-2 years)', ['3.A.1.C-POL-e'], 6],
  1835. # Slovenia
  1836. ['\C-SVN\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1837. ['\C-SVN\ Dairy cows', ['3.A.1.C-SVN-a'], 6],
  1838. ['\C-SVN\ Non-dairy cattle', ['3.A.1.C-SVN-b'], 6],
  1839. ['\C-SVN\ Other cows', ['3.A.1.C-SVN-c'], 6],
  1840. # USA
  1841. ['\C-USA\ Other (as specified in table 3(I).A)', ['3.A.1.C'], 5],
  1842. ['\C-USA\ Steer Stocker', ['3.A.1.C-USA-a'], 6],
  1843. ['\C-USA\ Heifer Stocker', ['3.A.1.C-USA-b'], 6],
  1844. ['\C-USA\ Beef Cows', ['3.A.1.C-USA-c'], 6],
  1845. ['\C-USA\ Dairy Replacements', ['3.A.1.C-USA-d'], 6],
  1846. ['\C-USA\ Beef Replacements', ['3.A.1.C-USA-e'], 6],
  1847. ['\C-USA\ Steer Feedlot', ['3.A.1.C-USA-f'], 6],
  1848. ['\C-USA\ Heifer Feedlot', ['3.A.1.C-USA-g'], 6],
  1849. ['\C-USA\ Bulls', ['3.A.1.C-USA-h'], 6],
  1850. ['\C-USA\ Dairy Cows', ['3.A.1.C-USA-i'], 6],
  1851. ['\C-USA\ Beef Calves', ['3.A.1.C-USA-j'], 6],
  1852. ['\C-USA\ Dairy Calves', ['3.A.1.C-USA-k'], 6],
  1853. # Other livestock
  1854. ['2. Sheep', ['3.A.2'], 3],
  1855. ['3. Swine', ['3.A.3'], 3],
  1856. ['4. Other livestock', ['3.A.4'], 3],
  1857. ['Buffalo', ['3.A.4.a'], 4],
  1858. ['Camels', ['3.A.4.b'], 4],
  1859. ['Deer', ['3.A.4.c'], 4],
  1860. ['Goats', ['3.A.4.d'], 4],
  1861. ['Horses', ['3.A.4.e'], 4],
  1862. ['Mules and Asses', ['3.A.4.f'], 4],
  1863. ['Poultry', ['3.A.4.g'], 4],
  1864. ['Other (please specify)', ['3.A.4.h'], 4],
  1865. ['Rabbit', ['3.A.4.h.i'], 5],
  1866. ['Reindeer', ['3.A.4.h.ii'], 5],
  1867. ['Ostrich', ['3.A.4.h.iii'], 5],
  1868. ['Fur-bearing Animals', ['3.A.4.h.iv'], 5],
  1869. ['Other', ['3.A.4.h.v'], 5],
  1870. # Manure Management
  1871. ['B. Manure management', ['3.B'], 2],
  1872. ['1. Cattle(1)', ['3.B.1'], 3],
  1873. ['Option A:', ['\IGNORE'], 4],
  1874. ['Dairy cattle', ['3.B.1.Aa'], 5],
  1875. ['Non-dairy cattle', ['3.B.1.Ab'], 5],
  1876. ['Option B:', ['\IGNORE'], 4],
  1877. ['Mature dairy cattle', ['3.B.1.Ba'], 5],
  1878. ['Other mature cattle', ['3.B.1.Bb'], 5],
  1879. ['Growing cattle', ['3.B.1.Bc'], 5],
  1880. ['Option C (country-specific):', ['\IGNORE'], 4],
  1881. # all countries not specified explicitly
  1882. ['\C!-AUS-MLT-LUX-POL-SVN-USA\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1883. # Australia
  1884. ['\C-AUS\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1885. ['\C-AUS\ Dairy Cattle', ['3.B.1.C-AUS-a'], 6],
  1886. ['\C-AUS\ Beef Cattle - Pasture', ['3.B.1.C-AUS-b'], 6],
  1887. ['\C-AUS\ Beef Cattle - Feedlot', ['3.B.1.C-AUS-c'], 6],
  1888. # Malta
  1889. ['\C-MLT\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1890. ['\C-MLT\ dairy cows', ['3.B.1.C-MLT-a'], 6],
  1891. ['\C-MLT\ non-lactating cows', ['3.B.1.C-MLT-b'], 6],
  1892. ['\C-MLT\ bulls', ['3.B.1.C-MLT-c'], 6],
  1893. ['\C-MLT\ calves', ['3.B.1.C-MLT-d'], 6],
  1894. ['\C-MLT\ growing cattle 1-2 years', ['3.B.1.C-MLT-e'], 6],
  1895. # Luxembourg
  1896. ['\C-LUX\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1897. ['\C-LUX\ Bulls', ['3.B.1.C-LUX-a'], 6],
  1898. ['\C-LUX\ Calves', ['3.B.1.C-LUX-b'], 6],
  1899. ['\C-LUX\ Young Cattle', ['3.B.1.C-LUX-c'], 6],
  1900. ['\C-LUX\ Suckler Cows', ['3.B.1.C-LUX-d'], 6],
  1901. ['\C-LUX\ Bulls under 2 years', ['3.B.1.C-LUX-e'], 6],
  1902. ['\C-LUX\ Dairy Cows', ['3.B.1.C-LUX-f'], 6],
  1903. # Poland
  1904. ['\C-POL\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1905. ['\C-POL\ Non-dairy Cattle', ['3.B.1.C-POL-a'], 6],
  1906. ['\C-POL\ Dairy Cattle', ['3.B.1.C-POL-b'], 6],
  1907. # Slovenia
  1908. ['\C-SVN\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1909. ['\C-SVN\ Dairy cows', ['3.B.1.C-SVN-a'], 6],
  1910. ['\C-SVN\ Non-dairy cattle', ['3.B.1.C-SVN-b'], 6],
  1911. ['\C-SVN\ Other cows', ['3.B.1.C-SVN-c'], 6],
  1912. # USA
  1913. ['\C-USA\ Other (as specified in table 3(I).B)', ['3.B.1.C'], 5],
  1914. ['\C-USA\ Dairy Cattle', ['\IGNORE'], 6],
  1915. ['\C-USA\ Non-Dairy Cattle', ['\IGNORE'], 6],
  1916. ['\C-USA\ Steer Stocker', ['3.B.1.C-USA-a'], 6],
  1917. ['\C-USA\ Heifer Stocker', ['3.B.1.C-USA-b'], 6],
  1918. ['\C-USA\ Beef Cows', ['3.B.1.C-USA-c'], 6],
  1919. ['\C-USA\ Dairy Replacements', ['3.B.1.C-USA-d'], 6],
  1920. ['\C-USA\ Beef Replacements', ['3.B.1.C-USA-e'], 6],
  1921. ['\C-USA\ Steer Feedlot', ['3.B.1.C-USA-f'], 6],
  1922. ['\C-USA\ Heifer Feedlot', ['3.B.1.C-USA-g'], 6],
  1923. ['\C-USA\ Bulls', ['3.B.1.C-USA-h'], 6],
  1924. ['\C-USA\ Dairy Cows', ['3.B.1.C-USA-i'], 6],
  1925. ['\C-USA\ Beef Calves', ['3.B.1.C-USA-j'], 6],
  1926. ['\C-USA\ Dairy Calves', ['3.B.1.C-USA-k'], 6],
  1927. # other animals
  1928. ['2. Sheep', ['3.B.2'], 3],
  1929. ['3. Swine', ['3.B.3'], 3],
  1930. ['4. Other livestock', ['3.B.4'], 3],
  1931. ['Buffalo', ['3.B.4.a'], 4],
  1932. ['Camels', ['3.B.4.b'], 4],
  1933. ['Deer', ['3.B.4.c'], 4],
  1934. ['Goats', ['3.B.4.d'], 4],
  1935. ['Horses', ['3.B.4.e'], 4],
  1936. ['Mules and Asses', ['3.B.4.f'], 4],
  1937. ['Poultry', ['3.B.4.g'], 4],
  1938. ['Other (please specify)', ['3.B.4.h'], 4],
  1939. ['Rabbit', ['3.B.4.h.i'], 5],
  1940. ['Reindeer', ['3.B.4.h.ii'], 5],
  1941. ['Ostrich', ['3.B.4.h.iii'], 5],
  1942. ['Fur-bearing Animals', ['3.B.4.h.iv'], 5],
  1943. ['Other', ['3.B.4.h.v'], 5],
  1944. ['5. Indirect N2O emissions', ['3.B.5'], 3],
  1945. ],
  1946. "coords_defaults": {
  1947. "class": "Total",
  1948. },
  1949. }, # tested
  1950. "Table3s2": { # Agriculture summary sheet 2
  1951. "status": "tested",
  1952. "table": {
  1953. "firstrow": 5,
  1954. "lastrow": 18,
  1955. "header": ['entity', 'unit'],
  1956. "col_for_categories": "GREENHOUSE GAS SOURCE AND",
  1957. "categories": ["category"],
  1958. "cols_to_ignore": [],
  1959. "stop_cats": [".", np.nan],
  1960. "unit_info": unit_info["default"],
  1961. },
  1962. "sector_mapping": [
  1963. ['C. Rice cultivation', ['3.C']],
  1964. ['D. Agricultural soils(2) (3) (4)', ['3.D']],
  1965. ['E. Prescribed burning of savannahs', ['3.E']],
  1966. ['E. Prescribed burning of savannas', ['3.E']],
  1967. ['F. Field burning of agricultural residues', ['3.F']],
  1968. ['G. Liming', ['3.G']],
  1969. ['H. Urea application', ['3.H']],
  1970. ['I. Other carbon-containing fertilizers', ['3.I']],
  1971. ['J. Other (please specify)', ['3.J']],
  1972. ['NOx from Manure Management', ['3.J.1']],
  1973. ['3.B NOx Emissions', ['3.J.1']],
  1974. ['NOx from 3B', ['3.J.1']],
  1975. ['NOX emissions from manure management', ['3.J.1']],
  1976. ['NOx from manure management', ['3.J.1']],
  1977. ['Other', ['3.J.2']],
  1978. ['Other UK emissions', ['3.J.2']],
  1979. ['Other non-specified', ['3.J.2']],
  1980. ['OTs and CDs - Livestock', ['3.J.3']],
  1981. ['OTs and CDs - soils', ['3.J.4']],
  1982. ['OTs and CDs - other', ['3.J.5']],
  1983. ['Digestate renewable raw material (storage of N)', ['3.J.6']],
  1984. ['Digestate renewable raw material (atmospheric deposition)', ['3.J.7']],
  1985. ['Digestate renewable raw material (storage of dry matter)', ['3.J.8']],
  1986. ['NOx from Livestock', ['3.J.9']],
  1987. ],
  1988. "coords_defaults": {
  1989. "class": "Total",
  1990. },
  1991. }, # tested
  1992. "Table3.C": { # rice cultivation details
  1993. "status": "tested",
  1994. "table": {
  1995. "firstrow": 5,
  1996. "lastrow": 21,
  1997. "header": ['group', 'entity', 'unit'],
  1998. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  1999. "categories": ["category"],
  2000. "cols_to_ignore": [
  2001. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Harvested area(2)',
  2002. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Organic amendments added(3)',
  2003. 'IMPLIED EMISSION FACTOR (1) CH4',
  2004. ],
  2005. "stop_cats": ["", np.nan],
  2006. "unit_info": unit_info["default"],
  2007. },
  2008. "sector_mapping": [
  2009. ['1. Irrigated', ['3.C.1']],
  2010. ['Continuously flooded', ['3.C.1.a']],
  2011. ['Intermittently flooded Single aeration', ['3.C.1.a.i']],
  2012. ['Intermittently flooded Multiple aeration', ['3.C.1.b.ii']],
  2013. ['2. Rainfed', ['3.C.2']],
  2014. ['Flood prone', ['3.C.2.a']],
  2015. ['Drought prone', ['3.C.2.b']],
  2016. ['3. Deep water', ['3.C.3']],
  2017. ['Water depth 50–100 cm', ['3.C.3.a']],
  2018. ['Water depth > 100 cm', ['3.C.3.b']],
  2019. ['4. Other (please specify)', ['3.C.4']],
  2020. ['Non-specified', ['3.C.4.a']], # EST
  2021. ['Other', ['3.C.4.a']], # DEU
  2022. ['other', ['3.C.4.a']], # LVA
  2023. ['Other cultivation', ['3.C.4.a']], # CZE
  2024. ['Upland rice(4)', ['\IGNORE']],
  2025. ['Total(4)', ['\IGNORE']],
  2026. ],
  2027. "entity_mapping": {
  2028. 'EMISSIONS CH4': 'CH4',
  2029. },
  2030. "coords_defaults": {
  2031. "class": "Total",
  2032. },
  2033. }, # tested
  2034. "Table3.D": { # direct and indirect N2O from soils
  2035. "status": "tested",
  2036. "table": {
  2037. "firstrow": 5,
  2038. "lastrow": 21,
  2039. "header": ['group', 'entity', 'unit'],
  2040. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2041. "categories": ["category"],
  2042. "cols_to_ignore": [
  2043. "ACTIVITY DATA AND OTHER RELATED INFORMATION Description",
  2044. "ACTIVITY DATA AND OTHER RELATED INFORMATION Value",
  2045. "IMPLIED EMISSION FACTORS Value",
  2046. ],
  2047. "stop_cats": ["", np.nan],
  2048. "unit_info": unit_info["default"],
  2049. },
  2050. "sector_mapping": [
  2051. ['a. Direct N2O emissions from managed soils', ['3.D.a']],
  2052. ['1. Inorganic N fertilizers(3)', ['3.D.a.1']],
  2053. ['2. Organic N fertilizers(3)', ['3.D.a.2']],
  2054. ['a. Animal manure applied to soils', ['3.D.a.2.a']],
  2055. ['b. Sewage sludge applied to soils', ['3.D.a.2.b']],
  2056. ['c. Other organic fertilizers applied to soils', ['3.D.a.2.c']],
  2057. ['3. Urine and dung deposited by grazing animals', ['3.D.a.3']],
  2058. ['4. Crop residues', ['3.D.a.4']],
  2059. ['5. Mineralization/immobilization associated with loss/gain of soil organic matter (4)(5)', ['3.D.a.5']],
  2060. ['6. Cultivation of organic soils (i.e. histosols)(2)', ['3.D.a.6']],
  2061. ['7. Other', ['3.D.a.7']],
  2062. ['b. Indirect N2O Emissions from managed soils', ['3.D.b']],
  2063. ['1. Atmospheric deposition(6)', ['3.D.b.1']],
  2064. ['2. Nitrogen leaching and run-off', ['3.D.b.2']],
  2065. ],
  2066. "entity_mapping": {
  2067. 'EMISSIONS N2O': 'N2O',
  2068. },
  2069. "coords_defaults": {
  2070. "class": "Total",
  2071. },
  2072. }, # tested
  2073. "Table3.E": { # savanna burning details
  2074. "status": "tested",
  2075. "table": {
  2076. "firstrow": 5,
  2077. "lastrow": 14,
  2078. "header": ['group', 'entity', 'unit'],
  2079. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2080. "categories": ["category"],
  2081. "cols_to_ignore": [
  2082. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Area of savanna burned',
  2083. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Average above-ground biomass density',
  2084. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Biomass burned',
  2085. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Fraction of savanna burned',
  2086. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Nitrogen fraction in biomass',
  2087. 'IMPLIED EMISSION FACTORS CH4',
  2088. 'IMPLIED EMISSION FACTORS N2O',
  2089. ],
  2090. "stop_cats": ["", ".", np.nan],
  2091. "unit_info": unit_info["default"],
  2092. },
  2093. "sector_mapping": [
  2094. ['Forest land (specify ecological zone)(1)', ['3.E.1'], 0],
  2095. ['Savanna Grassland', ['3.E.1.b'], 1], # AUS
  2096. ['Savanna Woodland', ['3.E.1.a'], 1], # AUS
  2097. ['Forest land', ['3.E.1.a'], 1], # SWE, CHE, CZE, HRV
  2098. ['Luxembourg', ['3.E.1.c'], 1], # LUX
  2099. ['Other non-specified', ['3.E.1.d'], 1], # EST
  2100. ['All', ['3.E.1.d'], 1], # DNK, DNM, DKE
  2101. ['Unspecified', ['3.E.1.d'], 1], # DEU
  2102. ['forest land', ['3.E.1.a'], 1], # MLT
  2103. ['Zone', ['3.E.1.d'], 1], # LVA
  2104. ['Grassland (specify ecological zone)(1)', ['3.E.2'], 0],
  2105. ['Savanna Woodland', ['3.E.2.a'], 1], # AUS
  2106. ['Savanna Grassland', ['3.E.2.b'], 1], # AUS
  2107. ['Temperate Grassland', ['3.E.2.c'], 1], # AUS
  2108. ['Grassland', ['3.E.2.d'], 1], # SWE, CHE, CZE, HRV
  2109. ['Luxembourg', ['3.E.2.e'], 1], # LUX
  2110. ['Other non-specified', ['3.E.2.f'], 1], # EST
  2111. ['All', ['3.E.2.f'], 1], # DNK, DNM, DKE
  2112. ['Unspecified', ['3.E.2.f'], 1], # DEU
  2113. ['Tussock', ['3.E.2.g'], 1], # NZL
  2114. ['grassland', ['3.E.2.d'], 1], # MLT
  2115. ['Zone_', ['3.E.2.f'], 1], # LVA
  2116. ],
  2117. "entity_mapping": {
  2118. 'EMISSIONS (2) CH4': 'CH4',
  2119. 'EMISSIONS (2) N2O': 'N2O',
  2120. },
  2121. "coords_defaults": {
  2122. "class": "Total",
  2123. },
  2124. }, # tested
  2125. "Table3.F": { # field burning details
  2126. "status": "TODO",
  2127. "table": {
  2128. "firstrow": 5,
  2129. "lastrow": 30,
  2130. "header": ['group', 'entity', 'unit'],
  2131. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2132. "categories": ["category"],
  2133. "cols_to_ignore": [],
  2134. "stop_cats": ["", np.nan],
  2135. "unit_info": unit_info["default"],
  2136. },
  2137. "sector_mapping": [
  2138. ],
  2139. "entity_mapping": [],
  2140. "coords_defaults": {
  2141. "class": "Total",
  2142. },
  2143. }, # TODO
  2144. "Table3.G-I": { # liming, urea, carbon containing fertilizer
  2145. "status": "TODO",
  2146. "table": {
  2147. "firstrow": 5,
  2148. "lastrow": 13,
  2149. "header": ['group', 'entity', 'unit'],
  2150. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2151. "categories": ["category"],
  2152. "cols_to_ignore": [],
  2153. "stop_cats": ["", np.nan],
  2154. "unit_info": unit_info["default"],
  2155. },
  2156. "sector_mapping": [
  2157. ],
  2158. "entity_mapping": [],
  2159. "coords_defaults": {
  2160. "class": "Total",
  2161. },
  2162. }, # TODO
  2163. "Table4": { # LULUCF overview
  2164. "status": "tested",
  2165. "table": {
  2166. "firstrow": 5,
  2167. "lastrow": 29,
  2168. "header": ['entity', 'unit'],
  2169. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2170. "categories": ["category"],
  2171. "cols_to_ignore": [],
  2172. "stop_cats": ["", ".", np.nan],
  2173. "unit_info": unit_info["default"],
  2174. },
  2175. "sector_mapping": [
  2176. ['4. Total LULUCF', ['4']],
  2177. ['A. Forest land', ['4.A']],
  2178. ['1. Forest land remaining forest land', ['4.A.1']],
  2179. ['2. Land converted to forest land', ['4.A.2']],
  2180. ['B. Cropland', ['4.B']],
  2181. ['1. Cropland remaining cropland', ['4.B.1']],
  2182. ['2. Land converted to cropland', ['4.B.2']],
  2183. ['C. Grassland', ['4.C']],
  2184. ['1. Grassland remaining grassland', ['4.C.1']],
  2185. ['2. Land converted to grassland', ['4.C.2']],
  2186. ['D. Wetlands(3)', ['4.D']],
  2187. ['1. Wetlands remaining wetlands', ['4.D.1']],
  2188. ['2. Land converted to wetlands', ['4.D.2']],
  2189. ['E. Settlements', ['4.E']],
  2190. ['1. Settlements remaining settlements', ['4.E.1']],
  2191. ['2. Land converted to settlements', ['4.E.2']],
  2192. ['F. Other land (4)', ['4.F']],
  2193. ['1. Other land remaining other land', ['4.F.1']],
  2194. ['2. Land converted to other land', ['4.F.2']],
  2195. ['G. Harvested wood products (5)', ['4.G']],
  2196. ['H. Other (please specify)', ['4.H']],
  2197. ['Land converted to Settlement', ['4.H.1']],
  2198. ['Reservoir of Petit-Saut in French Guiana', ['4.H.5']],
  2199. ['Biogenic NMVOCs from managed forest', ['4.H.4']],
  2200. ['All other', ['4.H.9']],
  2201. ['Luxembourg', ['4.H.8']],
  2202. ['Settlements Remaining Settlements', ['4.H.2']],
  2203. ['4.E Settlements', ['4.H.2']],
  2204. ['4.C Grassland', ['4.H.3']],
  2205. ['Settlements', ['4.H.2']],
  2206. ['Other', ['4.H.9']],
  2207. ['N2O Emissions from Aquaculture Use', ['4.H.6']],
  2208. ['CH4 from artificial water bodies', ['4.H.7']],
  2209. ],
  2210. "entity_mapping": {
  2211. 'CH4(2)': 'CH4',
  2212. 'N2O(2)': 'N2O',
  2213. 'Net CO2 emissions/removals(1), (2)': 'CO2',
  2214. },
  2215. "coords_defaults": {
  2216. "class": "Total",
  2217. },
  2218. }, # tested
  2219. # TODO: all other LULUCF tables
  2220. "Table5": { # Waste overview
  2221. "status": "tested",
  2222. "table": {
  2223. "firstrow": 5,
  2224. "lastrow": 27,
  2225. "header": ['entity', 'unit'],
  2226. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2227. "categories": ["category"],
  2228. "cols_to_ignore": [],
  2229. "stop_cats": ["", np.nan],
  2230. "unit_info": unit_info["default"],
  2231. },
  2232. "sector_mapping": [
  2233. ['Total waste', ['5']],
  2234. ['A. Solid waste disposal', ['5.A']],
  2235. ['1. Managed waste disposal sites', ['5.A.1']],
  2236. ['2. Unmanaged waste disposal sites', ['5.A.2']],
  2237. ['3. Uncategorized waste disposal sites', ['5.A.3']],
  2238. ['B. Biological treatment of solid waste', ['5.B']],
  2239. ['1. Composting', ['5.B.1']],
  2240. ['2. Anaerobic digestion at biogas facilities', ['5.B.2']],
  2241. ['C. Incineration and open burning of waste', ['5.C']],
  2242. ['1. Waste incineration', ['5.C.1']],
  2243. ['2. Open burning of waste', ['5.C.2']],
  2244. ['D. Wastewater treatment and discharge', ['5.D']],
  2245. ['1. Domestic wastewater', ['5.D.1']],
  2246. ['2. Industrial wastewater', ['5.D.2']],
  2247. ['3. Other (as specified in table 5.D)', ['5.D.3']],
  2248. ['E. Other (please specify)', ['5.E']],
  2249. ['Other', ['5.E.5']], # EST, NOR
  2250. ['Recycling activities', ['5.E.1']], # NLD
  2251. ['Mechanical-Biological Treatment MBT', ['5.E.2']], # DEU
  2252. ['Accidental fires', ['5.E.3']], # DEU, DKE, DNK, DNM
  2253. ['Decomposition of Petroleum-Derived Surfactants', ['5.E.4']], # JPN
  2254. ['Other non-specified', ['5.E.5']], # USA
  2255. ['Biogas burning without energy recovery', ['5.E.6']], # PRT
  2256. ['Sludge spreading', ['5.E.7']], # ESP
  2257. ['Accidental combustion', ['5.E.3']], # ESP
  2258. ['Other waste', ['5.E.5']], # CZE
  2259. ['Memo item:(2)', ['\IGNORE']],
  2260. ['Long-term storage of C in waste disposal sites', ['M.Memo.LTSW']],
  2261. ['Annual change in total long-term C storage', ['M.Memo.ACLT']],
  2262. ['Annual change in total long-term C storage in HWP waste(3)', ['M.Memo.ACLTHWP']],
  2263. ],
  2264. "entity_mapping": {
  2265. 'CO2(1)': 'CO2',
  2266. },
  2267. "coords_defaults": {
  2268. "class": "Total",
  2269. },
  2270. }, # tested; memo items not read because of empty lines
  2271. "Table5.A": { # solid waste disposal
  2272. "status": "tested",
  2273. "table": {
  2274. "firstrow": 6,
  2275. "lastrow": 15,
  2276. "header": ['group', 'group', 'entity', 'entity', 'unit'],
  2277. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2278. "categories": ["category"],
  2279. "cols_to_ignore": [
  2280. 'ACTIVITY DATA AND OTHER RELATED INFORMATION SINK CATEGORIES Annual waste at the SWDS',
  2281. 'ACTIVITY DATA AND OTHER RELATED INFORMATION SINK CATEGORIES MCF',
  2282. 'ACTIVITY DATA AND OTHER RELATED INFORMATION SINK CATEGORIES DOCf',
  2283. 'IMPLIED EMISSION FACTOR SINK CATEGORIES CH4(1)',
  2284. 'IMPLIED EMISSION FACTOR SINK CATEGORIES CO2',
  2285. 'EMISSIONS SINK CATEGORIES CH4 Amount of CH4 flared',
  2286. 'EMISSIONS SINK CATEGORIES CH4 Amount of CH4 for energy recovery(3)',
  2287. ],
  2288. "stop_cats": ["", np.nan],
  2289. "unit_info": unit_info["default"],
  2290. },
  2291. "sector_mapping": [
  2292. ['1. Managed waste disposal sites', ['5.A.1']],
  2293. ['a. Anaerobic', ['5.A.1.a']],
  2294. ['b. Semi-aerobic', ['5.A.1.b']],
  2295. ['2. Unmanaged waste disposal sites', ['5.A.2']],
  2296. ['3. Uncategorized waste disposal sites', ['5.A.3']],
  2297. ],
  2298. "entity_mapping": {
  2299. 'EMISSIONS SINK CATEGORIES CH4 Emissions(2)': 'CH4',
  2300. 'EMISSIONS SINK CATEGORIES CO2(4) Amount of CH4 for energy recovery(3)': 'CO2',
  2301. },
  2302. "coords_defaults": {
  2303. "class": "Total",
  2304. },
  2305. }, # tested
  2306. "Table5.B": { # Biological treatment of solid waste
  2307. "status": "tested",
  2308. "table": {
  2309. "firstrow": 5,
  2310. "lastrow": 16,
  2311. "header": ['group', 'entity', 'entity', 'unit'],
  2312. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2313. "categories": ["category"],
  2314. "cols_to_ignore": [
  2315. 'ACTIVITY DATA AND OTHER RELATED INFORMATION Annual waste amount treated',
  2316. 'IMPLIED EMISSION FACTOR CH4(1)',
  2317. 'IMPLIED EMISSION FACTOR N2O',
  2318. 'EMISSIONS CH4 Amount of CH4 flared',
  2319. 'EMISSIONS CH4 Amount of CH4 for energy recovery(3)',
  2320. ],
  2321. "stop_cats": [".", "", np.nan],
  2322. "unit_info": unit_info["default"],
  2323. },
  2324. "sector_mapping": [
  2325. ['1. Composting', ['5.B.1'], 0],
  2326. ['Municipal solid waste', ['5.B.1.a'], 1],
  2327. ['Other (please specify)(4)', ['5.B.1.b'], 1],
  2328. ['Organic wastes households', ['5.B.1.b.i'], 2], # NLD
  2329. ['Organic wastes from gardens and horticulture', ['5.B.1.b.ii'], 2], # NLD
  2330. ['Food and garden waste', ['5.B.1.b.ii'], 2], # DNM, DNK, DKE
  2331. ['Industrial Solid Waste', ['5.B.1.b.iii'], 2], # POL
  2332. ['Home composting', ['5.B.1.b.iv'], 2], # NOR
  2333. ['Mixed waste', ['5.B.1.b.v'], 2], # LTU
  2334. ['Other waste', ['5.B.1.b.v'], 2], # SWE
  2335. ['Sludge', ['5.B.1.b.vi'], 2], # HUN, EST
  2336. ['Textile', ['5.B.1.b.vii'], 2], # EST
  2337. ['Wood', ['5.B.1.b.viii'], 2], # EST
  2338. ['Organic', ['5.B.1.b.ix'], 2], # EST
  2339. ['Paper', ['5.B.1.b.x'], 2], # EST
  2340. ['Other_SW', ['5.B.1.b.v'], 2], # CZE
  2341. ['MBA treated MSW', ['5.B.1.b.xi'], 2], # LUX
  2342. ['Specific Agricultural and Industrial Waste', ['5.B.1.b.xii'], 2], # UKR
  2343. ['Industrial solid waste and constr. waste', ['5.B.1.b.xiii'], 2], # FIN
  2344. ['Municipal sludge', ['5.B.1.b.xiv'], 2], # FIN
  2345. ['Industrial sludge', ['5.B.1.b.xv'], 2], # FIN
  2346. ['Open air composting', ['5.B.1.b.xvi'], 2], # LIE
  2347. ['Industrial Waste', ['5.B.1.b.xvii'], 2], # JPN
  2348. ['Human Waste and Johkasou sludge', ['5.B.1.b.xviii'], 2], # JPN
  2349. ['2. Anaerobic digestion at biogas facilities(3)', ['5.B.2'], 0],
  2350. ['Municipal solid waste', ['5.B.2.a'], 1],
  2351. ['Other (please specify)(4)', ['5.B.2.b'], 1],
  2352. ['Organic wastes households', ['5.B.2.b.i'], 2], # NLD
  2353. ['Organic wastes from gardens and horticulture', ['5.B.2.b.ii'], 2], # NLD
  2354. ['Animal manure and other organic waste', ['5.B.2.b.iii'], 2], # DNM, DNK, DKE
  2355. ['sewage sludge', ['5.B.2.b.iv'], 2], # LTU
  2356. ['Other waste', ['5.B.2.b.v'], 2], # SWE
  2357. ['Agricultural biogas facilities', ['5.B.2.b.vi'], 2], # CHE
  2358. ['Other biogases from anaerobic fermentation', ['5.B.2.b.vii'], 2], # HUN
  2359. ['Sludge', ['5.B.2.b.iv'], 2], # EST
  2360. ['Anaerobic Digestion On-Farm and at Wastewater Treatment Facilities', ['5.B.2.b.viii'], 2], # USA
  2361. ['Other_AD', ['5.B.2.b.v'], 2], # CZE
  2362. ['Biogenic waste incl. wastes from Agriculture (manure)', ['5.B.2.b.ix'], 2], # LUX
  2363. ['Industrial solid waste and constr. waste', ['5.B.2.b.x'], 2], # FIN
  2364. ['Municipal sludge', ['5.B.2.b.xi'], 2], # FIN
  2365. ['Industrial sludge', ['5.B.2.b.xii'], 2], # FIN
  2366. ],
  2367. "entity_mapping": {
  2368. 'EMISSIONS CH4 Emissions(2)': 'CH4',
  2369. 'EMISSIONS N2O Amount of CH4 for energy recovery(3)': 'N2O',
  2370. },
  2371. "coords_defaults": {
  2372. "class": "Total",
  2373. },
  2374. }, # tested
  2375. "Table5.C": { # Waste incineration and open burning
  2376. "status": "tested",
  2377. "table": {
  2378. "firstrow": 5,
  2379. "lastrow": 38,
  2380. "header": ['group', 'group', 'entity', 'unit'],
  2381. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2382. "categories": ["category"],
  2383. "cols_to_ignore": [
  2384. 'ACTIVITY DATA Amount of wastes (incinerated/open burned)',
  2385. 'IMPLIED EMISSION FACTOR Amount of wastes (incinerated/open burned) CO2',
  2386. 'IMPLIED EMISSION FACTOR Amount of wastes (incinerated/open burned) CH4',
  2387. 'IMPLIED EMISSION FACTOR Amount of wastes (incinerated/open burned) N2O',
  2388. ],
  2389. "stop_cats": [".", "", np.nan],
  2390. "unit_info": unit_info["default"],
  2391. },
  2392. "sector_mapping": [
  2393. ['1. Waste Incineration', ['5.C.1'], 0],
  2394. ['Biogenic (1)', ['5.C.1.a'], 1],
  2395. ['Municipal solid waste', ['5.C.1.a.i'], 2],
  2396. ['Other (please specify)(2)', ['5.C.1.a.ii'], 2],
  2397. ['Industrial Solid Wastes', ['5.C.1.a.ii.1'], 3],
  2398. ['Hazardous Waste', ['5.C.1.a.ii.2'], 3],
  2399. ['Clinical Waste', ['5.C.1.a.ii.3'], 3],
  2400. ['Sewage Sludge', ['5.C.1.a.ii.4'], 3],
  2401. ['Other (please specify)', ['5.C.1.a.ii.5'], 3],
  2402. ['Animal cremations', ['5.C.1.a.ii.5.a'], 4], # DKE, DNK, DNM
  2403. ['Human cremations', ['5.C.1.a.ii.5.b'], 4], # DKE, DNK, DNM
  2404. ['Cremation', ['5.C.1.a.ii.5.c'], 4], # CHE, NOR, FRA, FRK
  2405. ['cremation', ['5.C.1.a.ii.5.c'], 4], # DEU
  2406. ['Industrial waste', ['5.C.1.a.ii.5.d'], 4], # NOR
  2407. ['Biogenic other waste', ['5.C.1.a.ii.5.e'], 4], # EST
  2408. ['Biogenic waste other than Municipal Solid Waste', ['5.C.1.a.ii.5.e'], 4], # ROU
  2409. ['Sludge', ['5.C.1.a.ii.5.f'], 4], # JPN
  2410. ['Non-fossile liquid waste', ['5.C.1.a.ii.5.g'], 4], # JPN
  2411. ['Non-biogenic', ['5.C.1.b'], 1],
  2412. ['Municipal solid waste', ['5.C.1.b.i'], 2],
  2413. ['Other (please specify)(3)', ['5.C.1.b.ii'], 2],
  2414. ['Industrial Solid Wastes', ['5.C.1.b.ii.1'], 3],
  2415. ['Hazardous Waste', ['5.C.1.b.ii.2'], 3],
  2416. ['Clinical Waste', ['5.C.1.b.ii.3'], 3],
  2417. ['Sewage Sludge', ['5.C.1.b.ii.4'], 3],
  2418. ['Fossil liquid waste', ['5.C.1.b.ii.5'], 3],
  2419. ['Other (please specify)', ['5.C.1.b.ii.6'], 3],
  2420. ['Quarantine and other waste', ['5.C.1.b.ii.6.a'], 4], # NZL
  2421. ['Industrial waste', ['5.C.1.b.ii.6.b'], 4], # CHE
  2422. ['Chemical waste', ['5.C.1.b.ii.6.c'], 4], # GBR, GBK
  2423. ['Flaring in the chemical industry', ['5.C.1.a.ii.6.d'], 4], # BEL
  2424. ['Sludge', ['5.C.1.a.ii.6.e'], 4], # JPN
  2425. ['Solvents', ['5.C.1.a.ii.6.f'], 4], # GRC, AUS
  2426. ['2. Open burning of waste', ['5.C.2'], 0],
  2427. ['Biogenic (1)', ['5.C.2.a'], 1],
  2428. ['Municipal solid waste', ['5.C.2.a.i'], 2],
  2429. ['Other (please specify)', ['5.C.2.a.ii'], 2],
  2430. ['agricultural waste', ['5.C.2.a.ii.1'], 3], # ITA
  2431. ['Agricultural residues', ['5.C.2.a.ii.1'], 3], # ESP
  2432. ['Natural residues', ['5.C.2.a.ii.2'], 3], # CHE
  2433. ['Wood waste', ['5.C.2.a.ii.3'], 3], # GBR, GBK
  2434. ['Bonfires etc.', ['5.C.2.a.ii.4'], 3], # DEU
  2435. ['Bonfires', ['5.C.2.a.ii.4'], 3], # NLD, ISL
  2436. ['Other', ['5.C.2.a.ii.5'], 3], # EST
  2437. ['Other waste', ['5.C.2.a.ii.5'], 3], # CZE
  2438. ['Industrial Solid Waste', ['5.C.2.a.ii.6'], 3], # JPN
  2439. ['Non-biogenic', ['5.C.2.b'], 1],
  2440. ['Municipal solid waste', ['5.C.2.b.i'], 2],
  2441. ['Other (please specify)', ['5.C.2.b.ii'], 2],
  2442. ['Rural waste', ['5.C.2.b.ii.1'], 3], # NZL
  2443. ['Accidental fires (vehicles)', ['5.C.2.b.ii.2'], 3], # GBR, GBK
  2444. ['Accidental fires (buildings)', ['5.C.2.b.ii.3'], 3], # GBR, GBK
  2445. ['Bonfires', ['5.C.2.b.ii.4'], 3], # ISL
  2446. ['Other', ['5.C.2.b.ii.5'], 3], # EST
  2447. ['Other waste', ['5.C.2.b.ii.5'], 3], # CZE
  2448. ['Industrial Solid Waste', ['5.C.2.b.ii.6'], 3], # JPN
  2449. ],
  2450. "entity_mapping": {
  2451. 'EMISSIONS Amount of wastes (incinerated/open burned) CH4': 'CH4',
  2452. 'EMISSIONS Amount of wastes (incinerated/open burned) CO2': 'CO2',
  2453. 'EMISSIONS Amount of wastes (incinerated/open burned) N2O': 'N2O',
  2454. },
  2455. "coords_defaults": {
  2456. "class": "Total",
  2457. },
  2458. }, # tested
  2459. "Table5.D": { # Waste incineration and open burning
  2460. "status": "tested",
  2461. "table": {
  2462. "firstrow": 5,
  2463. "lastrow": 13,
  2464. "header": ['group', 'entity', 'entity', 'entity', 'unit'],
  2465. "col_for_categories": "GREENHOUSE GAS SOURCE AND SINK CATEGORIES",
  2466. "categories": ["category"],
  2467. "cols_to_ignore": [
  2468. 'ACTIVITY DATA AND RELATED INFORMATION Total organic product',
  2469. 'ACTIVITY DATA AND RELATED INFORMATION Sludge removed(1)',
  2470. 'ACTIVITY DATA AND RELATED INFORMATION Sludge removed(1) N in effluent',
  2471. 'IMPLIED EMISSION FACTOR CH4(2) N in effluent',
  2472. 'IMPLIED EMISSION FACTOR N2O(3) N in effluent',
  2473. 'EMISSIONS CH4 Amount of CH4 flared',
  2474. 'EMISSIONS CH4 Amount of CH4 for Energy Recovery(5)',
  2475. ],
  2476. "stop_cats": [".", "", np.nan],
  2477. "unit_info": unit_info["default"],
  2478. },
  2479. "sector_mapping": [
  2480. ['1. Domestic wastewater', ['5.D.1']],
  2481. ['2. Industrial wastewater', ['5.D.2']],
  2482. ['3. Other (please specify)', ['5.D.3']],
  2483. ['Other', ['5.D.3.a']], # EST
  2484. ['Septic tanks', ['5.D.3.b']], # NLD
  2485. ['Wastewater Effluent', ['5.D.3.c']], # NLD
  2486. ['Fish farming', ['5.D.3.d']], # FIN
  2487. ['Uncategorized wastewater', ['5.D.3.a']], # CZE
  2488. ],
  2489. "entity_mapping": {
  2490. 'EMISSIONS CH4 Emissions(4)': 'CH4',
  2491. 'EMISSIONS N2O(3) Amount of CH4 for Energy Recovery(5)': 'N2O',
  2492. },
  2493. "coords_defaults": {
  2494. "class": "Total",
  2495. },
  2496. }, # tested
  2497. }