Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/input/ipcc_ar5/readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rcp world annual timeseries downloaded from
http://www.ipcc.ch/report/ar5/wg1/docs/ar5_wg1_annexI_all.zip
http://www.climatechange2013.org/images/report/WGIAR5_AnnexI_all.zip

extract and find them like
ar5_wg1_annexI_all/WGIAR5_AnnexI_timeseries/tas/*/*modelmean*world_annual*
Expand Down
4 changes: 2 additions & 2 deletions sealevel/download_input_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ def download(info, source, targetdir, target=None):


info = "IPCC AR5 global mean temperature data from CMIP5 models"
source = "http://www.ipcc.ch/report/ar5/wg1/docs/ar5_wg1_annexI_all.zip"
source = "http://www.climatechange2013.org/images/report/WGIAR5_AnnexI_all.zip"
download(info, source, "ipcc_ar5")
cmd = "cd " + datadir + \
"ipcc_ar5 && unzip ar5_wg1_annexI_all.zip **WGIAR5_FD_AnnexI_series_tas_modelmean_*_world_annual.txt"
"ipcc_ar5 && unzip WGIAR5_AnnexI_all.zip **WGIAR5_FD_AnnexI_series_tas_modelmean_*_world_annual.txt"
subprocess.check_call(cmd, shell=True)
cmd = "cd " + datadir + \
"ipcc_ar5 && mv -v WGIAR5_AnnexI_timeseries/tas/*/WGIAR5_FD_AnnexI_series_tas_modelmean_*_world_annual.txt ./"
Expand Down