File:Beringia 8000bp 2.png

Page contents not supported in other languages.
This is a file from the Wikimedia Commons
From Wikipedia, the free encyclopedia

Original file(3,066 × 1,422 pixels, file size: 2.37 MB, MIME type: image/png)

Summary

Description
English: Beringia, 8000 years ago
Date
Source Own work
Author Merikanto
Camera location65° 00′ 00″ N, 180° 00′ 00″ E  Heading=1° Kartographer map based on OpenStreetMap.View this and other nearby images on: OpenStreetMapinfo


https://chelsa-climate.org/chelsa-trace21k/

https://envicloud.wsl.ch/#/?prefix=chelsa%2Fchelsa_V1%2Fchelsa_trace%2F

directory orog

tex dem file

https://os.zhdk.cloud.switch.ch/envicloud/chelsa/chelsa_V1/chelsa_trace/orog/CHELSA_TraCE21k_dem_-80_V1.0.tif

https://os.zhdk.cloud.switch.ch/envicloud/chelsa/chelsa_V1/chelsa_trace/orog/CHELSA_TraCE21k_gle_-80_V1.0.tif

https://os.zhdk.cloud.switch.ch/envicloud/chelsa/chelsa_V1/chelsa_trace/orog/CHELSA_TraCE21k_glz_-80_V1.0.tif


Trace21ka selected data downloading "R" script is under this link

File:Beringia_8000bp_1.png


Karger, D. N., Nobis, M. P., Normand, S., Graham, C. H., & Zimmermann, N. E. (2021). CHELSA-TraCE21k v1. 0. Downscaled transient temperature and precipitation data since the last glacial maximum. Climate of the Past Discussions, 1-27.

Generic Mapping Tools GMT 6 / Windows 10 code:

rem rem chelsa trace21ka orography and glaciers of beringia rem rem used with win10, gmt 6.x, gdal rem rem v 0000.0006 rem 10.10.2021 rem


rem centuries ago set taimi=80

rscript dl1.r %taimi%


rem set rect1=-R-180.0/-120.0/40.0/80.0 set rect1=-R-220.0/-120.0/40.0/80.0 set rect2=-R140/260/40/80

set size1=-JQ24 set annot1=-B10m10m


set namebase1=CHELSA_TraCE21k_ set namebase2=_V1.0.tif

set inputdem=indata\%namebase1%dem_-%taimi%%namebase2% set inputgle=indata\%namebase1%gle_-%taimi%%namebase2% set inputglz=indata\%namebase1%glz_-%taimi%%namebase2%

set kommand=rotate.r %inputdem% %inputgle% %inputglz%


set kaption=-B+glightblue+t"Beringia "%taimi%"00 years ago"


echo %inputdem%

rem scale up, because original grid has gap in 180

rm dem.grd rm gle.grd rm glz.grd gdalwarp -of netcdf -ts 10000 0 %inputdem% dem.grd gdalwarp -of netcdf -ts 10000 0 %inputgle% gle.grd gdalwarp -of netcdf -ts 10000 0 %inputglz% glz.grd


set dem1=./dem.grd set gle1=./gle.grd set glz1=./glz.grd

set params1=%size1% %rect1% rem set params2=%params1% %annot1%

gmt makecpt -Chot > my_sea.cpt

gmt makecpt -Cetopo1 > my_topo.cpt gmt makecpt -Cgebco > my_glacier.cpt


gmt grdgradient dem.grd -Ghillshade-grad.nc -A345 -Ne0.6 -V gmt grdhisteq hillshade-grad.nc -Ghillshade-hist.nc -N -V gmt grdmath hillshade-hist.nc 5 DIV = hillshade-int.nc

gmt grdgradient glz.grd -Ghillshade-grag.nc -A345 -Ne0.6 -V gmt grdhisteq hillshade-grag.nc -Ghillshade-hisg.nc -N -V gmt grdmath hillshade-hisg.nc 5 DIV = hillshade-ing.nc



gmt begin out png

psbasemap %params1% -Ba %kaption%

grdimage %dem1% %params1% -Q -Cmy_topo.cpt -Ihillshade-int.nc grdimage %glz1% %params1% -Q -Cmy_glacier.cpt -Ihillshade-ing.nc

gmt end

Downloader


    1. download some selected chelsa trace21ka files from chelsa repository
    2. R 4.03 script
    3. 10.10.2021
    4. 0000.0005
    1. set timeout greater than 60, so we can download big files

options(timeout=2400)


download_trace21ka<-function(taimi, variable1, variable2) { address1="https://os.zhdk.cloud.switch.ch/envicloud/chelsa" address2="/chelsa_V1/chelsa_trace/" namebase1="CHELSA_TraCE21k_" namebase2="_V1.0.tif" url1=paste0(address1,address2,variable2,"/") dolly1=paste0(url1,namebase1,variable1,"_-",taimi,namebase2) desti1=paste0("indata/",namebase1,variable1,"_-",taimi,namebase2) #dolly1="https://os.zhdk.cloud.switch.ch/envicloud/chelsa/chelsa_V1/chelsa_trace/orog/CHELSA_TraCE21k_dem_-100_V1.0.tif" #desti1="out.tif" download.file(dolly1,desti1,method = "libcurl", mode = "wb" ) }


download_selected_trace29ka<-function(taimi) { variable2="orog" variable1="dem" download_trace21ka(taimi, variable1, variable2) variable1="glz" download_trace21ka(taimi, variable1, variable2) variable1="gle" download_trace21ka(taimi, variable1, variable2)

variable1="tasmax_7" variable2="tasmax" download_trace21ka(taimi, variable1, variable2)

variable1="tasmin_7" variable2="tasmin" download_trace21ka(taimi, variable1, variable2)

variable1="tasmax_1" variable2="tasmax" download_trace21ka(taimi, variable1, variable2)

variable1="tasmin_1" variable2="tasmin" download_trace21ka(taimi, variable1, variable2)

variable1="pr_7" variable2="pr" download_trace21ka(taimi, variable1, variable2)

variable1="pr_1" variable2="pr" download_trace21ka(taimi, variable1, variable2)

variable1="bio01" variable2="bio" download_trace21ka(taimi, variable1, variable2)

variable1="bio12" variable2="bio" download_trace21ka(taimi, variable1, variable2)

variable1="swe" variable2="bio" download_trace21ka(taimi, variable1, variable2)


variable1="scd" variable2="bio" download_trace21ka(taimi, variable1, variable2)

print("Trace21ka stuff downloaded.")

}


download_trace29ka_pr_bio<-function(taimi) {

variable1="bio01" variable2="bio" download_trace21ka(taimi, variable1, variable2)

variable1="bio12" variable2="bio" download_trace21ka(taimi, variable1, variable2)

variable1="pr_7" variable2="pr" download_trace21ka(taimi, variable1, variable2)

variable1="pr_1" variable2="pr" download_trace21ka(taimi, variable1, variable2) }



          1. unlink("./indata", recursive=TRUE)

dir.create("./indata")

args = commandArgs(trailingOnly=TRUE)

  1. print (args[1])

taimi=args[1]

print(taimi)


download_selected_trace29ka(taimi)

print(".")


Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

Captions

Beringia, 8000 years ago

Items portrayed in this file

depicts

image/png

66d25aa2032c62a062234e29b3a9bcc9ba7bf0d6

2,488,525 byte

1,422 pixel

3,066 pixel

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current07:12, 9 October 2021Thumbnail for version as of 07:12, 9 October 20213,066 × 1,422 (2.37 MB)MerikantoUpdate
16:27, 7 October 2021Thumbnail for version as of 16:27, 7 October 20213,066 × 1,422 (2.3 MB)MerikantoUploaded own work with UploadWizard
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Metadata