Baselight

Climate Change Dataset

"Dataset of Temperature, Emissions, and Environmental Trends (2000-2024)"

@kaggle.bhadramohit_climate_change_dataset

Climate Change Dataset
@kaggle.bhadramohit_climate_change_dataset.climate_change_dataset

  • 31.81 KB
  • 1000 rows
  • 10 columns
year

Year

country

Country

avg_temperature_c

Avg Temperature (°C)

co2_emissions_tons_capita

CO2 Emissions (Tons/Capita)

sea_level_rise_mm

Sea Level Rise (mm)

rainfall_mm

Rainfall (mm)

population

Population

renewable_energy

Renewable Energy (%)

extreme_weather_events

Extreme Weather Events

forest_area

Forest Area (%)

2006UK8.99.33.1144153091123020.41459.8
2019USA314.84.2240710736434449.2831
2014France33.92.82.2124144110175833.3935.5
2010Argentina5.91.83.21892106966957923.7717.7
2007Germany26.95.62.4174312407917512.5417.4
2020China32.31.42.72100120202885749.41247.2
2006Argentina30.711.63.9175558670610741.91050.5
2018South Africa33.964.58278394738017.7156.6
2022UK27.816.61.519669803051878.2443.4
2010Australia18.31.93.525998494961377.5548.7

CREATE TABLE climate_change_dataset (
  "year" BIGINT,
  "country" VARCHAR,
  "avg_temperature_c" DOUBLE,
  "co2_emissions_tons_capita" DOUBLE,
  "sea_level_rise_mm" DOUBLE,
  "rainfall_mm" BIGINT,
  "population" BIGINT,
  "renewable_energy" DOUBLE,
  "extreme_weather_events" BIGINT,
  "forest_area" DOUBLE
);

Share link

Anyone who has the link will be able to view this.