UNFCCC_CRF_reader.py 470 B

123456789101112131415161718192021
  1. import pandas as pd
  2. def read_crf_tables(
  3. )->pd.DataFrame:
  4. """
  5. Read given tables from file and return result as pandas dataframe
  6. """
  7. # functions:
  8. # * production functions
  9. # ** read one table for a country
  10. # ** read alist of tables for one country
  11. # ** convert to IF and NC and save
  12. # * testing fucntions
  13. # ** read one or more table(s) for all countries
  14. # (and a if desired only a single year) and write
  15. # output files with missing sectors etc
  16. # **