Hurricane Prediction with Python

Size: px
Start display at page:

Download "Hurricane Prediction with Python"

Transcription

1 Hurricane Prediction with Python Minwoo Lee Computer Science Department Colorado State University 1

2 Hurricane Prediction Hurricane Katrina We lost everything. Katrina didn t care if you are poor or rich; all the houses look the same now. Mississippi resident Penny Dean (People magazine) Death toll: 1836 Cost: over 200 billion dollars (Paul Solanki. Hurricane Katrina: Facts and Information. Buzzle.com) Manual hurricane prediction is cumbersome. This presentation describes the prototype solution to automate the process of hurricane prediction using Python. 2

3 Hurricane Detection Automated Surface Observing Systems NOAA Hurricane Detection Buoy Reconnaissance aircrafts Doppler Radar Image Hurricane Satellite Image 3

4 What s wrong with hurricane prediction? Large amount of data Long time to predict a hurricane Cumbersome process for human Hurricane path prediction is not accurate enough Need automatic process for early detection and prediction 4

5 Global Forecast System (GFS) Global spectral model Aviation weather forecast Forecast Wind speed and direction Temperature Humidity Precipitation Out to 192 hour Every 6 hour 5

6 6

7 Hurricane Prediction Using GFS data 7

8 Data Preprocessing Low resolution GFS Analysis 2 degrees of longitude and latitude interval 100 hpa ~ 1000 hpa Recorded every 6 hours 8 features Preprocessing Combine 4 grid cell corners at 11 heights Concatenate into a vector 8

9 Analysis of GFS Data Eye observation of data shows the clear distinction between hurricane and nonhurricane locations. 9

10 Python for Data Preprocessing and Analysis Numpy Basic data structure for matrix representation and operation Tools for reading and storing files, linear algebra, and matrix manipulation Matplotlib Plot for the eye observation of data Helpful for choosing machine learning algorithm 10

11 Support Vector Machines Popular statistical method for classification, regression, and novelty detection Searching for the hyperplane that separates the data into two classes with maximum margin 11

12 PyML for Classification Machine learning library Focuses on SVM and kernel methods Written by Dr. Asa Ben-Hur in CSU For classification training and prediction, convert Numpy array to VectorDataSet in PyML Linear kernel is enough for the GFS data 12

13 Linear Kernel for GFS data With linear kernel, the data is clearly separable 13

14 Fast Prototyping with Python PyGTK and Glade Glade-3 Rapid application development tool Basemap Support plotting data over map projections 14

15 Glade-3 15

16 User Interface Training source selection Time period for training data Sampling options and data conversion Options for classifier Train/store/load classifier Display options on the map Predict hurricane w/ trained classifier 16

17 Data Conversion, Training, Testing, and Displaying Data conversion gdtool.createmat(self.datapath, self.trackpath, key, key, store=finen, undersample=true, genkeyf=true) Predicting hurricane with test data Training SVM result = self.clssfr.test( ml.vectordataset(filen,labelscolumn=0)) data = pyml.vectordataset(filen,labelscolumn=0) self.clssfr = pyml.svm() self.clssfr.train(data) Projection of prediction results on Basemap self.map.plot(x,y,'ro', markersize=5*self.dispsize) self.map.tissot((grid[1]+grid[3])/2., (grid[0]+grid[2])/2., 17 (grid[3]-grid[1])*self.dispsize/2., 100)

18 Results: Test Data Train 4 days of preprocessed data Entire globe atmospheric data July 1st ~ July 4th, 2008 Test August 29th, 2008 Decent classification result (>90% overall accuracy) with linear kernel 0 false positive Most false negatives are neighboring locations of actual hurricanes 18

19 Prediction Results Actual hurricanes from track data Predicted hurricane locations 19

20 Conclusions Python provides efficient packages useful for hurricane prediction prototyping. Discovery of possibility of applying linear model can simplify the problem greatly. Usual complex feature extraction is not necessary. Online classification of GFS data from cloud is a feasible next step. (PyCloud?) Early detection Incremental training of classifier for accuracy Path prediction with regression model can be another path for future research. 20

21 Acknowledgements Dr. Mark DeMaria Cooperative Institute for Research in the Atmosphere (CIRA) Dr. Asa Ben-Hur Computer Science Dept. Colorado State Univ. 21

Unit 5 Lesson 3 How is Weather Predicted? Copyright Houghton Mifflin Harcourt Publishing Company

Unit 5 Lesson 3 How is Weather Predicted? Copyright Houghton Mifflin Harcourt Publishing Company Tracking the Weather Warm up 1 Why is it important to watch the weather forecast before traveling to another country? Tracking the Weather A meteorologist is a scientist who studies weather. Meteorologists

More information

11/19/14. Chapter 11: Hurricanes. The Atmosphere: An Introduction to Meteorology, 12 th. Lutgens Tarbuck

11/19/14. Chapter 11: Hurricanes. The Atmosphere: An Introduction to Meteorology, 12 th. Lutgens Tarbuck Chapter 11: Hurricanes The Atmosphere: An Introduction to Meteorology, 12 th Lutgens Tarbuck Lectures by: Heather Gallacher, Cleveland State University! Hurricanes: " Hurricanes are intense centers of

More information

Data science and engineering for local weather forecasts. Nikhil R Podduturi Data {Scientist, Engineer} November, 2016

Data science and engineering for local weather forecasts. Nikhil R Podduturi Data {Scientist, Engineer} November, 2016 1 Data science and engineering for local weather forecasts Nikhil R Podduturi Data {Scientist, Engineer} November, 2016 Agenda About MeteoGroup Introduction to weather data Problem description Data science

More information

Source localization in an ocean waveguide using supervised machine learning

Source localization in an ocean waveguide using supervised machine learning Source localization in an ocean waveguide using supervised machine learning Haiqiang Niu, Emma Reeves, and Peter Gerstoft Scripps Institution of Oceanography, UC San Diego Part I Localization on Noise09

More information

IMPACT OF GROUND-BASED GPS PRECIPITABLE WATER VAPOR AND COSMIC GPS REFRACTIVITY PROFILE ON HURRICANE DEAN FORECAST. (a) (b) (c)

IMPACT OF GROUND-BASED GPS PRECIPITABLE WATER VAPOR AND COSMIC GPS REFRACTIVITY PROFILE ON HURRICANE DEAN FORECAST. (a) (b) (c) 9B.3 IMPACT OF GROUND-BASED GPS PRECIPITABLE WATER VAPOR AND COSMIC GPS REFRACTIVITY PROFILE ON HURRICANE DEAN FORECAST Tetsuya Iwabuchi *, J. J. Braun, and T. Van Hove UCAR, Boulder, Colorado 1. INTRODUCTION

More information

Overview of the Tropical Cyclone Guidance Project

Overview of the Tropical Cyclone Guidance Project Overview of the Tropical Cyclone Guidance Project Dr. Jonathan L. Vigh With thanks to Mahsa Mirzargar (Univ. of Miami) Shanghai Typhoon Institute 09 July 2018 NCAR is sponsored by the National Science

More information

Experiments of Hurricane Initialization with Airborne Doppler Radar Data for the Advancedresearch Hurricane WRF (AHW) Model

Experiments of Hurricane Initialization with Airborne Doppler Radar Data for the Advancedresearch Hurricane WRF (AHW) Model Experiments of Hurricane Initialization with Airborne Doppler Radar Data for the Advancedresearch Hurricane WRF (AHW) Model Qingnong Xiao 1, Xiaoyan Zhang 1, Christopher Davis 1, John Tuttle 1, Greg Holland

More information

Support Vector Machine. Industrial AI Lab. Prof. Seungchul Lee

Support Vector Machine. Industrial AI Lab. Prof. Seungchul Lee Support Vector Machine Industrial AI Lab. Prof. Seungchul Lee Classification (Linear) Autonomously figure out which category (or class) an unknown item should be categorized into Number of categories /

More information

INTRODUCTION TO DATA SCIENCE

INTRODUCTION TO DATA SCIENCE INTRODUCTION TO DATA SCIENCE JOHN P DICKERSON Lecture #13 3/9/2017 CMSC320 Tuesdays & Thursdays 3:30pm 4:45pm ANNOUNCEMENTS Mini-Project #1 is due Saturday night (3/11): Seems like people are able to do

More information

Data Short description Parameters to be used for analysis SYNOP. Surface observations by ships, oil rigs and moored buoys

Data Short description Parameters to be used for analysis SYNOP. Surface observations by ships, oil rigs and moored buoys 3.2 Observational Data 3.2.1 Data used in the analysis Data Short description Parameters to be used for analysis SYNOP Surface observations at fixed stations over land P,, T, Rh SHIP BUOY TEMP PILOT Aircraft

More information

Introduction. One way to monitor the status of this energy is though monitoring sea surface

Introduction. One way to monitor the status of this energy is though monitoring sea surface Sears 1 Understanding Hurricane Intensity Using Sea Surface Height and Temperature Information John Sears (Plymouth State University) Robbie Hood (NASA-MSFC) Frank LaFontaine (Raytheon) Abstract Warmer

More information

The Impact of Observational data on Numerical Weather Prediction. Hirokatsu Onoda Numerical Prediction Division, JMA

The Impact of Observational data on Numerical Weather Prediction. Hirokatsu Onoda Numerical Prediction Division, JMA The Impact of Observational data on Numerical Weather Prediction Hirokatsu Onoda Numerical Prediction Division, JMA Outline Data Analysis system of JMA in Global Spectral Model (GSM) and Meso-Scale Model

More information

CHAPTER 13 WEATHER ANALYSIS AND FORECASTING MULTIPLE CHOICE QUESTIONS

CHAPTER 13 WEATHER ANALYSIS AND FORECASTING MULTIPLE CHOICE QUESTIONS CHAPTER 13 WEATHER ANALYSIS AND FORECASTING MULTIPLE CHOICE QUESTIONS 1. The atmosphere is a continuous fluid that envelops the globe, so that weather observation, analysis, and forecasting require international

More information

Support Vector Machine. Industrial AI Lab.

Support Vector Machine. Industrial AI Lab. Support Vector Machine Industrial AI Lab. Classification (Linear) Autonomously figure out which category (or class) an unknown item should be categorized into Number of categories / classes Binary: 2 different

More information

Ch. 11: Hurricanes. Be able to. Define what hurricane is. Identify the life and death of a hurricane. Identify the ways we track hurricanes.

Ch. 11: Hurricanes. Be able to. Define what hurricane is. Identify the life and death of a hurricane. Identify the ways we track hurricanes. Ch. 11: Hurricanes Be able to Define what hurricane is. Identify the life and death of a hurricane. Identify the ways we track hurricanes. What are Hurricanes? Smaller than mid-latitude cyclones. Don t

More information

Optimizing Model Development and Validation Procedures of Partial Least Squares for Spectral Based Prediction of Soil Properties

Optimizing Model Development and Validation Procedures of Partial Least Squares for Spectral Based Prediction of Soil Properties Optimizing Model Development and Validation Procedures of Partial Least Squares for Spectral Based Prediction of Soil Properties Soil Spectroscopy Extracting chemical and physical attributes from spectral

More information

Comparing Variational, Ensemble-based and Hybrid Data Assimilations at Regional Scales

Comparing Variational, Ensemble-based and Hybrid Data Assimilations at Regional Scales Comparing Variational, Ensemble-based and Hybrid Data Assimilations at Regional Scales Meng Zhang and Fuqing Zhang Penn State University Xiang-Yu Huang and Xin Zhang NCAR 4 th EnDA Workshop, Albany, NY

More information

DART Ini)al Condi)ons for a Refined Grid CAM- SE Forecast of Hurricane Katrina. Kevin Raeder (IMAGe) Colin Zarzycki (ASP)

DART Ini)al Condi)ons for a Refined Grid CAM- SE Forecast of Hurricane Katrina. Kevin Raeder (IMAGe) Colin Zarzycki (ASP) DART Ini)al Condi)ons for a Refined Grid CAM- SE Forecast of Hurricane Katrina Kevin Raeder (IMAGe) Colin Zarzycki (ASP) 1 Mo)va)on Thousands of processors on current supercomputers. - > new CAM dynamical

More information

2) What general circulation wind belt is the place of origin for hurricanes? A) westerlies B) trade winds C) doldrums D) horse latitudes

2) What general circulation wind belt is the place of origin for hurricanes? A) westerlies B) trade winds C) doldrums D) horse latitudes Meteo 1010 Homework 6 1) What is the difference between a typhoon and a hurricane? A) A hurricane is a true tropical cyclone, but a typhoon is not. B) A hurricane is stronger than a typhoon. C) They represent

More information

P4.1 CONSENSUS ESTIMATES OF TROPICAL CYCLONE INTENSITY USING MULTISPECTRAL (IR AND MW) SATELLITE OBSERVATIONS

P4.1 CONSENSUS ESTIMATES OF TROPICAL CYCLONE INTENSITY USING MULTISPECTRAL (IR AND MW) SATELLITE OBSERVATIONS P4.1 CONSENSUS ESTIMATES OF TROPICAL CYCLONE INTENSITY USING MULTISPECTRAL (IR AND MW) SATELLITE OBSERVATIONS Christopher Velden* Derrick C. Herndon and James Kossin University of Wisconsin Cooperative

More information

18.9 SUPPORT VECTOR MACHINES

18.9 SUPPORT VECTOR MACHINES 744 Chapter 8. Learning from Examples is the fact that each regression problem will be easier to solve, because it involves only the examples with nonzero weight the examples whose kernels overlap the

More information

Navigating the Hurricane Highway Understanding Hurricanes With Google Earth

Navigating the Hurricane Highway Understanding Hurricanes With Google Earth Navigating the Hurricane Highway Understanding Hurricanes With Google Earth 2008 Amato Evan, Kelda Hutson, Steve Kluge, Lindsey Kropuenke, Margaret Mooney, and Joe Turk Images and data courtesy hurricanetracking.com,

More information

Reduced Order Greenhouse Gas Flaring Estimation

Reduced Order Greenhouse Gas Flaring Estimation Reduced Order Greenhouse Gas Flaring Estimation Sharad Bharadwaj, Sumit Mitra Energy Resources Engineering Stanford University Abstract Global gas flaring is difficult to sense, a tremendous source of

More information

COLORADO STATE UNIVERSITY FORECAST OF ATLANTIC HURRICANE ACTIVITY FROM OCTOBER 13 OCTOBER 26, 2017

COLORADO STATE UNIVERSITY FORECAST OF ATLANTIC HURRICANE ACTIVITY FROM OCTOBER 13 OCTOBER 26, 2017 COLORADO STATE UNIVERSITY FORECAST OF ATLANTIC HURRICANE ACTIVITY FROM OCTOBER 13 OCTOBER 26, 2017 We expect that the next two weeks will be characterized by above-normal hurricane activity. (as of 13

More information

J8.4 NOWCASTING OCEANIC CONVECTION FOR AVIATION USING RANDOM FOREST CLASSIFICATION

J8.4 NOWCASTING OCEANIC CONVECTION FOR AVIATION USING RANDOM FOREST CLASSIFICATION J8.4 NOWCASTING OCEANIC CONVECTION FOR AVIATION USING RANDOM FOREST CLASSIFICATION Huaqing Cai*, Cathy Kessinger, David Ahijevych, John Williams, Nancy Rehak, Daniel Megenhardt and Matthias Steiner National

More information

The Use of GPS Radio Occultation Data for Tropical Cyclone Prediction. Bill Kuo and Hui Liu UCAR

The Use of GPS Radio Occultation Data for Tropical Cyclone Prediction. Bill Kuo and Hui Liu UCAR The Use of GPS Radio Occultation Data for Tropical Cyclone Prediction Bill Kuo and Hui Liu UCAR Current capability of the National Hurricane Center Good track forecast improvements. Errors cut in half

More information

Application of the Integrated Aerobiology Modeling System to Soybean Rust Forecasting in 2006

Application of the Integrated Aerobiology Modeling System to Soybean Rust Forecasting in 2006 Application of the Integrated Aerobiology Modeling System to Soybean Rust Forecasting in 2006 Scott A. Isard Penn State University & Joseph M. Russo ZedX Inc. Integrated Aerobiology Modeling System (IAMS)

More information

Keywords: tropical cyclone eye fix; remote sensing data; Genetic algorithm.

Keywords: tropical cyclone eye fix; remote sensing data; Genetic algorithm. Volume 4, Issue 5, May 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Optimum Analysis

More information

Jeff Howbert Introduction to Machine Learning Winter

Jeff Howbert Introduction to Machine Learning Winter Classification / Regression Support Vector Machines Jeff Howbert Introduction to Machine Learning Winter 2012 1 Topics SVM classifiers for linearly separable classes SVM classifiers for non-linearly separable

More information

Recent Trends in Northern and Southern Hemispheric Cold and Warm Pockets

Recent Trends in Northern and Southern Hemispheric Cold and Warm Pockets Recent Trends in Northern and Southern Hemispheric Cold and Warm Pockets Abstract: Richard Grumm National Weather Service Office, State College, Pennsylvania and Anne Balogh The Pennsylvania State University

More information

ABSTRACT 3 RADIAL VELOCITY ASSIMILATION IN BJRUC 3.1 ASSIMILATION STRATEGY OF RADIAL

ABSTRACT 3 RADIAL VELOCITY ASSIMILATION IN BJRUC 3.1 ASSIMILATION STRATEGY OF RADIAL REAL-TIME RADAR RADIAL VELOCITY ASSIMILATION EXPERIMENTS IN A PRE-OPERATIONAL FRAMEWORK IN NORTH CHINA Min Chen 1 Ming-xuan Chen 1 Shui-yong Fan 1 Hong-li Wang 2 Jenny Sun 2 1 Institute of Urban Meteorology,

More information

Cloud-based WRF Downscaling Simulations at Scale using Community Reanalysis and Climate Datasets

Cloud-based WRF Downscaling Simulations at Scale using Community Reanalysis and Climate Datasets Cloud-based WRF Downscaling Simulations at Scale using Community Reanalysis and Climate Datasets Luke Madaus -- 26 June 2018 luke.madaus@jupiterintel.com 2018 Unidata Users Workshop Outline What is Jupiter?

More information

DETECTING HUMAN ACTIVITIES IN THE ARCTIC OCEAN BY CONSTRUCTING AND ANALYZING SUPER-RESOLUTION IMAGES FROM MODIS DATA INTRODUCTION

DETECTING HUMAN ACTIVITIES IN THE ARCTIC OCEAN BY CONSTRUCTING AND ANALYZING SUPER-RESOLUTION IMAGES FROM MODIS DATA INTRODUCTION DETECTING HUMAN ACTIVITIES IN THE ARCTIC OCEAN BY CONSTRUCTING AND ANALYZING SUPER-RESOLUTION IMAGES FROM MODIS DATA Shizhi Chen and YingLi Tian Department of Electrical Engineering The City College of

More information

Evaluation of Support Vector Machines and Minimax Probability. Machines for Weather Prediction. Stephen Sullivan

Evaluation of Support Vector Machines and Minimax Probability. Machines for Weather Prediction. Stephen Sullivan Generated using version 3.0 of the official AMS L A TEX template Evaluation of Support Vector Machines and Minimax Probability Machines for Weather Prediction Stephen Sullivan UCAR - University Corporation

More information

What is 511? Need for 511 Services. Development & Deployment of Regional Road and Weather Information Supporting 511 Traveler Services

What is 511? Need for 511 Services. Development & Deployment of Regional Road and Weather Information Supporting 511 Traveler Services Development & Deployment of Regional Road and Weather Information Supporting 511 Traveler Services Leon F. Osborne University of North Dakota Regional Weather Information Center Grand Forks, ND David L.

More information

Numerical Weather Prediction: Data assimilation. Steven Cavallo

Numerical Weather Prediction: Data assimilation. Steven Cavallo Numerical Weather Prediction: Data assimilation Steven Cavallo Data assimilation (DA) is the process estimating the true state of a system given observations of the system and a background estimate. Observations

More information

Tuesday, September 13, 16

Tuesday, September 13, 16 Weather Weather State Objectives 4.c, 4.d, 4.h. Discussion What are some ways in which weather affects your everyday life? Discussion What are some ways in which weather affects your everyday life? What

More information

Machine Learning for Targeted Assimilation of Satellite Data

Machine Learning for Targeted Assimilation of Satellite Data Machine Learning for Targeted Assimilation of Satellite Data Yu-Ju Lee 1,2, David Hall 1, Jebb Stewart 3, and Mark Govett 4 1 Department of Computer Science, University of Colorado Boulder, CO 80309-0430,

More information

Twitter s Effectiveness on Blackout Detection during Hurricane Sandy

Twitter s Effectiveness on Blackout Detection during Hurricane Sandy Twitter s Effectiveness on Blackout Detection during Hurricane Sandy KJ Lee, Ju-young Shin & Reza Zadeh December, 03. Introduction Hurricane Sandy developed from the Caribbean stroke near Atlantic City,

More information

Possible Applications of Deep Neural Networks in Climate and Weather. David M. Hall Assistant Research Professor Dept. Computer Science, CU Boulder

Possible Applications of Deep Neural Networks in Climate and Weather. David M. Hall Assistant Research Professor Dept. Computer Science, CU Boulder Possible Applications of Deep Neural Networks in Climate and Weather David M. Hall Assistant Research Professor Dept. Computer Science, CU Boulder Quick overview of climate and weather models Weather models

More information

Linear smoother. ŷ = S y. where s ij = s ij (x) e.g. s ij = diag(l i (x))

Linear smoother. ŷ = S y. where s ij = s ij (x) e.g. s ij = diag(l i (x)) Linear smoother ŷ = S y where s ij = s ij (x) e.g. s ij = diag(l i (x)) 2 Online Learning: LMS and Perceptrons Partially adapted from slides by Ryan Gabbard and Mitch Marcus (and lots original slides by

More information

P3.1 Development of MOS Thunderstorm and Severe Thunderstorm Forecast Equations with Multiple Data Sources

P3.1 Development of MOS Thunderstorm and Severe Thunderstorm Forecast Equations with Multiple Data Sources P3.1 Development of MOS Thunderstorm and Severe Thunderstorm Forecast Equations with Multiple Data Sources Kathryn K. Hughes * Meteorological Development Laboratory Office of Science and Technology National

More information

University of Miami/RSMAS

University of Miami/RSMAS Observing System Simulation Experiments to Evaluate the Potential Impact of Proposed Observing Systems on Hurricane Prediction: R. Atlas, T. Vukicevic, L.Bucci, B. Annane, A. Aksoy, NOAA Atlantic Oceanographic

More information

Machine Learning Basics

Machine Learning Basics Security and Fairness of Deep Learning Machine Learning Basics Anupam Datta CMU Spring 2019 Image Classification Image Classification Image classification pipeline Input: A training set of N images, each

More information

Swedish Meteorological and Hydrological Institute

Swedish Meteorological and Hydrological Institute Swedish Meteorological and Hydrological Institute Norrköping, Sweden 1. Summary of highlights HIRLAM at SMHI is run on a CRAY T3E with 272 PEs at the National Supercomputer Centre (NSC) organised together

More information

Active Learning with Support Vector Machines for Tornado Prediction

Active Learning with Support Vector Machines for Tornado Prediction International Conference on Computational Science (ICCS) 2007 Beijing, China May 27-30, 2007 Active Learning with Support Vector Machines for Tornado Prediction Theodore B. Trafalis 1, Indra Adrianto 1,

More information

Forecasting and data assimilation

Forecasting and data assimilation Supported by the National Science Foundation DMS Forecasting and data assimilation Outline Numerical models Kalman Filter Ensembles Douglas Nychka, Thomas Bengtsson, Chris Snyder Geophysical Statistics

More information

Hurricane Initialization Using Airborne Doppler Radar Data for WRF

Hurricane Initialization Using Airborne Doppler Radar Data for WRF Hurricane Initialization Using Airborne Doppler Radar Data for WRF Qingnong Xiao* 1, Xiaoyan Zhang 1, Christopher Davis 1, John Tuttle 1, Greg Holland 1, Pat Fitzpatrick 2 1. Mesoscale and Microscale Meteorology

More information

Weather Forecasting: Lecture 2

Weather Forecasting: Lecture 2 Weather Forecasting: Lecture 2 Dr. Jeremy A. Gibbs Department of Atmospheric Sciences University of Utah Spring 2017 1 / 40 Overview 1 Forecasting Techniques 2 Forecast Tools 2 / 40 Forecasting Techniques

More information

Synthetic Weather Radar: Offshore Precipitation Capability

Synthetic Weather Radar: Offshore Precipitation Capability Synthetic Weather Radar: Offshore Precipitation Capability Mark S. Veillette 5 December 2017 Sponsors: Randy Bass, FAA ANG-C6 and Rogan Flowers, FAA AJM-33 DISTRIBUTION STATEMENT A: Approved for public

More information

FORCES OF NATURE: WEATHER!! TORNADOES. Self-Paced Study

FORCES OF NATURE: WEATHER!! TORNADOES. Self-Paced Study FORCES OF NATURE: WEATHER!! Self-Paced Study The video clips referenced in this packet can be viewed during class by accessing the T: drive. Go to the folder (Brighton, A. OR Cipriano, H) and click on

More information

Weather and Climate 301K - I

Weather and Climate 301K - I Weather and Climate 301K - I January 18, 2011 Introduction to weather and Climate (Text Chapter 1) -everything is from the lecture -utpd.com Weather affects us all Affects the world economy WEATHER MATTERS!!

More information

Internet Engineering Jacek Mazurkiewicz, PhD

Internet Engineering Jacek Mazurkiewicz, PhD Internet Engineering Jacek Mazurkiewicz, PhD Softcomputing Part 11: SoftComputing Used for Big Data Problems Agenda Climate Changes Prediction System Based on Weather Big Data Visualisation Natural Language

More information

Preliminary Results from the ATHENA-OAWL Venture Tech Airborne Mission

Preliminary Results from the ATHENA-OAWL Venture Tech Airborne Mission Preliminary Results from the ATHENA-OAWL Venture Tech Airborne Mission Sunil Baidar (a, b), Sara Tucker (c), Mike Hardesty (a, b) (a) Cooperative Institute for Research in Environmental Sciences, University

More information

Remote Sensing Observations AOSC 200 Tim Canty

Remote Sensing Observations AOSC 200 Tim Canty Remote Sensing Observations AOSC 200 Tim Canty Class Web Site: http://www.atmos.umd.edu/~tcanty/aosc200 Topics for today: Maps Radar Satellite Observations Lecture 04 Feb 7 2019 1 Today s Weather Map http://www.wpc.ncep.noaa.gov/sfc/namussfcwbg.gif

More information

Doppler Weather Radars and Weather Decision Support for DP Vessels

Doppler Weather Radars and Weather Decision Support for DP Vessels Author s Name Name of the Paper Session DYNAMIC POSITIONING CONFERENCE October 14-15, 2014 RISK SESSION Doppler Weather Radars and By Michael D. Eilts and Mike Arellano Weather Decision Technologies, Inc.

More information

USE OF SURFACE MESONET DATA IN THE NCEP REGIONAL GSI SYSTEM

USE OF SURFACE MESONET DATA IN THE NCEP REGIONAL GSI SYSTEM 6A.7 USE OF SURFACE MESONET DATA IN THE NCEP REGIONAL GSI SYSTEM Seung-Jae Lee *, David F. Parrish, Wan-Shu Wu, Manuel Pondeca, Dennis Keyser, and Geoffery J. DiMego NCEP/Environmental Meteorological Center,

More information

9A.2 Tropical Cyclone Satellite Tutorial Online Through The COMET Program

9A.2 Tropical Cyclone Satellite Tutorial Online Through The COMET Program 9A.2 Tropical Cyclone Satellite Tutorial Online Through The COMET Program Thomas F. Lee Steven D. Miller F. Joseph Turk Jeffrey D. Hawkins Naval Research Laboratory, Monterey CA Patrick Dills Sherwood

More information

Intelligence and statistics for rapid and robust earthquake detection, association and location

Intelligence and statistics for rapid and robust earthquake detection, association and location Intelligence and statistics for rapid and robust earthquake detection, association and location Anthony Lomax ALomax Scientific, Mouans-Sartoux, France anthony@alomax.net www.alomax.net @ALomaxNet Alberto

More information

1. What type of wind is needed for a hurricane to form? Low to medium winds, blowing in the same direction (weak wind shear).

1. What type of wind is needed for a hurricane to form? Low to medium winds, blowing in the same direction (weak wind shear). Explain 1. What type of wind is needed for a hurricane to form? Low to medium winds, blowing in the same direction (weak wind shear). 2. What is wind shear? Any change in wind speed or direction. When

More information

Advanced Weather Technology

Advanced Weather Technology Advanced Weather Technology Tuesday, October 16, 2018, 1:00 PM 2:00 PM PRESENTED BY: Gary Pokodner, FAA WTIC Program Manager Agenda Overview Augmented reality mobile application Crowd Sourcing Visibility

More information

Support Vector Machines

Support Vector Machines Support Vector Machines Here we approach the two-class classification problem in a direct way: We try and find a plane that separates the classes in feature space. If we cannot, we get creative in two

More information

Module 11: Meteorology Topic 5 Content: Weather Maps Notes

Module 11: Meteorology Topic 5 Content: Weather Maps Notes Introduction A variety of weather maps are produced by the National Weather Service and National Oceanographic Atmospheric Administration. These maps are used to help meteorologists accurately predict

More information

Pattern Recognition 2018 Support Vector Machines

Pattern Recognition 2018 Support Vector Machines Pattern Recognition 2018 Support Vector Machines Ad Feelders Universiteit Utrecht Ad Feelders ( Universiteit Utrecht ) Pattern Recognition 1 / 48 Support Vector Machines Ad Feelders ( Universiteit Utrecht

More information

SPATIAL-TEMPORAL TECHNIQUES FOR PREDICTION AND COMPRESSION OF SOIL FERTILITY DATA

SPATIAL-TEMPORAL TECHNIQUES FOR PREDICTION AND COMPRESSION OF SOIL FERTILITY DATA SPATIAL-TEMPORAL TECHNIQUES FOR PREDICTION AND COMPRESSION OF SOIL FERTILITY DATA D. Pokrajac Center for Information Science and Technology Temple University Philadelphia, Pennsylvania A. Lazarevic Computer

More information

GSI DATA ASSIMILATION SYSTEM: COMMUNITY SUPPORT AND PRELIMINARY TESTING RESULTS

GSI DATA ASSIMILATION SYSTEM: COMMUNITY SUPPORT AND PRELIMINARY TESTING RESULTS 6A.2 GSI DATA ASSIMILATION SYSTEM: COMMUNITY SUPPORT AND PRELIMINARY TESTING RESULTS Hui Shao *, Ming Hu, Kyungjeen Park, Kathryn Crosby Hans Huang, Louisa Nance, Bill Kuo NCAR, Boulder, CO and John Derber,

More information

Holdout and Cross-Validation Methods Overfitting Avoidance

Holdout and Cross-Validation Methods Overfitting Avoidance Holdout and Cross-Validation Methods Overfitting Avoidance Decision Trees Reduce error pruning Cost-complexity pruning Neural Networks Early stopping Adjusting Regularizers via Cross-Validation Nearest

More information

P1.6 Simulation of the impact of new aircraft and satellite-based ocean surface wind measurements on H*Wind analyses

P1.6 Simulation of the impact of new aircraft and satellite-based ocean surface wind measurements on H*Wind analyses P1.6 Simulation of the impact of new aircraft and satellite-based ocean surface wind measurements on H*Wind analyses Timothy L. Miller 1, R. Atlas 2, P. G. Black 3, J. L. Case 4, S. S. Chen 5, R. E. Hood

More information

Analyzing the Earth Using Remote Sensing

Analyzing the Earth Using Remote Sensing Analyzing the Earth Using Remote Sensing Instructors: Dr. Brian Vant- Hull: Steinman 185, 212-650- 8514 brianvh@ce.ccny.cuny.edu Ms. Hannah Aizenman: NAC 7/311, 212-650- 6295 haizenman@ccny.cuny.edu Dr.

More information

Support Vector Machine. Natural Language Processing Lab lizhonghua

Support Vector Machine. Natural Language Processing Lab lizhonghua Support Vector Machine Natural Language Processing Lab lizhonghua Support Vector Machine Introduction Theory SVM primal and dual problem Parameter selection and practical issues Compare to other classifier

More information

Thesis AUTOMATED TROPICAL CYCLONE EYE DETECTION USING DISCRIMINANT ANALYSIS. Submitted by. Robert DeMaria. Department of Computer Science

Thesis AUTOMATED TROPICAL CYCLONE EYE DETECTION USING DISCRIMINANT ANALYSIS. Submitted by. Robert DeMaria. Department of Computer Science Thesis AUTOMATED TROPICAL CYCLONE EYE DETECTION USING DISCRIMINANT ANALYSIS Submitted by Robert DeMaria Department of Computer Science In partial fulfillment of the requirements For the Degree of Master

More information

HIRES 2017 Syllabus. Instructors:

HIRES 2017 Syllabus. Instructors: HIRES 2017 Syllabus Instructors: Dr. Brian Vant-Hull: Steinman 185, 212-650-8514, brianvh@ce.ccny.cuny.edu Ms. Hannah Aizenman: NAC 7/311, 212-650-6295, haizenman@ccny.cuny.edu Dr. Tarendra Lakhankar:

More information

Double (Concentric) Eyewalls in Hurricane Katrina at Landfall:

Double (Concentric) Eyewalls in Hurricane Katrina at Landfall: Double (Concentric) Eyewalls in Hurricane Katrina at Landfall: A Key to the Storm s Huge Size and Devastating Impact over a Three-State Coastal Region Keith Blackwell Coastal Weather Research Center University

More information

The role of testbeds in NOAA for transitioning NWP research to operations

The role of testbeds in NOAA for transitioning NWP research to operations ECMWF Workshop on Operational Systems November 18, 2013 The role of testbeds in NOAA for transitioning NWP research to operations Ligia Bernardet 1* and Zoltan Toth 1 1 NOAA ESRL Global Systems Division,

More information

Risk Analysis for Assessment of Vegetation Impact on Outages in Electric Power Systems. T. DOKIC, P.-C. CHEN, M. KEZUNOVIC Texas A&M University USA

Risk Analysis for Assessment of Vegetation Impact on Outages in Electric Power Systems. T. DOKIC, P.-C. CHEN, M. KEZUNOVIC Texas A&M University USA 21, rue d Artois, F-75008 PARIS CIGRE US National Committee http : //www.cigre.org 2016 Grid of the Future Symposium Risk Analysis for Assessment of Vegetation Impact on Outages in Electric Power Systems

More information

ECE521 W17 Tutorial 1. Renjie Liao & Min Bai

ECE521 W17 Tutorial 1. Renjie Liao & Min Bai ECE521 W17 Tutorial 1 Renjie Liao & Min Bai Schedule Linear Algebra Review Matrices, vectors Basic operations Introduction to TensorFlow NumPy Computational Graphs Basic Examples Linear Algebra Review

More information

Applications/Users for Improved S2S Forecasts

Applications/Users for Improved S2S Forecasts Applications/Users for Improved S2S Forecasts Nolan Doesken Colorado Climate Center Colorado State University WSWC Precipitation Forecasting Workshop June 7-9, 2016 San Diego, CA First -- A short background

More information

ASSIMILATION OF METAR CLOUD AND VISIBILITY OBSERVATIONS IN THE RUC

ASSIMILATION OF METAR CLOUD AND VISIBILITY OBSERVATIONS IN THE RUC 9.13 ASSIMILATION OF METAR CLOUD AND VISIBILITY OBSERVATIONS IN THE RUC Stanley G. Benjamin, Stephen S. Weygandt, John M. Brown, Tracy Lorraine Smith 1, Tanya Smirnova 2, William R. Moninger, Barry Schwartz,

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

May 17, earthsciencechapter24.notebook. Apr 8 10:54 AM Review. Grade:9th. Subject:Earth Science. Date:4/8.

May 17, earthsciencechapter24.notebook. Apr 8 10:54 AM Review. Grade:9th. Subject:Earth Science. Date:4/8. Apr 8 10:54 AM 24.1 Review Grade:9th Subject:Earth Science Date:4/8 Apr 8 9:29 AM 1 1 As lower layers of air are warmed... A the air rises B winds form C the air dries D the air sinks Apr 8 9:49 AM 2 What

More information

Mining Classification Knowledge

Mining Classification Knowledge Mining Classification Knowledge Remarks on NonSymbolic Methods JERZY STEFANOWSKI Institute of Computing Sciences, Poznań University of Technology COST Doctoral School, Troina 2008 Outline 1. Bayesian classification

More information

Deploying the Winter Maintenance Support System (MDSS) in Iowa

Deploying the Winter Maintenance Support System (MDSS) in Iowa Deploying the Winter Maintenance Support System (MDSS) in Iowa Dennis A. Kroeger Center for Transportation Research and Education Iowa State University Ames, IA 50010-8632 kroeger@iastate.edu Dennis Burkheimer

More information

Computer Models of the Earth s Climate

Computer Models of the Earth s Climate Computer Models of the Earth s Climate DARGAN M. W. FRIERSON DEPARTMENT OF ATMOSPHERIC SCIENCES MATH DAY, 3-25-13 Climate Models Climate Models Climate Models Mathematical model: uses equations to describe

More information

Finnish Open Data Portal for Meteorological Data

Finnish Open Data Portal for Meteorological Data 18.11.2013 1 Finnish Open Data Portal for Meteorological Data 14th Workshop on meteorological operational systems Roope Tervo Finnish Meteorological Institute Example of Data Sets -- Observations Data

More information

Role of Assembling Invariant Moments and SVM in Fingerprint Recognition

Role of Assembling Invariant Moments and SVM in Fingerprint Recognition 56 Role of Assembling Invariant Moments SVM in Fingerprint Recognition 1 Supriya Wable, 2 Chaitali Laulkar 1, 2 Department of Computer Engineering, University of Pune Sinhgad College of Engineering, Pune-411

More information

Dual-Regression Surface and Atmospheric Sounding Algorithm for Initializing Physical Retrievals and Direct Radiance Assimilation

Dual-Regression Surface and Atmospheric Sounding Algorithm for Initializing Physical Retrievals and Direct Radiance Assimilation SPACE SCIENCE AND ENGINEERING CENTER Dual-Regression Surface and Atmospheric Sounding Algorithm for Initializing Physical Retrievals and Direct Radiance Assimilation W. L. Smith Sr. 1,2,3, E. Weisz 1,

More information

Tropical Cyclone and Active Low Pressure Tracker. Maytee Mahayosananta Thai Meteorological Department (TMD) 2017 APEC Typhoon Symposium (APTS)

Tropical Cyclone and Active Low Pressure Tracker. Maytee Mahayosananta Thai Meteorological Department (TMD) 2017 APEC Typhoon Symposium (APTS) Tropical Cyclone and Active Low Pressure Tracker Maytee Mahayosananta Thai Meteorological Department (TMD) 2017 APEC Typhoon Symposium (APTS) Tropical Cyclone and Active Low Pressure Tracker - The tropical

More information

Road Surface Condition Analysis from Web Camera Images and Weather data. Torgeir Vaa (SVV), Terje Moen (SINTEF), Junyong You (CMR), Jeremy Cook (CMR)

Road Surface Condition Analysis from Web Camera Images and Weather data. Torgeir Vaa (SVV), Terje Moen (SINTEF), Junyong You (CMR), Jeremy Cook (CMR) Road Surface Condition Analysis from Web Camera Images and Weather data Torgeir Vaa (SVV), Terje Moen (SINTEF), Junyong You (CMR), Jeremy Cook (CMR) Motivation Cameras installed along roads for surface

More information

Support Vector Machines. Introduction to Data Mining, 2 nd Edition by Tan, Steinbach, Karpatne, Kumar

Support Vector Machines. Introduction to Data Mining, 2 nd Edition by Tan, Steinbach, Karpatne, Kumar Data Mining Support Vector Machines Introduction to Data Mining, 2 nd Edition by Tan, Steinbach, Karpatne, Kumar 02/03/2018 Introduction to Data Mining 1 Support Vector Machines Find a linear hyperplane

More information

Hurricane Katrina Tracking Lab

Hurricane Katrina Tracking Lab Hurricane Katrina Tracking Lab Introduction: The 2005 hurricane season was the most active season on record resulting in 28 named storms. Hurricane Katrina was the eleventh named storm and would end up

More information

Support vector machines Lecture 4

Support vector machines Lecture 4 Support vector machines Lecture 4 David Sontag New York University Slides adapted from Luke Zettlemoyer, Vibhav Gogate, and Carlos Guestrin Q: What does the Perceptron mistake bound tell us? Theorem: The

More information

Satellite project, AST 1100

Satellite project, AST 1100 Satellite project, AST 1100 Part 4: Skynet The goal in this part is to develop software that the satellite can use to orient itself in the star system. That is, that it can find its own position, velocity

More information

Marshall Alexander Forecaster Commonwealth of Dominica

Marshall Alexander Forecaster Commonwealth of Dominica Marshall Alexander Forecaster Commonwealth of Dominica Dominica 2015 Impacts Tropical Storm Danny (August 24 th ) Tropical Storm Erika (August 27 th ) Tropical Storm Grace (Remnants) (September 10 th -11

More information

Support Vector Machines

Support Vector Machines Wien, June, 2010 Paul Hofmarcher, Stefan Theussl, WU Wien Hofmarcher/Theussl SVM 1/21 Linear Separable Separating Hyperplanes Non-Linear Separable Soft-Margin Hyperplanes Hofmarcher/Theussl SVM 2/21 (SVM)

More information

Homework Assignment IV. Weather Exercises

Homework Assignment IV. Weather Exercises Page 1 of 5 EENS 3050/6050 Tulane University Natural Disasters Prof. Stephen A. Nelson Homework Assignment IV. Weather Exercises This document last updated on 16-Nov-2016 1. Go to the following link to

More information

Neural Networks Teaser

Neural Networks Teaser 1/11 Neural Networks Teaser February 27, 2017 Deep Learning in the News 2/11 Go falls to computers. Learning 3/11 How to teach a robot to be able to recognize images as either a cat or a non-cat? This

More information

The impact of assimilation of microwave radiance in HWRF on the forecast over the western Pacific Ocean

The impact of assimilation of microwave radiance in HWRF on the forecast over the western Pacific Ocean The impact of assimilation of microwave radiance in HWRF on the forecast over the western Pacific Ocean Chun-Chieh Chao, 1 Chien-Ben Chou 2 and Huei-Ping Huang 3 1Meteorological Informatics Business Division,

More information

WeatherHawk Weather Station Protocol

WeatherHawk Weather Station Protocol WeatherHawk Weather Station Protocol Purpose To log atmosphere data using a WeatherHawk TM weather station Overview A weather station is setup to measure and record atmospheric measurements at 15 minute

More information

Incorporating detractors into SVM classification

Incorporating detractors into SVM classification Incorporating detractors into SVM classification AGH University of Science and Technology 1 2 3 4 5 (SVM) SVM - are a set of supervised learning methods used for classification and regression SVM maximal

More information

Short-term sea ice forecasts with the RASM-ESRL coupled model

Short-term sea ice forecasts with the RASM-ESRL coupled model Short-term sea ice forecasts with the RASM-ESRL coupled model A testbed for improving simulations of ocean-iceatmosphere interactions in the marginal ice zone Amy Solomon 12, Janet Intrieri 2, Mimi Hughes

More information