Question: Specification: Write a Python application that displays the Earths temperature as related to the Carbon emissions. Display the yearly carbon emission and global annual temperature
Specification: Write a Python application that displays the Earths temperature as related to the Carbon emissions. Display the yearly carbon emission and global annual temperature for the years where the data overlaps.
CarbonEmmission.py * A class to handle the carbon emmission data
AnnualTemperature.py * A class to handle the global annual temperature data
Database.py * Stores the CarbonEmmission and AnnualTemperature data * Use NamedTuples and DefaultDictionaries to Store the data
Interface.py * Reads and stores the data * Uses data processing functions in the Process.py * Outputs the processed data
Process.py * Design a set of classes/functions process the data * Store the data in a Default Dictionary for both the CO2 and Temperature data. * Note: The + or - on the data indicate the temperature difference from the base average between 1960 and 1990. The base average is not given.
Input Files: Co2.html - Monthly CO2 carbon emissions from 1959 to 2018. Accumulate the average monthly CO2 emission values into one yearly value. Temperature.html - Annual global Temperatures from 1858 to 2018.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
