Global Atmospheric Carbon Dioxide Levels Dataset
Daily Atmospheric CO₂ Measurements with Seasonal Cycle- Long Term Trend(2015-25)
@kaggle.gent3l_co2_dataset
Daily Atmospheric CO₂ Measurements with Seasonal Cycle- Long Term Trend(2015-25)
@kaggle.gent3l_co2_dataset
This dataset contains daily measurements of atmospheric carbon dioxide (CO₂) concentration recorded from the year 2015 onwards. Each entry includes:
year, month, day: The specific date of observation.
cycle: The CO₂ concentration including the seasonal cycle (short-term variations).
trend: The long-term trend in CO₂ levels with seasonal fluctuations removed.
The dataset is useful for environmental analysis, climate science research, and understanding both short-term fluctuations and long-term increases in atmospheric CO₂ due to human and natural factors.
CREATE TABLE co2_data (
"year" BIGINT,
"month" BIGINT,
"day" BIGINT,
"cycle" DOUBLE,
"trend" DOUBLE
);
Anyone who has the link will be able to view this.