Climate Change Projections Dataset
收藏数据集概述
数据集名称
Climate Change Projections Dataset
数据集内容
该数据集结合了历史气候数据与来自Coupled Model Intercomparison Project Phase 6 (CMIP6) 模拟的未来预测数据,形成了一个纵向数据集。数据涵盖1995至2100年,包含210个国家的关键气候变量(如温度、降水量、极端天气指数)以及GDP人均数据。
数据集结构
- 历史数据 (
hist/): 包含1995至2014年的210个国家数据。 - 预测数据 (
projections/): 包含2015至2100年的气候相关变量预测数据,基于CMIP6的四种不同情景(SSP1, SSP2, SSP3, SSP5)。 - 国家信息 (
countries_info.xlsx): 包含ISO-3国家代码和ID信息。
主要变量
- GDP: 国内生产总值人均
- TMP: 平均年温度
- PRE: 平均年降水量
- r20mm: 降水量超过20mm
- cwd: 连续湿润天数最大值
- cdd: 连续干燥天数最大值
- txx: 日最高温度
数据使用
数据集可通过R和Python直接下载使用,具体下载命令如下:
R: r library(readr) hist <- read_csv("https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/hist/hist.csv") SSP1 <- read_csv("https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/projections/SSP1/projSSP1.csv") SSP2 <- read_csv("https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/projections/SSP2/projSSP2.csv") SSP3 <- read_csv("https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/projections/SSP3/projSSP3.csv") SSP5 <- read_csv("https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/projections/SSP5/projSSP5.csv")
Python: bash import pandas as pd
hist = pd.read_csv(r"https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/hist/hist.csv") SSP1 = pd.read_csv(r"https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/projections/SSP1/projSSP1.csv") SSP2 = pd.read_csv(r"https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/projections/SSP2/projSSP2.csv") SSP3 = pd.read_csv(r"https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/projections/SSP3/projSSP3.csv") SSP5 = pd.read_csv(r"https://raw.githubusercontent.com/mila-andreani/climate-change-dataset/main/projections/SSP5/projSSP5.csv")
许可证
本数据集遵循Creative Commons Attribution 4.0 International License。




