# Graph of July insolation at 65 N, CO_2 and temperature anomalies # of the last 800 ka; gnuplot script by Jan Hollan # Data sources: # Insolation values -800-800ka1361.txt have been computed online # at https://www.imcce.fr/Equipes/ASD/insola/earth/online/index.php # based on # A&A 428, 261-285 (2004), DOI: 10.1051/0004-6361:20041335 # Laskar, J., Robutel, P., Joutel, F., Gastineau, # M., Correia, A.C.M., Levrard, B. : 2004, # A long term numerical solution for the insolation quantities # of the Earth. # t.txt is a symlink to edc3deuttemp2007.txt, as available at # http://www.ncdc.noaa.gov/paleo/metadata/noaa-icecore-6080.html # # SUGGESTED DATA CITATION: Jouzel, J., et al. 2007. # EPICA Dome C Ice Core 800KYr Deuterium Data and Temperature Estimates. # IGBP PAGES/World Data Center for Paleoclimatology # Data Contribution Series # 2007-091. # NOAA/NCDC Paleoclimatology Program, Boulder CO, USA. # # ORIGINAL REFERENCE: # Jouzel, J., V. Masson-Delmotte, O. Cattani, G. Dreyfus, S. Falourd, # G. Hoffmann, B. Minster, J. Nouet, J.M. Barnola, J. Chappellaz, H. Fischer, # J.C. Gallet, S. Johnsen, M. Leuenberger, L. Loulergue, D. Luethi, H. Oerter, # F. Parrenin, G. Raisbeck, D. Raynaud, A. Schilt, J. Schwander, E. Selmo, # R. Souchez, R. Spahni, B. Stauffer, J.P. Steffensen, B. Stenni, T.F. Stocker, # J.L. Tison, M. Werner, and E.W. Wolff. 2007. # Orbital and Millennial Antarctic Climate Variability over the Past 800,000 Years. # Science, Vol. 317, No. 5839, pp.793-797, 10 August 2007. # comp800.txt is the bottom part of the # ftp://ftp.ncdc.noaa.gov/pub/data/paleo/icecore/antarctica/epica_domec/edc-co2-2008.txt # ORIGINAL REFERENCE: # Lüthi, D., M. Le Floch, B. Bereiter, T. Blunier, J.-M. Barnola, # U. Siegenthaler, D. Raynaud, J. Jouzel, H. Fischer, K. Kawamura, # and T.F. Stocker. 2008. # High-resolution carbon dioxide concentration record 650,000-800,000 # years before present. # Nature, Vol. 453, pp. 379-382, 15 May 2008. doi:10.1038/nature06949 # The very script to plot them, with Czech titles: set encoding utf8 set term svg enhanced #set term pdf color enhanced font "Arial-Medium" set out "800-800ka-cz65.svg" set grid set title \ "Ozářenost atmosféry, CO_2, teplotní anomálie za minulých 800 tisíc let \n \ a ozářenost v příštích 800 tisících letech, pro červenec na 65° sev. šířky" set ylabel \ "ozářenost / 2 W/m^2 + 50, koncentrace / ppm, \n \ teplotní odchylka × (8/K) + 225, \n \ budoucí ozářenost / 2 W/m^2 + 90, set xlabel "stáří nebo čas v budoucnosti / ka" set ytics 20 plot [800:0] [140:420] \ "-800-800ka1361.txt" using (-$1):(50 + $2/2) \ with lines lt 1 lw 2 title 'ozářenost',\ "t.txt" using ($3/1000):(225+$5*8) with lines lt 2 lw 0.5 \ title 'teplotní odchylka v Antarktidě' ,\ "comp800.txt" using ($1/1000):2 with lines lt 3 lw 0.5 \ title 'CO_2', \ "-800-800ka1361.txt" using 1:(90 + $2/2) \ with lines lt 1 title 'budoucí ozářenost' quit