1.6 Correlation maps CHAPTER 1. DATA ANALYSIS 47

Size: px
Start display at page:

Download "1.6 Correlation maps CHAPTER 1. DATA ANALYSIS 47"

Transcription

1 CHAPTER 1. DATA ANALYSIS Correlation maps Correlation analysis can be a very powerful tool to establish a statistical relationship between the two variables. Section 1.4 showed that a correlation coe cient between apairoftwovariablesx and y is defined as the covariance divided by the standard deviation of x and y (Eq. 1.24). Then section 1.5 further developed the method to evaluate the statistical significance of the correlation coe cient. Consider the example of surface air temperature and the index for El-Nino. The surface air temperature has the spatial and temporal variation, T = T (t, x, y), where x is longitude, y is latitude and t is time. Then it is possible to construct a x y map of correlation coe cient by performing the calculation of the correlation coe cient many times, for each position in (x, y) space. Repetitive calculations can be done by the loop statement in MATLAB. For example, you can define a new function correlate that calculates the correlation coe cient and its statistical significance, where m(t) istheindexofel- Nino and T (t, x, y) isthesurfaceairtemperature. >> for i=1:nx >> for j=1:ny >> [r,s] = correlate(m,t(:,i,j)); >> rxy(i, j)=r ; >> sxy(i, j)=s ;

2 CHAPTER 1. DATA ANALYSIS 48 >> end >> end Here, we have to be careful that both the indices of El-Nino and temperature must be anomalies from the climatology. It usually means that the mean seasonal cycle is subtracted from the original data. El-Nino events have strong interannual variability (2 7 year timescale) and this step allows us to focus on the year-to-year variability. The raw data often includes strong signature of seasonality, and it should be removed before calculating the correlation. Fig 1.11 shows the resulting pattern of rxy. Exercises We will generate correlation maps between surface air temperature and the index of North Pacific Gyre Oscillation 1. Develop a MATLAB function that calculates the correlation coe cient between two variables. 2. Download the NPGO index from Prof. Di Lorenzo s website ( and load it on MATLAB. 3. Remove the mean seasonal cycle from the data and calculate the e ective sample size of the air temperature data for each grid cell for the 66 year period ( ).

3 CHAPTER 1. DATA ANALYSIS o N o N o 60 o E 120 o E 180 o W 120 o W 60o W 0 o o S o S Figure 1.11: Correlation map. Surface air temperature anomalies are correlated with the Nino 3.4 index. The data period is from 1950 to Calculate the e ective sample size of the NPGO index for the 66 year period ( ). 5. Calculate correlation coe cient for each grid cell. 6. Generate a map similar to Fig 1.11 for the NPGO. 7. Publish the MATLAB script that performs all of the activity above, and submit it as a report in the PDF format. Reference

4 CHAPTER 1. DATA ANALYSIS 50 Di Lorenzo et al., 2008, North Pacific Gyre Oscillation links ocean climate and ecosystem change, Geophysical Research Letters.

5 CHAPTER 1. DATA ANALYSIS Multiple Linear Regression Figure 1.12 shows the recent history of atmospheric CO 2 observed at the Mauna Loa observatory in Hawaii. This observatory is the world s oldest continuous CO 2 monitoring station, providing a benchmark for measurement of the greenhouse gases. The concentration of CO 2 in the atmosphere has been measured here since 1950s, showing prominent increase due to the anthropogenic emission of fossil fuel CO 2,knownasthe KeelingCurve. In addition to the long-term increase, there is a stron annual cycle associated with the seasonal photosynthesis and respiration on land. Atmospheric CO 2 tends to increase during cool seasons and decrease during warm seasons, resulting in the maximum in the spring and minimum in the fall. Let s consider a simple statistical model for the evolution of atmospheric CO 2 including a linear trend and a sinusoidal seasonal cycle. y = a 0 + a 1 t + a 2 sin(2 t)+a 3 cos(2 t) (1.36) y consists of atmospheric CO 2, as a function of time (t). The periodicity is set to 1 year as it represents qthe seasonal cycle, and its amplitude is determined by a a 2 3. Section 1.4 showed that the linear regression can be expressed in the vector-matrix problem, y = Ex, where y vector contains the observable and E is a N 2matrix

6 CHAPTER 1. DATA ANALYSIS Mauna Loa CO 2, ppmv time Figure 1.12: Atmospheric CO 2 level observed at the Mauna Loa observatory in Hawaii from 1991 to The data is provided by the Global Monitoring Division of NOAA and the Scripps CO 2 program ( ucsd.edu/data/atmospheric_co2/mlo). The data in MATLAB format is downloadable from courses/eas2655/mlo_co2.mat.

7 CHAPTER 1. DATA ANALYSIS 53 consisting of two column vectors with ones and another variable (e.g. time) used to explain the variations in y. Then we calculated a particular choice of x that gives us the best linear fit to the observation, containing the slope and intercept of the regression line. In this framework, it is possible to have more than two columns in E. 0 y 1 y 2. y N 1 C = A y = 0 0 a 0 + a 1 t 1 + a 2 sin(2 t 1 )+a 3 cos(2 t 1 ) a 0 + a 1 t 2 + a 2 sin(2 t 2 )+a 3 cos(2 t 2 ). a 0 + a 1 t N + a 2 sin(2 t N )+a 3 cos(2 t N ) 1 t 1 sin(2 t 1 ) cos(2 t 1 ) 1 t 2 sin(2 t 2 ) cos(2 t 2 ). 1 t N sin(2 t N ) cos(2 t N ) {z } E 1 0 C B a 0 a 1 a 2 a 3 1 C A {z } x y = Ex (1.37) Here the objective is to find x that provides the best fit to the observation for y. This is exactly the same mathematical problem as Eq So, the pseudo inverse of E can be used to find the regression coe cient, x. x = E T E 1 E T y obs (1.38) This is called the multiple linear regression (MLR). When this calculation is applied to the Mauna Loa CO 2 data, we find the regression coe cients of x(1) = 1 C A

8 CHAPTER 1. DATA ANALYSIS [ppm], x(2) = 1.97[ppm/yr], x(3) = 3.02[ppm] and x(4) = 0.80[ppm]. The resulting multiple regression line is shown in Fig It also compares the raw data, simple linear regression and the multiple linear regression. r 2 value is for simple linear regression, and it increases to for the multiple linear regression. In this particular example, MLR can explain more than 99% of the variance. Exercises We will perform MLR fit to observed greenhouse gas concentrations. 1. Download the monthly CO 2 timeseries from 1958 to present from the Scripps CO 2 program website ( co2/primary_mlo_co2_record). 2. Plot the raw data of pco 2 as a function of time (t). 3. Perform simple linear regression including t only. Examine the regression coe cients and r 2 value. 4. Perform multiple linear regression including t and t 2. Note that t 2 is required for fitting the accelerating rate of CO 2 increase. Examine the regression coe cients and r 2 value. 5. Perform multiple linear regression including t, t 2, sin and cosine of t. Examine the regression coe - cients and r 2 value.

9 CHAPTER 1. DATA ANALYSIS Observation MLR fit Simple Regr atmospheric pco2, ppm time Figure 1.13: Atmospheric CO 2 level observed at the Mauna Loa observatory in Hawaii from 1991 to 2016 (black), simple linear regression (blue) and multiple linear regression (red). 6. Plot everything together similar to Fig Publish your MATLAB script that performs above tasks.

Di erential equations

Di erential equations Chapter 2 Di erential equations In the second part of the semester, we develop skills in building models relevant to the Earth, Atmospheric, Oceanic and Planetary Sciences. In particular, di erential equations

More information

1.5 Statistical significance of linear trend

1.5 Statistical significance of linear trend CHAPTER 1. DATA ANALYSIS 42 1.5 Statistical significance of linear trend Temporal trends can be calculated for any time varying data. When we perform the linear regression, we may find non-zero linear

More information

3. Carbon Dioxide (CO 2 )

3. Carbon Dioxide (CO 2 ) 3. Carbon Dioxide (CO 2 ) Basic information on CO 2 with regard to environmental issues Carbon dioxide (CO 2 ) is a significant greenhouse gas that has strong absorption bands in the infrared region and

More information

Is the basin wide warming in the North Atlantic Ocean related to atmospheric carbon dioxide and global warming?

Is the basin wide warming in the North Atlantic Ocean related to atmospheric carbon dioxide and global warming? Click Here for Full Article GEOPHYSICAL RESEARCH LETTERS, VOL. 37,, doi:10.1029/2010gl042743, 2010 Is the basin wide warming in the North Atlantic Ocean related to atmospheric carbon dioxide and global

More information

HUMAN FINGERPRINTS (1): OBSERVATIONS

HUMAN FINGERPRINTS (1): OBSERVATIONS HUMAN FINGERPRINTS (1): OBSERVATIONS 1. Introduction: the story so far. 2. Global warming: the last 150 years 3. Is it really warming? 4. Fingerprints: the stratosphere, the hockey sticks Radiance (mw.m

More information

Semiblind Source Separation of Climate Data Detects El Niño as the Component with the Highest Interannual Variability

Semiblind Source Separation of Climate Data Detects El Niño as the Component with the Highest Interannual Variability Semiblind Source Separation of Climate Data Detects El Niño as the Component with the Highest Interannual Variability Alexander Ilin Neural Networks Research Centre Helsinki University of Technology P.O.

More information

Twentieth-Century Sea Surface Temperature Trends M.A. Cane, et al., Science 275, pp (1997) Jason P. Criscio GEOS Apr 2006

Twentieth-Century Sea Surface Temperature Trends M.A. Cane, et al., Science 275, pp (1997) Jason P. Criscio GEOS Apr 2006 Twentieth-Century Sea Surface Temperature Trends M.A. Cane, et al., Science 275, pp. 957-960 (1997) Jason P. Criscio GEOS 513 12 Apr 2006 Questions 1. What is the proposed mechanism by which a uniform

More information

SIO 210 CSP: Data analysis methods L. Talley, Fall Sampling and error 2. Basic statistical concepts 3. Time series analysis

SIO 210 CSP: Data analysis methods L. Talley, Fall Sampling and error 2. Basic statistical concepts 3. Time series analysis SIO 210 CSP: Data analysis methods L. Talley, Fall 2016 1. Sampling and error 2. Basic statistical concepts 3. Time series analysis 4. Mapping 5. Filtering 6. Space-time data 7. Water mass analysis Reading:

More information

Forced and internal variability of tropical cyclone track density in the western North Pacific

Forced and internal variability of tropical cyclone track density in the western North Pacific Forced and internal variability of tropical cyclone track density in the western North Pacific Wei Mei 1 Shang-Ping Xie 1, Ming Zhao 2 & Yuqing Wang 3 Climate Variability and Change and Paleoclimate Working

More information

Separation of a Signal of Interest from a Seasonal Effect in Geophysical Data: I. El Niño/La Niña Phenomenon

Separation of a Signal of Interest from a Seasonal Effect in Geophysical Data: I. El Niño/La Niña Phenomenon International Journal of Geosciences, 2011, 2, **-** Published Online November 2011 (http://www.scirp.org/journal/ijg) Separation of a Signal of Interest from a Seasonal Effect in Geophysical Data: I.

More information

A GEOLOGICAL VIEW OF CLIMATE CHANGE AND GLOBAL WARMING

A GEOLOGICAL VIEW OF CLIMATE CHANGE AND GLOBAL WARMING A GEOLOGICAL VIEW OF CLIMATE CHANGE AND GLOBAL WARMING Compiled by William D. Pollard, M Ray Thomasson PhD, and Lee Gerhard PhD THE ISSUE - Does the increase of carbon dioxide in the atmosphere, resulting

More information

Meteorology B Wright State Invite Team Name Team # Student Members: &

Meteorology B Wright State Invite Team Name Team # Student Members: & 1 Meteorology B Team Name Team # Student Members: & Raw Score: / 126 Rank: Part I. Multiple Choice. Answer the following questions by selecting the best answer. 2 points each. 1. All of the following are

More information

MAR110 LECTURE #22 Climate Change

MAR110 LECTURE #22 Climate Change MAR 110: Lecture 22 Outline Climate Change 1 MAR110 LECTURE #22 Climate Change Climate Change Diagnostics Drought and flooding represent just a couple of hazards related to climate variability (O) The

More information

Which Climate Model is Best?

Which Climate Model is Best? Which Climate Model is Best? Ben Santer Program for Climate Model Diagnosis and Intercomparison Lawrence Livermore National Laboratory, Livermore, CA 94550 Adapting for an Uncertain Climate: Preparing

More information

Statistical Test of the Global Warming Hypothesis

Statistical Test of the Global Warming Hypothesis Statistical Test of the Global Warming Hypothesis http://www.leapcad.com/climate_analysis/statistical_test_of_global_warming.xmcd Statistical test of how well Solar Insolation and CO2 variation explain

More information

Major climate change triggers

Major climate change triggers Major climate change triggers Variations in solar output Milankovitch cycles Elevation & distribution of continents Ocean interactions Atmospheric composition change (CO 2 and other volcanic gasses) Biological

More information

Ocean Constraints on the Atmospheric Inverse Problem: The contribution of Forward and Inverse Models

Ocean Constraints on the Atmospheric Inverse Problem: The contribution of Forward and Inverse Models Ocean Constraints on the Atmospheric Inverse Problem: The contribution of Forward and Inverse Models Nicolas Gruber Institute of Geophysics and Planetary Physics & Department of Atmospheric Sciences, University

More information

Global warming Summary evidence

Global warming Summary evidence Global warming Summary evidence Learning goals Observations of global temperature change How/why we can be confident in the results Difference between forcing and response Notion of an interaction The

More information

Anthropogenic warming of central England temperature

Anthropogenic warming of central England temperature ATMOSPHERIC SCIENCE LETTERS Atmos. Sci. Let. 7: 81 85 (2006) Published online 18 September 2006 in Wiley InterScience (www.interscience.wiley.com).136 Anthropogenic warming of central England temperature

More information

Decadal variability in the Earth s reflectance as observed by Earthshine Enric Pallé

Decadal variability in the Earth s reflectance as observed by Earthshine Enric Pallé Decadal variability in the Earth s reflectance as observed by Earthshine Enric Pallé Big Bear Solar Observatory, NJIT The albedo sets the input to the climate heat engine P in = Cπ R 2 E (1 A); Solar constant

More information

Earth Science Lesson Plan Quarter 2, Week 6, Day 1

Earth Science Lesson Plan Quarter 2, Week 6, Day 1 Earth Science Lesson Plan Quarter 2, Week 6, Day 1 1 Outcomes for Today Standard Focus: Earth Sciences 5.f students know the interaction of wind patterns, ocean currents, and mountain ranges results in

More information

El Niño Seasonal Weather Impacts from the OLR Event Perspective

El Niño Seasonal Weather Impacts from the OLR Event Perspective Science and Technology Infusion Climate Bulletin NOAA s National Weather Service 41 st NOAA Annual Climate Diagnostics and Prediction Workshop Orono, ME, 3-6 October 2016 2015-16 El Niño Seasonal Weather

More information

Atmospheric Carbon Dioxide Concentration and the Obseroed Airborne Fraction.

Atmospheric Carbon Dioxide Concentration and the Obseroed Airborne Fraction. CHAPTER 4 Datafor Carbon Cycle Model Testing In order to have a common data set available for testing and validation of carbon cycle models the most relevant data for these purposes have been brought together

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION SUPPLEMENTARY INFORMATION doi:10.1038/nature11784 Methods The ECHO-G model and simulations The ECHO-G model 29 consists of the 19-level ECHAM4 atmospheric model and 20-level HOPE-G ocean circulation model.

More information

Environmental Science Chapter 13 Atmosphere and Climate Change Review

Environmental Science Chapter 13 Atmosphere and Climate Change Review Environmental Science Chapter 13 Atmosphere and Climate Change Review Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Climate in a region is a. the long-term,

More information

In the spring of 2016, the American Philosophical Society s

In the spring of 2016, the American Philosophical Society s Introduction to the Symposium on Observed Climate Change 1 WARREN M. WASHINGTON Senior Scientist, Climate Change Research Section National Center for Atmospheric Research In the spring of 2016, the American

More information

Global Temperature Is Continuing to Rise: A Primer on Climate Baseline Instability. G. Bothun and S. Ostrander Dept of Physics, University of Oregon

Global Temperature Is Continuing to Rise: A Primer on Climate Baseline Instability. G. Bothun and S. Ostrander Dept of Physics, University of Oregon Global Temperature Is Continuing to Rise: A Primer on Climate Baseline Instability G. Bothun and S. Ostrander Dept of Physics, University of Oregon The issue of whether or not humans are inducing significant

More information

The Canadian Climate Model 's Epic Failure November 2016

The Canadian Climate Model 's Epic Failure November 2016 The Canadian Climate Model 's Epic Failure November 2016 By: Ken Gregory The Canadian Centre for Climate Modeling and Analysis located at the University of Victoria in British Columbia submitted five runs

More information

FOSSIL FUELS, ENERGY, AND THE PERTURBED CARBON CYCLE

FOSSIL FUELS, ENERGY, AND THE PERTURBED CARBON CYCLE FOSSIL FUELS, ENERGY, AND THE PERTURBED CARBON CYCLE 1. Introduction 2. Why are they called fossil fuels? 3. Burning buried sunshine 4. Perturbing the carbon cycle 5. Welcome to the Anthropocene A LOGICAL

More information

Atmospheric CO2 Observations

Atmospheric CO2 Observations ATS 760 Global Carbon Cycle Atmospheric CO2 Observations (in-situ) BRW MLO Point Barrow, Alaska Scott Denning CSU ATS Mauna Loa, Hawaii 1 ATS 760 Global Carbon Cycle SPO SMO American Samoa South Pole Interannual

More information

Climate Change: Global Warming Claims

Climate Change: Global Warming Claims Climate Change: Global Warming Claims Background information (from Intergovernmental Panel on Climate Change): The climate system is a complex, interactive system consisting of the atmosphere, land surface,

More information

Carbon Cycle Introduction

Carbon Cycle Introduction Carbon Cycle Introduction Inez Fung UC Berkeley Ifung@berkeley.edu 2nd NCAR-MSRI Summer Graduate Workshop on Carbon Data Assimilation NCAR July 9-13 2006 High-precision Atm CO 2: at MLO since 1958 180

More information

identify anomalous wintertime temperatures in the U.S.

identify anomalous wintertime temperatures in the U.S. 1 1 2 The pattern of sea level pressure to effectively identify anomalous wintertime temperatures in the U.S. 3 4 Huikyo Lee 1, Wenxuan Zhong 2, Seth Olsen 3, Daeok Youn 4 and Donald J. Wuebbles 3 5 6

More information

School Name Team # International Academy East Meteorology Test Graphs, Pictures, and Diagrams Diagram #1

School Name Team # International Academy East Meteorology Test Graphs, Pictures, and Diagrams Diagram #1 School Name Team # International Academy East Meteorology Test Graphs, Pictures, and Diagrams Diagram #1 Use the map above, and the locations marked A-F, to answer the following questions. 1. The center

More information

The Forcing of the Pacific Decadal Oscillation

The Forcing of the Pacific Decadal Oscillation The Forcing of the Pacific Decadal Oscillation Schneider and Cornuelle, 2005 Patrick Shaw 3/29/06 Overlying Questions What processes statistically influence variability in the PDO? On what time scales

More information

What is one-month forecast guidance?

What is one-month forecast guidance? What is one-month forecast guidance? Kohshiro DEHARA (dehara@met.kishou.go.jp) Forecast Unit Climate Prediction Division Japan Meteorological Agency Outline 1. Introduction 2. Purposes of using guidance

More information

The Spring Predictability Barrier Phenomenon of ENSO Predictions Generated with the FGOALS-g Model

The Spring Predictability Barrier Phenomenon of ENSO Predictions Generated with the FGOALS-g Model ATMOSPHERIC AND OCEANIC SCIENCE LETTERS, 2010, VOL. 3, NO. 2, 87 92 The Spring Predictability Barrier Phenomenon of ENSO Predictions Generated with the FGOALS-g Model WEI Chao 1,2 and DUAN Wan-Suo 1 1

More information

8.5 GREENHOUSE EFFECT 8.6 GLOBAL WARMING HW/Study Packet

8.5 GREENHOUSE EFFECT 8.6 GLOBAL WARMING HW/Study Packet 8.5 GREENHOUSE EFFECT 8.6 GLOBAL WARMING HW/Study Packet Required: READ Tsokos, pp 434-450 Hamper pp 294-307 SL/HL Supplemental: none REMEMBER TO. Work through all of the example problems in the texts

More information

SIO 210: Data analysis methods L. Talley, Fall Sampling and error 2. Basic statistical concepts 3. Time series analysis

SIO 210: Data analysis methods L. Talley, Fall Sampling and error 2. Basic statistical concepts 3. Time series analysis SIO 210: Data analysis methods L. Talley, Fall 2016 1. Sampling and error 2. Basic statistical concepts 3. Time series analysis 4. Mapping 5. Filtering 6. Space-time data 7. Water mass analysis Reading:

More information

Increased phytoplankton blooms detected by ocean color

Increased phytoplankton blooms detected by ocean color Increased phytoplankton blooms detected by ocean color Mati Kahru & B. Greg Mitchell Scripps Institution of Oceanography/ University of California San Diego La Jolla, CA 92093-0218 ASLO Aquatic Sciences

More information

Website Lecture 3 The Physical Environment Part 1

Website   Lecture 3 The Physical Environment Part 1 Website http://websites.rcc.edu/halama Lecture 3 The Physical Environment Part 1 1 Lectures 3 & 4 1. Biogeochemical Cycling 2. Solar Radiation 3. The Atmosphere 4. The Global Ocean 5. Weather and Climate

More information

Influence of IOD on the following year s El Niño: robustness across the CMIP models?

Influence of IOD on the following year s El Niño: robustness across the CMIP models? Influence of IOD on the following year s El Niño: robustness across the CMIP models? N.C. Jourdain Climate Change Research Center, University of New South Wales, Sydney M. Lengaigne, J. Vialard, T. Izumo

More information

Problems with EOF (unrotated)

Problems with EOF (unrotated) Rotated EOFs: When the domain sizes are larger than optimal for conventional EOF analysis but still small enough so that the real structure in the data is not completely obscured by sampling variability,

More information

Recent Climate History - The Instrumental Era.

Recent Climate History - The Instrumental Era. 2002 Recent Climate History - The Instrumental Era. Figure 1. Reconstructed surface temperature record. Strong warming in the first and late part of the century. El Ninos and major volcanic eruptions are

More information

The Climate System and Climate Models. Gerald A. Meehl National Center for Atmospheric Research Boulder, Colorado

The Climate System and Climate Models. Gerald A. Meehl National Center for Atmospheric Research Boulder, Colorado The Climate System and Climate Models Gerald A. Meehl National Center for Atmospheric Research Boulder, Colorado The climate system includes all components of the physical earth system that affect weather

More information

ENSO effects on mean temperature in Turkey

ENSO effects on mean temperature in Turkey Hydrology Days 007 ENSO effects on mean temperature in Turkey Ali hsan Martı Selcuk University, Civil Engineering Department, Hydraulic Division, 4035, Campus, Konya, Turkey Ercan Kahya 1 Istanbul Technical

More information

Introduction of Dynamical Regional Downscaling (DSJRA-55) Using the JRA-55 Reanalysis and Discussion for Possibility of its Practical Use

Introduction of Dynamical Regional Downscaling (DSJRA-55) Using the JRA-55 Reanalysis and Discussion for Possibility of its Practical Use Thursday, March 24 Session4:Localizing Climate Information Introduction of Dynamical Regional Downscaling (DSJRA-55) Using the JRA-55 Reanalysis and Discussion for Possibility of its Practical Use Nobuyuki

More information

The Impact of increasing greenhouse gases on El Nino/Southern Oscillation (ENSO)

The Impact of increasing greenhouse gases on El Nino/Southern Oscillation (ENSO) The Impact of increasing greenhouse gases on El Nino/Southern Oscillation (ENSO) David S. Battisti 1, Daniel J. Vimont 2, Julie Leloup 2 and William G.H. Roberts 3 1 Univ. of Washington, 2 Univ. of Wisconsin,

More information

Will a warmer world change Queensland s rainfall?

Will a warmer world change Queensland s rainfall? Will a warmer world change Queensland s rainfall? Nicholas P. Klingaman National Centre for Atmospheric Science-Climate Walker Institute for Climate System Research University of Reading The Walker-QCCCE

More information

Activity 2.2: Expert Group B Worksheet

Activity 2.2: Expert Group B Worksheet Name Teacher Date Activity 2.2: Expert Group B Worksheet In your expert group, complete each task answer the questions related to each task. In the next activity, you will explain your phenomenon to your

More information

Supplement of Vegetation greenness and land carbon-flux anomalies associated with climate variations: a focus on the year 2015

Supplement of Vegetation greenness and land carbon-flux anomalies associated with climate variations: a focus on the year 2015 Supplement of Atmos. Chem. Phys., 17, 13903 13919, 2017 https://doi.org/10.5194/acp-17-13903-2017-supplement Author(s) 2017. This work is distributed under the Creative Commons Attribution 3.0 License.

More information

Lecture 8: Natural Climate Variability

Lecture 8: Natural Climate Variability Lecture 8: Natural Climate Variability Extratropics: PNA, NAO, AM (aka. AO), SAM Tropics: MJO Coupled A-O Variability: ENSO Decadal Variability: PDO, AMO Unforced vs. Forced Variability We often distinguish

More information

La Niña impacts on global seasonal weather anomalies: The OLR perspective. Andrew Chiodi and Ed Harrison

La Niña impacts on global seasonal weather anomalies: The OLR perspective. Andrew Chiodi and Ed Harrison La Niña impacts on global seasonal weather anomalies: The OLR perspective Andrew Chiodi and Ed Harrison Outline Motivation Impacts of the El Nino- Southern Oscillation (ENSO) on seasonal weather anomalies

More information

An Introduction to Coupled Models of the Atmosphere Ocean System

An Introduction to Coupled Models of the Atmosphere Ocean System An Introduction to Coupled Models of the Atmosphere Ocean System Jonathon S. Wright jswright@tsinghua.edu.cn Atmosphere Ocean Coupling 1. Important to climate on a wide range of time scales Diurnal to

More information

MS RAND CPP PROG0407. HadAT: An update to 2005 and development of the dataset website

MS RAND CPP PROG0407. HadAT: An update to 2005 and development of the dataset website MS RAND CPP PROG0407 HadAT: An update to 2005 and development of the dataset website Holly Coleman and Peter Thorne CV(CR) Contract Deliverable reference number: 03.09.04 File: M/DoE/2/9 Delivered from

More information

A study: The temperature rise has caused the CO2

A study: The temperature rise has caused the CO2 A study: The temperature rise has caused the CO2 Increase, not the other way around Posted on June 9, 2010 by Anthony Watts Guest post by Lon Hocker A commonly seen graph illustrating what is claimed to

More information

Assessment of the Impact of El Niño-Southern Oscillation (ENSO) Events on Rainfall Amount in South-Western Nigeria

Assessment of the Impact of El Niño-Southern Oscillation (ENSO) Events on Rainfall Amount in South-Western Nigeria 2016 Pearl Research Journals Journal of Physical Science and Environmental Studies Vol. 2 (2), pp. 23-29, August, 2016 ISSN 2467-8775 Full Length Research Paper http://pearlresearchjournals.org/journals/jpses/index.html

More information

11/24/09 OCN/ATM/ESS The Pacific Decadal Oscillation. What is the PDO? Causes of PDO Skepticism Other variability associated with PDO

11/24/09 OCN/ATM/ESS The Pacific Decadal Oscillation. What is the PDO? Causes of PDO Skepticism Other variability associated with PDO 11/24/09 OCN/ATM/ESS 587.. The Pacific Decadal Oscillation What is the PDO? Causes of PDO Skepticism Other variability associated with PDO The Pacific Decadal Oscillation (PDO). (+) ( ) EOF 1 of SST (+)

More information

Climate Feedbacks from ERBE Data

Climate Feedbacks from ERBE Data Climate Feedbacks from ERBE Data Why Is Lindzen and Choi (2009) Criticized? Zhiyu Wang Department of Atmospheric Sciences University of Utah March 9, 2010 / Earth Climate System Outline 1 Introduction

More information

Fire Weather Monitoring and Predictability in the Southeast

Fire Weather Monitoring and Predictability in the Southeast Fire Weather Monitoring and Predictability in the Southeast Corey Davis October 9, 2014 Photo: Pains Bay fire in 2011 (courtesy Donnie Harris, NCFWS) Outline Fire risk monitoring Fire risk climatology

More information

Lindzen et al. (2001, hereafter LCH) present

Lindzen et al. (2001, hereafter LCH) present NO EVIDENCE FOR IRIS BY DENNIS L. HARTMANN AND MARC L. MICHELSEN Careful analysis of data reveals no shrinkage of tropical cloud anvil area with increasing SST AFFILIATION: HARTMANN AND MICHELSEN Department

More information

SIO 210: Data analysis

SIO 210: Data analysis SIO 210: Data analysis 1. Sampling and error 2. Basic statistical concepts 3. Time series analysis 4. Mapping 5. Filtering 6. Space-time data 7. Water mass analysis 10/8/18 Reading: DPO Chapter 6 Look

More information

MAR110 LECTURE #28 Climate Change I

MAR110 LECTURE #28 Climate Change I 25 November 2007 MAR 110 Lec28 Climate Change I 1 MAR110 LECTURE #28 Climate Change I Figure 28.1 Climate Change Diagnostics Drought and flooding represent just a couple of hazards related to climate variability

More information

Global and regional climate changes: myths and reality. A.B.Polonsky Marine Hydrophysical Institute

Global and regional climate changes: myths and reality. A.B.Polonsky Marine Hydrophysical Institute Global and regional climate changes: myths and reality A.B.Polonsky Marine Hydrophysical Institute 2010 Question 1: Where we are at the glacial-interglacial natural cycle? Question 2: Has got recent climate

More information

Atmospheric circulation analysis for seasonal forecasting

Atmospheric circulation analysis for seasonal forecasting Training Seminar on Application of Seasonal Forecast GPV Data to Seasonal Forecast Products 18 21 January 2011 Tokyo, Japan Atmospheric circulation analysis for seasonal forecasting Shotaro Tanaka Climate

More information

Was the Amazon Drought of 2005 Human-Caused? Peter Cox Met Office Chair in Climate System Dynamics. Outline

Was the Amazon Drought of 2005 Human-Caused? Peter Cox Met Office Chair in Climate System Dynamics. Outline Was the Amazon Drought of 2005 Human-Caused? Peter Cox Met Office Chair in Climate System Dynamics With thanks to : Phil Harris, Chris Huntingford, Chris Jones, Richard Betts, Matthew Collins, Jose Marengo,

More information

bkpl!"#$ `l O!" = = = = = ! == !"#$% ADVANCES IN CLIMATE CHANGE RESEARCH

bkpl!#$ `l O! = = = = = ! == !#$% ADVANCES IN CLIMATE CHANGE RESEARCH = = = = = 7 =!"#$% 5 ADVANCES IN CLIMATE CHANGE RESEARCH Vol. 7 No. May!"67-79 () -7-7 bkpl!"#$ `l O!"!==!"#$%&'()*+,-./ =ONMMQQ =! CO δ C!"#$%&'()*+ CO!"#$%&'( δ C!"# CO!"#$%&'()*+,'-./!" CO!"#$% ENSO!"#$%!"#$%&'()*+,-.La

More information

Deke Arndt, Chief, Climate Monitoring Branch, NOAA s National Climatic Data Center

Deke Arndt, Chief, Climate Monitoring Branch, NOAA s National Climatic Data Center Thomas R. Karl, L.H.D., Director, NOAA s National Climatic Data Center, and Chair of the Subcommittee on Global Change Research Peter Thorne, PhD, Senior Scientist, Cooperative Institute for Climate and

More information

Clara Deser*, James W. Hurrell and Adam S. Phillips. Climate and Global Dynamics Division. National Center for Atmospheric Research

Clara Deser*, James W. Hurrell and Adam S. Phillips. Climate and Global Dynamics Division. National Center for Atmospheric Research 1 2 Supplemental Material 3 4 5 The Role of the North Atlantic Oscillation in European Climate Projections 6 7 Clara Deser*, James W. Hurrell and Adam S. Phillips 8 9 10 11 Climate and Global Dynamics

More information

ALMA MEMO : the driest and coldest summer. Ricardo Bustos CBI Project SEP 06

ALMA MEMO : the driest and coldest summer. Ricardo Bustos CBI Project SEP 06 ALMA MEMO 433 2002: the driest and coldest summer Ricardo Bustos CBI Project E-mail: rbustos@dgf.uchile.cl 2002 SEP 06 Abstract: This memo reports NCEP/NCAR Reanalysis results for the southern hemisphere

More information

Climate Risk Profile for Samoa

Climate Risk Profile for Samoa Climate Risk Profile for Samoa Report Prepared by Wairarapa J. Young Samoa Meteorology Division March, 27 Summary The likelihood (i.e. probability) components of climate-related risks in Samoa are evaluated

More information

Presentation Overview. Southwestern Climate: Past, present and future. Global Energy Balance. What is climate?

Presentation Overview. Southwestern Climate: Past, present and future. Global Energy Balance. What is climate? Southwestern Climate: Past, present and future Mike Crimmins Climate Science Extension Specialist Dept. of Soil, Water, & Env. Science & Arizona Cooperative Extension The University of Arizona Presentation

More information

Large scale circulation patterns associated to seasonal dry and wet conditions over the Czech Republic

Large scale circulation patterns associated to seasonal dry and wet conditions over the Czech Republic Large scale circulation patterns associated to seasonal dry and wet conditions over the Czech Republic C. BORONEANT, V. POTOP, M. MOZNÝ3, P. ŠTEPÁNEK3, P. SKALÁK3 Center for Climate Change, Geography Dept.,

More information

Tokyo Climate Center Website (TCC website) and its products -For monitoring the world climate and ocean-

Tokyo Climate Center Website (TCC website) and its products -For monitoring the world climate and ocean- Tokyo, 14 November 2016, TCC Training Seminar Tokyo Climate Center Website (TCC website) and its products -For monitoring the world climate and ocean- Yasushi MOCHIZUKI Tokyo Climate Center Japan Meteorological

More information

Strengthening seasonal marine CO 2 variations due to increasing atmospheric CO 2 - Supplementary material

Strengthening seasonal marine CO 2 variations due to increasing atmospheric CO 2 - Supplementary material Strengthening seasonal marine CO 2 variations due to increasing atmospheric CO 2 - Supplementary material Peter Landschützer 1, Nicolas Gruber 2, Dorothee C. E. Bakker 3, Irene Stemmler 1, Katharina D.

More information

Assessment of strategies to project U.S. landfalling hurricanes. Judith Curry

Assessment of strategies to project U.S. landfalling hurricanes. Judith Curry Assessment of strategies to project U.S. landfalling hurricanes Judith Curry Overview Uncertainties in historical landfall data base Impact of modes of natural climate variability Impact of global warming

More information

MASTERY ASSIGNMENT 2015

MASTERY ASSIGNMENT 2015 Climate & Meteorology MASTERY ASSIGNMENT 2015 Directions: You must submit this document via Google Docs to lzimmerman@wcpss.net. The document must include the questions and pictures must be hand drawn

More information

Analysis Links Pacific Decadal Variability to Drought and Streamflow in United States

Analysis Links Pacific Decadal Variability to Drought and Streamflow in United States Page 1 of 8 Vol. 80, No. 51, December 21, 1999 Analysis Links Pacific Decadal Variability to Drought and Streamflow in United States Sumant Nigam, Mathew Barlow, and Ernesto H. Berbery For more information,

More information

Investigate the influence of the Amazon rainfall on westerly wind anomalies and the 2002 Atlantic Nino using QuikScat, Altimeter and TRMM data

Investigate the influence of the Amazon rainfall on westerly wind anomalies and the 2002 Atlantic Nino using QuikScat, Altimeter and TRMM data Investigate the influence of the Amazon rainfall on westerly wind anomalies and the 2002 Atlantic Nino using QuikScat, Altimeter and TRMM data Rong Fu 1, Mike Young 1, Hui Wang 2, Weiqing Han 3 1 School

More information

Temporal and spatial distribution of tropospheric CO 2 over China based on satellite observations during

Temporal and spatial distribution of tropospheric CO 2 over China based on satellite observations during Temporal and spatial distribution of tropospheric CO 2 over China based on satellite observations during 2003-2010 ZHANG XingYing 1,2* BAI WenGuang 1,& ZHANG Peng 1 1 Key Laboratory of Radiometric Calibration

More information

Research on Climate of Typhoons Affecting China

Research on Climate of Typhoons Affecting China Research on Climate of Typhoons Affecting China Xu Ming Shanghai Typhoon Institute November,25 Outline 1. Introduction 2. Typhoon disasters in China 3. Climatology and climate change of typhoon affecting

More information

Simulating Future Climate Change Using A Global Climate Model

Simulating Future Climate Change Using A Global Climate Model Simulating Future Climate Change Using A Global Climate Model Introduction: (EzGCM: Web-based Version) The objective of this abridged EzGCM exercise is for you to become familiar with the steps involved

More information

Global temperature record reaches one-third century

Global temperature record reaches one-third century Dec. 16, 2011 Vol. 21, No. 7 For Additional Information: Dr. John Christy, (256) 961-7763 john.christy@nsstc.uah.edu Dr. Roy Spencer, (256) 961-7960 roy.spencer@nsstc.uah.edu Global temperature record

More information

Introduction to Climate ~ Part I ~

Introduction to Climate ~ Part I ~ 2015/11/16 TCC Seminar JMA Introduction to Climate ~ Part I ~ Shuhei MAEDA (MRI/JMA) Climate Research Department Meteorological Research Institute (MRI/JMA) 1 Outline of the lecture 1. Climate System (

More information

THE PACIFIC DECADAL OSCILLATION, REVISITED. Matt Newman, Mike Alexander, and Dima Smirnov CIRES/University of Colorado and NOAA/ESRL/PSD

THE PACIFIC DECADAL OSCILLATION, REVISITED. Matt Newman, Mike Alexander, and Dima Smirnov CIRES/University of Colorado and NOAA/ESRL/PSD THE PACIFIC DECADAL OSCILLATION, REVISITED Matt Newman, Mike Alexander, and Dima Smirnov CIRES/University of Colorado and NOAA/ESRL/PSD PDO and ENSO ENSO forces remote changes in global oceans via the

More information

A distinct stronger warming in the tropical tropopause layer during using GPS radio occultation: Association with minor volcanic eruptions

A distinct stronger warming in the tropical tropopause layer during using GPS radio occultation: Association with minor volcanic eruptions A distinct stronger warming in the tropical tropopause layer during 2001-2010 using GPS radio occultation: Association with minor volcanic eruptions Sanjay Kumar Mehta 1*, Masatomo Fujiwara 2, and Toshitaka

More information

THE GREENHOUSE EFFECT

THE GREENHOUSE EFFECT ASTRONOMY READER THE GREENHOUSE EFFECT 35.1 THE GREENHOUSE EFFECT Overview Planets are heated by light from the Sun. Planets cool off by giving off an invisible kind of light, longwave infrared light.

More information

Australian Meteorological and Oceanographic Society (AMOS) Statement on Climate Change

Australian Meteorological and Oceanographic Society (AMOS) Statement on Climate Change Australian Meteorological and Oceanographic Society (AMOS) Statement on Climate Change This statement provides a summary of some aspects of climate change and its uncertainties, with particular focus on

More information

Climate Variability. Andy Hoell - Earth and Environmental Systems II 13 April 2011

Climate Variability. Andy Hoell - Earth and Environmental Systems II 13 April 2011 Climate Variability Andy Hoell - andrew_hoell@uml.edu Earth and Environmental Systems II 13 April 2011 The Earth System Earth is made of several components that individually change throughout time, interact

More information

Northern New England Climate: Past, Present, and Future. Basic Concepts

Northern New England Climate: Past, Present, and Future. Basic Concepts Northern New England Climate: Past, Present, and Future Basic Concepts Weather instantaneous or synoptic measurements Climate time / space average Weather - the state of the air and atmosphere at a particular

More information

ENSO amplitude changes in climate change commitment to atmospheric CO 2 doubling

ENSO amplitude changes in climate change commitment to atmospheric CO 2 doubling GEOPHYSICAL RESEARCH LETTERS, VOL. 33, L13711, doi:10.1029/2005gl025653, 2006 ENSO amplitude changes in climate change commitment to atmospheric CO 2 doubling Sang-Wook Yeh, 1 Young-Gyu Park, 1 and Ben

More information

Ocean carbon cycle feedbacks in the tropics from CMIP5 models

Ocean carbon cycle feedbacks in the tropics from CMIP5 models WWW.BJERKNES.UIB.NO Ocean carbon cycle feedbacks in the tropics from CMIP5 models Jerry Tjiputra 1, K. Lindsay 2, J. Orr 3, J. Segschneider 4, I. Totterdell 5, and C. Heinze 1 1 Bjerknes Centre for Climate

More information

CHAPTER 1: INTRODUCTION

CHAPTER 1: INTRODUCTION CHAPTER 1: INTRODUCTION There is now unequivocal evidence from direct observations of a warming of the climate system (IPCC, 2007). Despite remaining uncertainties, it is now clear that the upward trend

More information

June 1993 T. Nitta and J. Yoshimura 367. Trends and Interannual and Interdecadal Variations of. Global Land Surface Air Temperature

June 1993 T. Nitta and J. Yoshimura 367. Trends and Interannual and Interdecadal Variations of. Global Land Surface Air Temperature June 1993 T. Nitta and J. Yoshimura 367 Trends and Interannual and Interdecadal Variations of Global Land Surface Air Temperature By Tsuyoshi Nitta Center for Climate System Research, University of Tokyo,

More information

Grades 9-12: Earth Sciences

Grades 9-12: Earth Sciences Grades 9-12: Earth Sciences Earth Sciences...1 Earth s Place in the Universe...1 Dynamic Earth Processes...2 Energy in the Earth System...2 Biogeochemical cycles...4 Structure and Composition of the Atmosphere...4

More information

Teleconnections and Climate predictability

Teleconnections and Climate predictability Southern Hemisphere Teleconnections and Climate predictability Carolina Vera CIMA/CONICET University of Buenos Aires, UMI IFAECI/CNRS Buenos Aires, Argentina Motivation Large scale circulation variability

More information

Projected Change in Climate Under A2 Scenario in Dal Lake Catchment Area of Srinagar City in Jammu and Kashmir

Projected Change in Climate Under A2 Scenario in Dal Lake Catchment Area of Srinagar City in Jammu and Kashmir Current World Environment Vol. 11(2), 429-438 (2016) Projected Change in Climate Under A2 Scenario in Dal Lake Catchment Area of Srinagar City in Jammu and Kashmir Saqib Parvaze 1, Sabah Parvaze 2, Sheeza

More information

El Niño-Southern Oscillation and global warming: new data from old corals

El Niño-Southern Oscillation and global warming: new data from old corals El Niño-Southern Oscillation and global warming: new data from old corals Kim M. Cobb Georgia Inst. of Technology Chris Charles, Scripps Inst. of Oceanography Larry Edwards, Hai Cheng, UMN Emory University

More information

Primary Factors Contributing to Japan's Extremely Hot Summer of 2010

Primary Factors Contributing to Japan's Extremely Hot Summer of 2010 temperature anomalies by its standard deviation for JJA 2010 Primary Factors Contributing to Japan's Extremely Hot Summer of 2010 Nobuyuki Kayaba Climate Prediction Division,Japan Meteorological Agancy

More information

EVALUATION OF THE GLOBAL OCEAN DATA ASSIMILATION SYSTEM AT NCEP: THE PACIFIC OCEAN

EVALUATION OF THE GLOBAL OCEAN DATA ASSIMILATION SYSTEM AT NCEP: THE PACIFIC OCEAN 2.3 Eighth Symposium on Integrated Observing and Assimilation Systems for Atmosphere, Oceans, and Land Surface, AMS 84th Annual Meeting, Washington State Convention and Trade Center, Seattle, Washington,

More information