An R based rainfall generator using a stochastic seasonal switching model

Size: px
Start display at page:

Download "An R based rainfall generator using a stochastic seasonal switching model"

Transcription

1 An R based rainfall generator using a stochastic seasonal switching model Trevor Carey-Smith a, Peter Thomson b and John Sansom a a National Institute of Water and Atmospheric Research, New Zealand b Statistics Research Associates Ltd, New Zealand

2 WxGenerator?!? a library for the R statistical programming language. Package Objectives: 1. initially implement: a multi-site rainfall generation model a seasonal switching model 2. simple to use 3. inbuilt model validation/adequacy 4. simple and informative output 5. be extendable 2

3 The talk/package outline 1. The dataset importing, preparation 2. Initialisation a. rainfall model b. seasonal model c. reduced models 3. Parameter estimation 4. Simulation 5. Validation 3

4 Southland rainfall time series 12 locations 55 years ( ) Daily rainfall totals 4

5 Rainfall data within R package Held in a wg_data object: dat <- as.wg_data( rain=cbind(1:5,4:8), date=seq(sys.date(),,'days',5) ) wg_data sl_data <- read.wg_data( southland.csv ) 5

6 wg_data methods For example: subset.wg_data(), plot.wg_data(), etc. plot( subset(sl_data,select=1:4,year=1950,mon=1:10), cum=true ) 6

7 The rainfall model Based on Wilks(1998)and Thompson et al. (2007) This is a (partially) hidden three state model: dry 0 light rain 1 heavy rain 2 Dry 0 Light 1 Wet Heavy 2 Wilks, D.S., Multisite generalization of a daily stochastic precipitation generation model. J. Hydrol. 210, Thompson, C.S., P.J. Thomson and X. Zheng, Fitting a multisite daily rainfall model to New Zealand data. J. Hydrol.340,

8 The rainfall model The rainfall amounts depend solely on the current rainfall state: 0,1,2 0 where: and are unit exponential random variables. 8

9 Model parameters Dynamic parameters: 0 1 0, 0,1,2 0,1,2 Static parameters: : mean light rainfall : mean heavy rainfall Spatial parameters: : covariance matrix for rainfall states : covariance matrix for rainfall amounts 9

10 Model initialisation Model parameters held in wg_theta object: Dimensions: 8 sl_theta <- wg_theta(sl_data) 10

11 plot(sl_theta) 11

12 Interpretable parameters stationary probabilities: P(dry), P(light rain), P(heavy rain). expected durations: E(dry duration) E(light duration) etc. expected rainfall amounts: E(light rain) E(heavy rain) E(total rain) P(light rain) P(heavy rain) 12

13 13

14 plot(sl_theta,param= OmegaPsi ) 14

15 Seasonal switching model 1. Season anchor points. 2. An onset (or hazard) function for season change. e.g. standard deterministic seasons: sl_seas <- wg_seas( c(15,105,196,288), function(t) as.numeric(1:t > T/2), ) Equivalently: sl_seas <- wg_seas( seasons, fixed ) 15

16 Deterministic seasons plot(wg_seas( seasons, fixed )) Anchor points Onset times Season change interval 16

17 Stochastic seasons uniform onset probability function(t) rep(1/t, T) 17

18 Stochastic seasons beta onset probability sl_theta <- wg_theta(sl_data, seas= seasons,fun= betaonset ) function(t,q0,q1) -diff(1-pbeta(0:t/t,q0,q1)) 18

19 Reduced models The rainfall model can be simplified. For instance, the original Wilks (1998) model has: & wilks <- wg_reduce(theta=sl_theta,p=c(0, 12 ),a= 012 ) Our favoured model keeps and fixed across seasons: forces seasonal variability into the dynamic parameters 19

20 20

21 21

22 Parameter estimation This is a multi-step process: 1. Dynamic and static parameters univariate EM algorithm 2. Season change parameters (if necessary) estimated between each EM iteration sum loglik over all sites quasi-likelihood 3. Multi-site covariance matrices are estimated pairwise the site specific univariate parameters are kept fixed uses maximum likelihood (non-linear minimisation) 22

23 Example estimation Estimation can be done in stages: # define seasons sl_seas <- wg_seas( seasons,fun= unifonset ) # initialise theta sl_theta <- wg_theta(sl_data,seas=sl_seas) #univariate estimation sl_est <- wg_estimate(sl_data,sl_theta,method= em ) # bivariate estimation sl_est <- wg_estimate(sl_data,sl_est,method= ml, ml_stage= bivar ) or equivalently: sl_est <- wg_estimate( sl_data,method= auto, seas= seasons,fun= unifonset ) 23

24 Goodness of fit Improvements in BIC come from: 1. not partitioning into seasonal datasets 2. reducing parameters 12 to 4 seasons; non-seasonal betas 3. using stochastic seasons Change in AIC BIC 24

25 Estimated parameters 25

26 Simulation sl_sim <- wg_simulate(sl_est,years=100) wg_data 26

27 Recovery of season change points 0, 1R 1 0, 1R 27

28 Validation 1. General properties: a. rainfall distribution b. auto and cross correlations c. wet/dry durations 2. Annual/seasonal statistics a. total rainfall b. maximum daily rainfall c. number of wet days d. longest dry period 28

29 Rainfall distribution wg_properties(sl_data,sl_sim,,property= dist ) 29

30 Durations Wet Dry 30

31 Autocorrelation Occurrence Amount 31

32 Cross-correlation Occurrence Amount 32

33 Monthly summaries 33

34 Beta distribution onset probability 34

35 Annual rainfall amount 35

36 Maximum daily rainfall 36

37 Number of wet days 37

38 Length of longest dry 38

39 Conclusion 1. R package Multi-site rainfall model Seasonal switching model Reasonably fast and straightforward to use Additional models?? 2. Seasonal switching model Improved model fitting Enhanced seasonality in rainfall parameters More model flexibility Tool to examine seasonality of a region Much still to be explored 39

Hidden Markov Models for precipitation

Hidden Markov Models for precipitation Hidden Markov Models for precipitation Pierre Ailliot Université de Brest Joint work with Peter Thomson Statistics Research Associates (NZ) Page 1 Context Part of the project Climate-related risks for

More information

GENERALIZED LINEAR MODELING APPROACH TO STOCHASTIC WEATHER GENERATORS

GENERALIZED LINEAR MODELING APPROACH TO STOCHASTIC WEATHER GENERATORS GENERALIZED LINEAR MODELING APPROACH TO STOCHASTIC WEATHER GENERATORS Rick Katz Institute for Study of Society and Environment National Center for Atmospheric Research Boulder, CO USA Joint work with Eva

More information

STOCHASTIC MODELING OF ENVIRONMENTAL TIME SERIES. Richard W. Katz LECTURE 5

STOCHASTIC MODELING OF ENVIRONMENTAL TIME SERIES. Richard W. Katz LECTURE 5 STOCHASTIC MODELING OF ENVIRONMENTAL TIME SERIES Richard W Katz LECTURE 5 (1) Hidden Markov Models: Applications (2) Hidden Markov Models: Viterbi Algorithm (3) Non-Homogeneous Hidden Markov Model (1)

More information

Reduced Overdispersion in Stochastic Weather Generators for Statistical Downscaling of Seasonal Forecasts and Climate Change Scenarios

Reduced Overdispersion in Stochastic Weather Generators for Statistical Downscaling of Seasonal Forecasts and Climate Change Scenarios Reduced Overdispersion in Stochastic Weather Generators for Statistical Downscaling of Seasonal Forecasts and Climate Change Scenarios Yongku Kim Institute for Mathematics Applied to Geosciences National

More information

GENERALIZED LINEAR MODELING APPROACH TO STOCHASTIC WEATHER GENERATORS

GENERALIZED LINEAR MODELING APPROACH TO STOCHASTIC WEATHER GENERATORS GENERALIZED LINEAR MODELING APPROACH TO STOCHASTIC WEATHER GENERATORS Rick Katz Institute for Study of Society and Environment National Center for Atmospheric Research Boulder, CO USA Joint work with Eva

More information

Stochastic seasonality of rainfall in New Zealand

Stochastic seasonality of rainfall in New Zealand JOURNAL OF GEOPHYSICAL RESEARCH: ATMOSPHERES, VOL. 118, 3944 3955, doi:10.1002/jgrd.50178, 2013 Stochastic seasonality of rainfall in New Zealand John Sansom, 1 Peter Thomson, 2 and Trevor Carey-Smith

More information

Downscaling in Time. Andrew W. Robertson, IRI. Advanced Training Institute on Climate Variability and Food Security, 12 July 2002

Downscaling in Time. Andrew W. Robertson, IRI. Advanced Training Institute on Climate Variability and Food Security, 12 July 2002 Downscaling in Time Andrew W. Robertson, IRI Advanced Training Institute on Climate Variability and Food Security, 12 July 2002 Preliminaries Crop yields are driven by daily weather variations! Current

More information

Estimating the intermonth covariance between rainfall and the atmospheric circulation

Estimating the intermonth covariance between rainfall and the atmospheric circulation ANZIAM J. 52 (CTAC2010) pp.c190 C205, 2011 C190 Estimating the intermonth covariance between rainfall and the atmospheric circulation C. S. Frederiksen 1 X. Zheng 2 S. Grainger 3 (Received 27 January 2011;

More information

What Determines the Amount of Precipitation During Wet and Dry Years Over California?

What Determines the Amount of Precipitation During Wet and Dry Years Over California? NOAA Research Earth System Research Laboratory Physical Sciences Division What Determines the Amount of Precipitation During Wet and Dry Years Over California? Andy Hoell NOAA/Earth System Research Laboratory

More information

Climate predictability beyond traditional climate models

Climate predictability beyond traditional climate models Climate predictability beyond traditional climate models Rasmus E. Benestad & Abdelkader Mezghani Rasmus.benestad@met.no More heavy rain events? More heavy rain events? Heavy precipitation events with

More information

Climate Dataset: Aitik Closure Project. November 28 th & 29 th, 2018

Climate Dataset: Aitik Closure Project. November 28 th & 29 th, 2018 1 Climate Dataset: Aitik Closure Project November 28 th & 29 th, 2018 Climate Dataset: Aitik Closure Project 2 Early in the Closure Project, consensus was reached to assemble a long-term daily climate

More information

Evaluation of the transition probabilities for daily precipitation time series using a Markov chain model

Evaluation of the transition probabilities for daily precipitation time series using a Markov chain model Evaluation of the transition probabilities for daily precipitation time series using a Markov chain model Liana Cazacioc and Elena Corina Cipu Abstract The Markov models are frequently proposed to quickly

More information

PLANNED UPGRADE OF NIWA S HIGH INTENSITY RAINFALL DESIGN SYSTEM (HIRDS)

PLANNED UPGRADE OF NIWA S HIGH INTENSITY RAINFALL DESIGN SYSTEM (HIRDS) PLANNED UPGRADE OF NIWA S HIGH INTENSITY RAINFALL DESIGN SYSTEM (HIRDS) G.A. Horrell, C.P. Pearson National Institute of Water and Atmospheric Research (NIWA), Christchurch, New Zealand ABSTRACT Statistics

More information

Modeling daily precipitation in Space and Time

Modeling daily precipitation in Space and Time Space and Time SWGen - Hydro Berlin 20 September 2017 temporal - dependence Outline temporal - dependence temporal - dependence Stochastic Weather Generator Stochastic Weather Generator (SWG) is a stochastic

More information

STATISTICAL METHODS FOR RELATING TEMPERATURE EXTREMES TO LARGE-SCALE METEOROLOGICAL PATTERNS. Rick Katz

STATISTICAL METHODS FOR RELATING TEMPERATURE EXTREMES TO LARGE-SCALE METEOROLOGICAL PATTERNS. Rick Katz 1 STATISTICAL METHODS FOR RELATING TEMPERATURE EXTREMES TO LARGE-SCALE METEOROLOGICAL PATTERNS Rick Katz Institute for Mathematics Applied to Geosciences National Center for Atmospheric Research Boulder,

More information

Package ARCensReg. September 11, 2016

Package ARCensReg. September 11, 2016 Type Package Package ARCensReg September 11, 2016 Title Fitting Univariate Censored Linear Regression Model with Autoregressive Errors Version 2.1 Date 2016-09-10 Author Fernanda L. Schumacher, Victor

More information

Spatial and temporal variation of rainfall over New Zealand

Spatial and temporal variation of rainfall over New Zealand JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 113,, doi:10.1029/2007jd009335, 2008 Spatial and temporal variation of rainfall over New Zealand John Sansom 1 and Craig S. Thompson 1 Received 30 August 2007; revised

More information

Lecture 2 APPLICATION OF EXREME VALUE THEORY TO CLIMATE CHANGE. Rick Katz

Lecture 2 APPLICATION OF EXREME VALUE THEORY TO CLIMATE CHANGE. Rick Katz 1 Lecture 2 APPLICATION OF EXREME VALUE THEORY TO CLIMATE CHANGE Rick Katz Institute for Study of Society and Environment National Center for Atmospheric Research Boulder, CO USA email: rwk@ucar.edu Home

More information

Predictive spatio-temporal models for spatially sparse environmental data. Umeå University

Predictive spatio-temporal models for spatially sparse environmental data. Umeå University Seminar p.1/28 Predictive spatio-temporal models for spatially sparse environmental data Xavier de Luna and Marc G. Genton xavier.deluna@stat.umu.se and genton@stat.ncsu.edu http://www.stat.umu.se/egna/xdl/index.html

More information

Historical Trends in Florida Temperature and Precipitation

Historical Trends in Florida Temperature and Precipitation Historical Trends in Florida Temperature and Precipitation Jayantha Obeysekera (SFWMD) - Presenter Michelle M. Irizarry-Ortiz (SFWMD) Eric Gadzinski (UM) February 24, 2010 UF WI Symposium Gainesville,

More information

Time Series Analysis Model for Rainfall Data in Jordan: Case Study for Using Time Series Analysis

Time Series Analysis Model for Rainfall Data in Jordan: Case Study for Using Time Series Analysis American Journal of Environmental Sciences 5 (5): 599-604, 2009 ISSN 1553-345X 2009 Science Publications Time Series Analysis Model for Rainfall Data in Jordan: Case Study for Using Time Series Analysis

More information

Tropical Rainfall Extremes During the Warming Hiatus: A View from TRMM

Tropical Rainfall Extremes During the Warming Hiatus: A View from TRMM Tropical Rainfall Extremes During the Warming Hiatus: A View from TRMM V Venugopal (with Jai Sukhatme) Centre for Atmospheric and Oceanic Sciences & Divecha Centre for Climate Change Indian Institute of

More information

Probabilistic Analysis of Monsoon Daily Rainfall at Hisar Using Information Theory and Markovian Model Approach

Probabilistic Analysis of Monsoon Daily Rainfall at Hisar Using Information Theory and Markovian Model Approach International Journal of Current Microbiology and Applied Sciences ISSN: 2319-7706 Volume 7 Number 05 (2018) Journal homepage: http://www.ijcmas.com Original Research Article https://doi.org/10.20546/ijcmas.2018.705.436

More information

Steven L. Scott. Presented by Ahmet Engin Ural

Steven L. Scott. Presented by Ahmet Engin Ural Steven L. Scott Presented by Ahmet Engin Ural Overview of HMM Evaluating likelihoods The Likelihood Recursion The Forward-Backward Recursion Sampling HMM DG and FB samplers Autocovariance of samplers Some

More information

ENGINEERING TRIPOS PART IIB: Technical Milestone Report

ENGINEERING TRIPOS PART IIB: Technical Milestone Report ENGINEERING TRIPOS PART IIB: Technical Milestone Report Statistical enhancement of multichannel audio from transcription turntables Yinhong Liu Supervisor: Prof. Simon Godsill 1 Abstract This milestone

More information

Daily Rainfall Disaggregation Using HYETOS Model for Peninsular Malaysia

Daily Rainfall Disaggregation Using HYETOS Model for Peninsular Malaysia Daily Rainfall Disaggregation Using HYETOS Model for Peninsular Malaysia Ibrahim Suliman Hanaish, Kamarulzaman Ibrahim, Abdul Aziz Jemain Abstract In this paper, we have examined the applicability of single

More information

Estimating Design Rainfalls Using Dynamical Downscaling Data

Estimating Design Rainfalls Using Dynamical Downscaling Data Estimating Design Rainfalls Using Dynamical Downscaling Data Ke-Sheng Cheng Department of Bioenvironmental Systems Engineering Mater Program in Statistics National Taiwan University Introduction Outline

More information

STA 414/2104: Machine Learning

STA 414/2104: Machine Learning STA 414/2104: Machine Learning Russ Salakhutdinov Department of Computer Science! Department of Statistics! rsalakhu@cs.toronto.edu! http://www.cs.toronto.edu/~rsalakhu/ Lecture 9 Sequential Data So far

More information

Sharp statistical tools Statistics for extremes

Sharp statistical tools Statistics for extremes Sharp statistical tools Statistics for extremes Georg Lindgren Lund University October 18, 2012 SARMA Background Motivation We want to predict outside the range of observations Sums, averages and proportions

More information

Hierarchical Bayesian Modeling of Multisite Daily Rainfall Occurrence

Hierarchical Bayesian Modeling of Multisite Daily Rainfall Occurrence The First Henry Krumb Sustainable Engineering Symposium Hierarchical Bayesian Modeling of Multisite Daily Rainfall Occurrence Carlos Henrique Ribeiro Lima Prof. Upmanu Lall March 2009 Agenda 1) Motivation

More information

STAT 520: Forecasting and Time Series. David B. Hitchcock University of South Carolina Department of Statistics

STAT 520: Forecasting and Time Series. David B. Hitchcock University of South Carolina Department of Statistics David B. University of South Carolina Department of Statistics What are Time Series Data? Time series data are collected sequentially over time. Some common examples include: 1. Meteorological data (temperatures,

More information

A Framework for Daily Spatio-Temporal Stochastic Weather Simulation

A Framework for Daily Spatio-Temporal Stochastic Weather Simulation A Framework for Daily Spatio-Temporal Stochastic Weather Simulation, Rick Katz, Balaji Rajagopalan Geophysical Statistics Project Institute for Mathematics Applied to Geosciences National Center for Atmospheric

More information

Generalized linear modeling approach to stochastic weather generators

Generalized linear modeling approach to stochastic weather generators CLIMATE RESEARCH Vol. 34: 129 144, 2007 Published July 19 Clim Res Generalized linear modeling approach to stochastic weather generators Eva M. Furrer*, Richard W. Katz National Center for Atmospheric

More information

EVA Tutorial #2 PEAKS OVER THRESHOLD APPROACH. Rick Katz

EVA Tutorial #2 PEAKS OVER THRESHOLD APPROACH. Rick Katz 1 EVA Tutorial #2 PEAKS OVER THRESHOLD APPROACH Rick Katz Institute for Mathematics Applied to Geosciences National Center for Atmospheric Research Boulder, CO USA email: rwk@ucar.edu Home page: www.isse.ucar.edu/staff/katz/

More information

Modeling and Simulating Rainfall

Modeling and Simulating Rainfall Modeling and Simulating Rainfall Kenneth Shirley, Daniel Osgood, Andrew Robertson, Paul Block, Upmanu Lall, James Hansen, Sergey Kirshner, Vincent Moron, Michael Norton, Amor Ines, Calum Turvey, Tufa Dinku

More information

Package flexcwm. R topics documented: July 11, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.0.

Package flexcwm. R topics documented: July 11, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.0. Package flexcwm July 11, 2013 Type Package Title Flexible Cluster-Weighted Modeling Version 1.0 Date 2013-02-17 Author Incarbone G., Mazza A., Punzo A., Ingrassia S. Maintainer Angelo Mazza

More information

STA 4273H: Statistical Machine Learning

STA 4273H: Statistical Machine Learning STA 4273H: Statistical Machine Learning Russ Salakhutdinov Department of Statistics! rsalakhu@utstat.toronto.edu! http://www.utstat.utoronto.ca/~rsalakhu/ Sidney Smith Hall, Room 6002 Lecture 11 Project

More information

18. ATTRIBUTION OF EXTREME RAINFALL IN SOUTHEAST CHINA DURING MAY 2015

18. ATTRIBUTION OF EXTREME RAINFALL IN SOUTHEAST CHINA DURING MAY 2015 18. ATTRIBUTION OF EXTREME RAINFALL IN SOUTHEAST CHINA DURING MAY 2015 Claire Burke, Peter Stott, Ying Sun, and Andrew Ciavarella Anthropogenic climate change increased the probability that a short-duration,

More information

Tool 2.1.2: Modelling future heavy rainfall

Tool 2.1.2: Modelling future heavy rainfall Impacts of Climate Change on Urban Infrastructure & the Built Environment A Toolbox Tool 2.1.2: Modelling future heavy rainfall Author(s) J. Sturman 1, H. McMillan 2, S. Poyck 2, R. Ibbitt 2, R. Woods

More information

Statistical Methods in HYDROLOGY CHARLES T. HAAN. The Iowa State University Press / Ames

Statistical Methods in HYDROLOGY CHARLES T. HAAN. The Iowa State University Press / Ames Statistical Methods in HYDROLOGY CHARLES T. HAAN The Iowa State University Press / Ames Univariate BASIC Table of Contents PREFACE xiii ACKNOWLEDGEMENTS xv 1 INTRODUCTION 1 2 PROBABILITY AND PROBABILITY

More information

A re-sampling based weather generator

A re-sampling based weather generator A re-sampling based weather generator Sara Martino 1 Joint work with T. Nipen 2 and C. Lussana 2 1 Sintef Energy Resources 2 Norwegian Metereologic Institute Berlin 19th Sept. 2017 Sara Martino Joint work

More information

A weather generator for simulating multivariate climatic series

A weather generator for simulating multivariate climatic series A weather generator for simulating multivariate climatic series Denis Allard, with Nadine Brisson (AgroClim, INRA), Cédric Flecher (MetNext) and Philippe Naveau (LSCE, CNRS) Biostatistics and Spatial Processes

More information

Foralps 2nd conference. Assessment of Lombardy's climate in the last century: data analysis, methodologies and indices

Foralps 2nd conference. Assessment of Lombardy's climate in the last century: data analysis, methodologies and indices Alessia Marchetti, Angela Sulis Assessment of Lombardy's climate in the last century: data Contents The dataset The daily indices analysis Some preliminary monthly data indices analysis Some key points

More information

Package flexcwm. R topics documented: July 2, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.1.

Package flexcwm. R topics documented: July 2, Type Package. Title Flexible Cluster-Weighted Modeling. Version 1.1. Package flexcwm July 2, 2014 Type Package Title Flexible Cluster-Weighted Modeling Version 1.1 Date 2013-11-03 Author Mazza A., Punzo A., Ingrassia S. Maintainer Angelo Mazza Description

More information

Modelling Non-linear and Non-stationary Time Series

Modelling Non-linear and Non-stationary Time Series Modelling Non-linear and Non-stationary Time Series Chapter 7(extra): (Generalized) Hidden Markov Models Henrik Madsen Lecture Notes September 2016 Henrik Madsen (02427 Adv. TS Analysis) Lecture Notes

More information

Elements of Multivariate Time Series Analysis

Elements of Multivariate Time Series Analysis Gregory C. Reinsel Elements of Multivariate Time Series Analysis Second Edition With 14 Figures Springer Contents Preface to the Second Edition Preface to the First Edition vii ix 1. Vector Time Series

More information

Statistical downscaling daily rainfall statistics from seasonal forecasts using canonical correlation analysis or a hidden Markov model?

Statistical downscaling daily rainfall statistics from seasonal forecasts using canonical correlation analysis or a hidden Markov model? Statistical downscaling daily rainfall statistics from seasonal forecasts using canonical correlation analysis or a hidden Markov model? Andrew W. Robertson International Research Institute for Climate

More information

Homogenization of the Hellenic cloud amount time series

Homogenization of the Hellenic cloud amount time series Homogenization of the Hellenic cloud amount time series A Argiriou 1, A Mamara 2, E Dimadis 1 1 Laboratory of Atmospheric Physics, 2 Hellenic Meteorological Service October 19, 2017 A Argiriou 1, A Mamara

More information

RR#5 - Free Response

RR#5 - Free Response Base your answers to questions 1 through 3 on the data table below and on your knowledge of Earth Science. The table shows the area, in million square kilometers, of the Arctic Ocean covered by ice from

More information

SSW Synthetic Drought Series

SSW Synthetic Drought Series SSW Synthetic Drought Series 7 August 2017 Mott MacDonald 22 Station Road Cambridge CB1 2JD United Kingdom T +44 (0)1223 463500 F +44 (0)1223 461007 mottmac.com SSW Synthetic Drought Series 377769 02

More information

Some details about the theoretical background of CarpatClim DanubeClim gridded databases and their practical consequences

Some details about the theoretical background of CarpatClim DanubeClim gridded databases and their practical consequences Some details about the theoretical background of CarpatClim DanubeClim gridded databases and their practical consequences Zita Bihari, Tamás Szentimrey, Andrea Kircsi Hungarian Meteorological Service Outline

More information

Extremes Events in Climate Change Projections Jana Sillmann

Extremes Events in Climate Change Projections Jana Sillmann Extremes Events in Climate Change Projections Jana Sillmann Max Planck Institute for Meteorology International Max Planck Research School on Earth System Modeling Temperature distribution IPCC (2001) Outline

More information

On the Markov chain models for monsoonal rainfall occurrence in different zones of West Bengal

On the Markov chain models for monsoonal rainfall occurrence in different zones of West Bengal Indian Journal of Radio & Space Physics Vol 43, December 2014, pp 349-354 On the Markov chain models for monsoonal rainfall occurrence in different zones of West Bengal Pijush Basak Department of Mathematics,

More information

A re-sampling based weather generator

A re-sampling based weather generator A re-sampling based weather generator Sara Martino 1 Joint work with T. Nipen 2 and C. Lussana 2 1 Sintef Energy Resources 2 Norwegian Metereologic Institute Stockholm 7th Dec. 2017 Sara Martino Joint

More information

National Cheng Kung University, Taiwan. downscaling. Speaker: Pao-Shan Yu Co-authors: Dr Shien-Tsung Chen & Mr. Chin-yYuan Lin

National Cheng Kung University, Taiwan. downscaling. Speaker: Pao-Shan Yu Co-authors: Dr Shien-Tsung Chen & Mr. Chin-yYuan Lin Department of Hydraulic & Ocean Engineering, National Cheng Kung University, Taiwan Impact of stochastic weather generator characteristic on daily precipitation downscaling Speaker: Pao-Shan Yu Co-authors:

More information

Downscaling of future rainfall extreme events: a weather generator based approach

Downscaling of future rainfall extreme events: a weather generator based approach 18 th World IMACS / MODSIM Congress, Cairns, Australia 13-17 y 29 http://mssanz.org.au/modsim9 Downscaling of future rainfall extreme events: a weather generator based approach Hashmi, M.Z. 1, A.Y. Shamseldin

More information

STA 4273H: Statistical Machine Learning

STA 4273H: Statistical Machine Learning STA 4273H: Statistical Machine Learning Russ Salakhutdinov Department of Statistics! rsalakhu@utstat.toronto.edu! http://www.utstat.utoronto.ca/~rsalakhu/ Sidney Smith Hall, Room 6002 Lecture 7 Approximate

More information

Effects of interannual climate variability on tropical tree cover

Effects of interannual climate variability on tropical tree cover Effects of interannual climate variability on tropical tree cover Milena Holmgren, Marina Hirota, Egbert H. Van Nes & Marten Scheffer Correspondence to: milena.holmgren@wur.nl Contents: 1. Climate Indexes.

More information

Sugarcane Productivity in Bihar- A Forecast through ARIMA Model

Sugarcane Productivity in Bihar- A Forecast through ARIMA Model Available online at www.ijpab.com Kumar et al Int. J. Pure App. Biosci. 5 (6): 1042-1051 (2017) ISSN: 2320 7051 DOI: http://dx.doi.org/10.18782/2320-7051.5838 ISSN: 2320 7051 Int. J. Pure App. Biosci.

More information

Hydrologic Response of SWAT to Single Site and Multi- Site Daily Rainfall Generation Models

Hydrologic Response of SWAT to Single Site and Multi- Site Daily Rainfall Generation Models Hydrologic Response of SWAT to Single Site and Multi- Site Daily Rainfall Generation Models 1 Watson, B.M., 2 R. Srikanthan, 1 S. Selvalingam, and 1 M. Ghafouri 1 School of Engineering and Technology,

More information

Peter Molnar 1 and Paolo Burlando Institute of Environmental Engineering, ETH Zurich, Switzerland

Peter Molnar 1 and Paolo Burlando Institute of Environmental Engineering, ETH Zurich, Switzerland Hydrology Days 6 Seasonal and regional variability in scaling properties and correlation structure of high resolution precipitation data in a highly heterogeneous mountain environment (Switzerland) Peter

More information

Peter Cenek, Opus Research. Temperature Effects on SCRIM Skid Resistance Measurements

Peter Cenek, Opus Research. Temperature Effects on SCRIM Skid Resistance Measurements Peter Cenek, Opus Research Temperature Effects on SCRIM Skid Resistance Measurements Acknowledgements The NZ Transport Agency for supporting the research Darren Newland and Mark Stephenson of WDM Ltd for

More information

Malawi. General Climate. UNDP Climate Change Country Profiles. C. McSweeney 1, M. New 1,2 and G. Lizcano 1

Malawi. General Climate. UNDP Climate Change Country Profiles. C. McSweeney 1, M. New 1,2 and G. Lizcano 1 UNDP Climate Change Country Profiles Malawi C. McSweeney 1, M. New 1,2 and G. Lizcano 1 1. School of Geography and Environment, University of Oxford. 2. Tyndall Centre for Climate Change Research http://country-profiles.geog.ox.ac.uk

More information

Forecasting Drought in Tel River Basin using Feed-forward Recursive Neural Network

Forecasting Drought in Tel River Basin using Feed-forward Recursive Neural Network 2012 International Conference on Environmental, Biomedical and Biotechnology IPCBEE vol.41 (2012) (2012) IACSIT Press, Singapore Forecasting Drought in Tel River Basin using Feed-forward Recursive Neural

More information

Analysis of peaks over threshold within daily data for flood frequency curve assessment

Analysis of peaks over threshold within daily data for flood frequency curve assessment Analysis of peaks over threshold within daily data for flood frequency curve assessment P. CLAPS a & P. VILLANI b a DIFA Università della Basilicata Potenza (Italy) [claps@unibas.it] b DIC Università di

More information

TIME SERIES ANALYSIS AND FORECASTING USING THE STATISTICAL MODEL ARIMA

TIME SERIES ANALYSIS AND FORECASTING USING THE STATISTICAL MODEL ARIMA CHAPTER 6 TIME SERIES ANALYSIS AND FORECASTING USING THE STATISTICAL MODEL ARIMA 6.1. Introduction A time series is a sequence of observations ordered in time. A basic assumption in the time series analysis

More information

START INDEX

START INDEX CONTENTS... Preface to the English edition III... Preface to the original French edition V Summary (English, French, Russian, Spanish)... VII Tothereader... 1. Simple random character of series of observations.

More information

Markov chain modeling of precipitation time series: Modeling waiting times between tipping bucket rain gauge tips

Markov chain modeling of precipitation time series: Modeling waiting times between tipping bucket rain gauge tips Markov chain modeling of precipitation time series: Modeling waiting times between tipping bucket rain gauge tips H.J.D. Sørup 1*, H. Madsen 2 and K. Arnbjerg-Nielsen 1 1 Technical University of Denmark,

More information

Forecasting using R. Rob J Hyndman. 3.2 Dynamic regression. Forecasting using R 1

Forecasting using R. Rob J Hyndman. 3.2 Dynamic regression. Forecasting using R 1 Forecasting using R Rob J Hyndman 3.2 Dynamic regression Forecasting using R 1 Outline 1 Regression with ARIMA errors 2 Stochastic and deterministic trends 3 Periodic seasonality 4 Lab session 14 5 Dynamic

More information

Seasonal Autoregressive Integrated Moving Average Model for Precipitation Time Series

Seasonal Autoregressive Integrated Moving Average Model for Precipitation Time Series Journal of Mathematics and Statistics 8 (4): 500-505, 2012 ISSN 1549-3644 2012 doi:10.3844/jmssp.2012.500.505 Published Online 8 (4) 2012 (http://www.thescipub.com/jmss.toc) Seasonal Autoregressive Integrated

More information

Reprinted from MONTHLY WEATHER REVIEW, Vol. 109, No. 12, December 1981 American Meteorological Society Printed in I'. S. A.

Reprinted from MONTHLY WEATHER REVIEW, Vol. 109, No. 12, December 1981 American Meteorological Society Printed in I'. S. A. Reprinted from MONTHLY WEATHER REVIEW, Vol. 109, No. 12, December 1981 American Meteorological Society Printed in I'. S. A. Fitting Daily Precipitation Amounts Using the S B Distribution LLOYD W. SWIFT,

More information

Understanding Weather and Climate Risk. Matthew Perry Sharing an Uncertain World Conference The Geological Society, 13 July 2017

Understanding Weather and Climate Risk. Matthew Perry Sharing an Uncertain World Conference The Geological Society, 13 July 2017 Understanding Weather and Climate Risk Matthew Perry Sharing an Uncertain World Conference The Geological Society, 13 July 2017 What is risk in a weather and climate context? Hazard: something with the

More information

Sub-kilometer-scale space-time stochastic rainfall simulation

Sub-kilometer-scale space-time stochastic rainfall simulation Picture: Huw Alexander Ogilvie Sub-kilometer-scale space-time stochastic rainfall simulation Lionel Benoit (University of Lausanne) Gregoire Mariethoz (University of Lausanne) Denis Allard (INRA Avignon)

More information

Gridding of precipitation and air temperature observations in Belgium. Michel Journée Royal Meteorological Institute of Belgium (RMI)

Gridding of precipitation and air temperature observations in Belgium. Michel Journée Royal Meteorological Institute of Belgium (RMI) Gridding of precipitation and air temperature observations in Belgium Michel Journée Royal Meteorological Institute of Belgium (RMI) Gridding of meteorological data A variety of hydrologic, ecological,

More information

On the modelling of extreme droughts

On the modelling of extreme droughts Modelling and Management of Sustainable Basin-scale Water Resource Systems (Proceedings of a Boulder Symposium, July 1995). IAHS Publ. no. 231, 1995. 377 _ On the modelling of extreme droughts HENRIK MADSEN

More information

Package condmixt. R topics documented: February 19, Type Package

Package condmixt. R topics documented: February 19, Type Package Type Package Package condmixt February 19, 2015 Title Conditional Density Estimation with Neural Network Conditional Mixtures Version 1.0 Date 2012-04-06 Author Maintainer

More information

Downloaded from:

Downloaded from: Camacho, A; Kucharski, AJ; Funk, S; Breman, J; Piot, P; Edmunds, WJ (2014) Potential for large outbreaks of Ebola virus disease. Epidemics, 9. pp. 70-8. ISSN 1755-4365 DOI: https://doi.org/10.1016/j.epidem.2014.09.003

More information

Introduction to Regression Analysis. Dr. Devlina Chatterjee 11 th August, 2017

Introduction to Regression Analysis. Dr. Devlina Chatterjee 11 th August, 2017 Introduction to Regression Analysis Dr. Devlina Chatterjee 11 th August, 2017 What is regression analysis? Regression analysis is a statistical technique for studying linear relationships. One dependent

More information

Hierarchical models for the rainfall forecast DATA MINING APPROACH

Hierarchical models for the rainfall forecast DATA MINING APPROACH Hierarchical models for the rainfall forecast DATA MINING APPROACH Thanh-Nghi Do dtnghi@cit.ctu.edu.vn June - 2014 Introduction Problem large scale GCM small scale models Aim Statistical downscaling local

More information

Application of Real-Time Rainfall Information System to CSO control. 2 October 2011 Naruhito Funatsu METAWATER Co., Ltd.

Application of Real-Time Rainfall Information System to CSO control. 2 October 2011 Naruhito Funatsu METAWATER Co., Ltd. Application of Real-Time Rainfall Information System to CSO control 2 October 2011 Naruhito Funatsu METAWATER Co., Ltd. Presentation Points Objectives To verify the applicability of the real-time rainfall

More information

Impact of climate change on Australian flood risk: A review of recent evidence

Impact of climate change on Australian flood risk: A review of recent evidence Impact of climate change on Australian flood risk: A review of recent evidence 30/5/2018 FMA Conference, Gold Coast S Westra 1, B Bennett 1, J Evans 2, F Johnson 3, M Leonard 1, A Sharma 3, C Wasko 4,

More information

Chapter outline. Reference 12/13/2016

Chapter outline. Reference 12/13/2016 Chapter 2. observation CC EST 5103 Climate Change Science Rezaul Karim Environmental Science & Technology Jessore University of science & Technology Chapter outline Temperature in the instrumental record

More information

Generating synthetic rainfall using a disaggregation model

Generating synthetic rainfall using a disaggregation model 2th International Congress on Modelling and Simulation, Adelaide, Australia, 6 December 23 www.mssanz.org.au/modsim23 Generating synthetic rainfall using a disaggregation model Sherin Ahamed, Julia Piantadosi,

More information

Stochastic downscaling of rainfall for use in hydrologic studies

Stochastic downscaling of rainfall for use in hydrologic studies Stochastic downscaling of rainfall for use in hydrologic studies R. Mehrotra, Ashish Sharma and Ian Cordery School of Civil and Environmental Engineering, University of New South Wales, Australia Abstract:

More information

University of Cambridge. MPhil in Computer Speech Text & Internet Technology. Module: Speech Processing II. Lecture 2: Hidden Markov Models I

University of Cambridge. MPhil in Computer Speech Text & Internet Technology. Module: Speech Processing II. Lecture 2: Hidden Markov Models I University of Cambridge MPhil in Computer Speech Text & Internet Technology Module: Speech Processing II Lecture 2: Hidden Markov Models I o o o o o 1 2 3 4 T 1 b 2 () a 12 2 a 3 a 4 5 34 a 23 b () b ()

More information

Model Output Statistics (MOS)

Model Output Statistics (MOS) Model Output Statistics (MOS) Numerical Weather Prediction (NWP) models calculate the future state of the atmosphere at certain points of time (forecasts). The calculation of these forecasts is based on

More information

Stress Deciduous Phenology in the CLM

Stress Deciduous Phenology in the CLM Stress Deciduous Phenology in the CLM Kyla Dahlin & Rosie Fisher February 25, 2014 image credit: Forrest Copeland talesfromthebigcountry.wordpress.com Can we accurately model seasonal changes in vegetation

More information

sea levels 100 year/ payments. FIGURE 1

sea levels 100 year/ payments. FIGURE 1 MIAMI DADE COUNTY CLIMATE INDICATORS RAINFALL SUMMARY Much of Miami Dade County is susceptible to localized flooding, particularly during the rainy season of June through October. The County s flat terrain

More information

Using Predictive Modelling to Aid Planning in the Mineral Exploration and Mining Sector A Case Study using the Powelliphanta Land Snail

Using Predictive Modelling to Aid Planning in the Mineral Exploration and Mining Sector A Case Study using the Powelliphanta Land Snail Using Predictive Modelling to Aid Planning in the Mineral Exploration and Mining Sector A Case Study using the Powelliphanta Land Snail C. Wildman 1 and K. Peters 2 1 Kenex Limited, PO Box 41136, Eastbourne,

More information

STOCHASTIC MODELING OF MONTHLY RAINFALL AT KOTA REGION

STOCHASTIC MODELING OF MONTHLY RAINFALL AT KOTA REGION STOCHASTIC MODELIG OF MOTHLY RAIFALL AT KOTA REGIO S. R. Bhakar, Raj Vir Singh, eeraj Chhajed and Anil Kumar Bansal Department of Soil and Water Engineering, CTAE, Udaipur, Rajasthan, India E-mail: srbhakar@rediffmail.com

More information

INVESTIGATING THE CHANGES IN EXTREME RAINFALL IN SICILY

INVESTIGATING THE CHANGES IN EXTREME RAINFALL IN SICILY 4th International Workshop on Hydrological Extremes, Rende, September 15th 19th, 2011 Università degli Studi di Palermo Dipartimento di Ingegneria Civile, Ambientale e Aerospaziale INVESTIGATING THE CHANGES

More information

Markov random fields. The Markov property

Markov random fields. The Markov property Markov random fields The Markov property Discrete time: (X k X k!1,x k!2,... = (X k X k!1 A time symmetric version: (X k! X!k = (X k X k!1,x k+1 A more general version: Let A be a set of indices >k, B

More information

Maximum likelihood estimation for the seasonal Neyman-Scott rectangular pulses model for rainfall

Maximum likelihood estimation for the seasonal Neyman-Scott rectangular pulses model for rainfall Maximum likelihood estimation for the seasonal Neyman-Scott rectangular pulses model for rainfall A. MONTANARI & A. BRATH Dipartimento di Ingegneria delle Strutture, dei Trasporti, delle Acque, del Rilevamento,

More information

On the presence of tropical vortices over the Southeast Asian Sea- Maritime Continent region

On the presence of tropical vortices over the Southeast Asian Sea- Maritime Continent region Technical Conference of 50 th Annual Session of Typhoon Committee 2018 On the presence of tropical vortices over the Southeast Asian Sea- Maritime Continent region Nguyen Dang-Quang 1, James Renwick 2,

More information

Data Mining Techniques

Data Mining Techniques Data Mining Techniques CS 6220 - Section 3 - Fall 2016 Lecture 18: Time Series Jan-Willem van de Meent (credit: Aggarwal Chapter 14.3) Time Series Data http://www.capitalhubs.com/2012/08/the-correlation-between-apple-product.html

More information

TIME SERIES DATA PREDICTION OF NATURAL GAS CONSUMPTION USING ARIMA MODEL

TIME SERIES DATA PREDICTION OF NATURAL GAS CONSUMPTION USING ARIMA MODEL International Journal of Information Technology & Management Information System (IJITMIS) Volume 7, Issue 3, Sep-Dec-2016, pp. 01 07, Article ID: IJITMIS_07_03_001 Available online at http://www.iaeme.com/ijitmis/issues.asp?jtype=ijitmis&vtype=7&itype=3

More information

Rainfall Analysis in Mumbai using Gumbel s Extreme Value Distribution Model

Rainfall Analysis in Mumbai using Gumbel s Extreme Value Distribution Model Rainfall Analysis in Mumbai using Gumbel s Extreme Value Distribution Model S. Sangita Mishra 1, M. Solapure 2, R. Satpathy 3, K. Phadtare 4, S. Pawar 5 1 Assistant Professor, 2,3,4,5 Undergraduate students

More information

Statistical downscaling of precipitation through nonhomogeneous stochastic weather typing

Statistical downscaling of precipitation through nonhomogeneous stochastic weather typing Vol. : 69 8, 7 doi:./cr696 CLIMATE RESEARCH Clim Res Published September 8 Statistical downscaling of precipitation through nonhomogeneous stochastic weather typing M. Vrac,, *, M. Stein, K. Hayhoe, Center

More information

Intensity-Duration-Frequency (IDF) Curves Example

Intensity-Duration-Frequency (IDF) Curves Example Intensity-Duration-Frequency (IDF) Curves Example Intensity-Duration-Frequency (IDF) curves describe the relationship between rainfall intensity, rainfall duration, and return period (or its inverse, probability

More information

Chapter-1 Introduction

Chapter-1 Introduction Modeling of rainfall variability and drought assessment in Sabarmati basin, Gujarat, India Chapter-1 Introduction 1.1 General Many researchers had studied variability of rainfall at spatial as well as

More information