An error occurred while loading the file. Please try again.
-
Le Roux Erwan authored
[contrasting project] add global mean temperature data, and add test for adding these covariate to the coordinates.
41ef10f5
"""
Source:
https://www.jpl.nasa.gov/edu/teach/activity/graphing-global-temperature-trends/
We took the csv file correspond to "Global annual mean temperature data"
"""
import pandas as pd
from root_utils import get_full_path
relative_path = r'local/NASA_data/global_annual_mean_temp_anomalies_land-ocean_1880-2016_modified.csv'
edf_filepath = get_full_path(relative_path=relative_path)
def load_year_to_mean_global_temperature():
df = pd.read_csv(edf_filepath)
df = df.astype({'Year': 'float'})
d = dict(zip(df['Year'], df['Actual Temp']))
return d