Browse Source

add empty files / test push

Daniel Busch 9 months ago
parent
commit
eba4ec4fb9

+ 30 - 0
src/unfccc_ghg_data/unfccc_reader/Bangladesh/__init__.py

@@ -0,0 +1,30 @@
+"""Read Bangladesh's BURs, NIRs, NCs
+
+Scripts and configurations to read Burundi's submissions to the UNFCCC.
+Currently, the following submissions and datasets are available (all datasets
+including DI (red using the DI-reader) and legacy BUR/NIR (no code)):
+
+.. exec_code::
+    :hide_code:
+
+    from unfccc_ghg_data.helper.functions import (get_country_datasets,
+                                                  get_country_submissions)
+    country = 'BGD'
+    # print available submissions
+    print("="*15 + " Available submissions " + "="*15)
+    get_country_submissions(country, True)
+    print("")
+
+    #print available datasets
+    print("="*15 + " Available datasets " + "="*15)
+    get_country_datasets(country, True)
+
+You can also obtain this information running
+
+.. code-block:: bash
+
+    poetry run doit country_info country=BGD
+
+See below for a listing of scripts for BUR/NIR reading including links.
+
+"""

+ 3 - 0
src/unfccc_ghg_data/unfccc_reader/Bangladesh/read_BGD_BUR1_from_pdf.py

@@ -0,0 +1,3 @@
+"""
+Read Burundi's BUR1 from pdf
+"""