Global Land-Ocean Temperature Index From 1880-2021
NASA's Goddard Institute for Space Studies (GISS)
@kaggle.prasertk_global_landocean_temperature_index
NASA's Goddard Institute for Space Studies (GISS)
@kaggle.prasertk_global_landocean_temperature_index
"The change in global surface temperature relative to 1951-1980 average temperatures. Nineteen of the hottest years have occurred since 2000, with the exception of 1998, which was helped by a very strong El NiƱo. The year 2020 tied with 2016 for the hottest year on record since record-keeping began in 1880 (source: NASA/GISS)." (https://climate.nasa.gov/vital-signs/global-temperature/)
Data source: https://data.giss.nasa.gov/gistemp/graphs/graph_data/Global_Mean_Estimates_based_on_Land_and_Ocean_Data/graph.txt
CREATE TABLE nasa_global_land_ocean_temperature_index (
"year" BIGINT,
"annual_mean" DOUBLE,
"lowess_5" DOUBLE -- Lowess(5)
);Anyone who has the link will be able to view this.