Analysis of United States Rainfall

Size: px
Start display at page:

Download "Analysis of United States Rainfall"

Transcription

1 Analysis of United States Rainfall Trevyn Currie, Stephen Blatt Abstract Using hourly rainfall data in the United States, we used SQL to construct a data mart that allows for querying data based on location and time period. For the sake of not being too overwhelmed with data, we limited our data to the states of California, Oregon, Washington and Nevada. We then used clustering methods to determine which locations had similar patterns in monthly rainfall. Lastly, we graphed various clusters by longitude and latitude using different symbols for different clusters to visually identify areas of similar patterns of rainfall. Keywords - historical rainfall; extraction using SQL; rainfall tendencies; K-mean 2 Introduction Understanding weather is one of the most ancient problems our species has struggled to understand. Since the beginning of agricultural societies we have sought to understand when it will rain and when there will be a drought. We have tried to understand the reasons and patterns behind weather. Knowing when it would rain was vital to being able to feed our populations. Being able to predict storms allowed people to know when it was safe to travel. These ancient questions have been asked for a long time and still much is left unanswered. While we may not have fully answered these ancient questions, hopefully our works will allow a greater understanding of where and how much it rains, and what patterns can be recognized. We knew it was very important to find an easy way to extract rainfall from previously gathered data. We used a small segment of United States Hourly rainfall data in order to construct a database and search for patterns. 3 US Hourly Rainfall data Our data set comes from the hourly rainfall data from the National Oceanic and Atmospheric Administration (NOAA). The NOAA includes the National Centers for Environmental Information (NCEI). The NCEI is responsible for hosting and providing access to one of the most significant archives on Earth, with comprehensive oceanic, atmospheric, and geophysical data. [2] The Data set we used is hourly rainfall measurements from 5500 land based stations. The Data contains a Location, Day, Hour and amount of rainfall. In addition for each station there is a Name, State, County, Longitude, Latitude and Altitude. The data we used contains millions of records. Our data was split into two different sets of files. The first was the hourly data files. The second was the station description file. Each record in the hourly data files starts with thirty characters to describe station id and date of measurement. This was followed by a series of hourly measurements. Each measurement contains an hour and an amount of rainfall. Each record in the station information file contains a unique station id, a name, and various geographical descriptive data.

2 Image 1: Data Mart Star Schema 4 Using Python to Preprocess Data We used python scripts to prepare data for entry into the data mart. We used the powerful and simple Python string processing capacity to split up the fixed length fields in the records. We then wrote those fields into a Comma Separated Values file (CSV) (See Figure 2). 5 Rainfall Data Mart We used a simple SQL database for our Data Mart (See Image 1). We than designed queries to access the data mart via a variety of criteria. Our data mart can answer questions related to monthly totals or which stations have the most (or least rainfall) Image 2: Sample of python code used for preprocessing Our data mart includes views that show monthly total rainfall for each station. (Image 3) Some example questions our Data Mart can answer are: 1. Which Station in California had the most rainfall in 2012? (Images 4 and 5) 2. Which Stations in Nevada had the most rainfall in March 2012? (Images 6 and 7) 3. When did Grass Valley California have the most rainfall? (Images 8 and 9) Image 3: Query to create monthly summary view for January

3 Image 4: Question 1 Query Image 6: Question 2 Query Image 5: Question 1 Result Image 7: Question 2 Result Image 1: Question 3 Query Image 9: Question 3 Result 6 Clustering locations with Similar Rainfall First, we created a table that contained the monthly totals for every station. Then, we used orange to apply clustering to the resulting data set. Using K-Means clustering we found that the data was divided into two clusters. Cluster 1 (O) tend to have less rainfall while Cluster 2 (X) tends to have more rainfall (Image 10). As shown in the scatter plot. More rainfall tends to occur in Northern California, and Western Oregon and Washington. Less rainfall occurs in

4 Nevada, Southern California, and Eastern Oregon and Washington. The pattern of where the clusters appear closely matches what one would expect to see in a climate map. Various techniques have been used in the past in order to measure rainfall data. Past studies are worth taking a look at when conducting research similar to those studies. The futuristic idea of gathering rainfall data from vehicles in real time has been implemented multiple times [1]. In this study, modern cars that have rainfall sensors connect to the internet and broadcast real-time rainfall data. The rainfall sensors were originally intended to tell the vehicle when to turn on its windshield wipers, but the authors decided that these could be used for another purpose of detecting rainfall. The most cost effective way to collect and analyze data are to utilize the resources that are already there, and that is what [1] does. We duplicated this method by using data, database implementations, and programming languages that already exist, then put them together to function for another original purpose. Another study used a high frequency radar in real time to detect what physical atmospheric properties exist during severe rainfall [3]. We thought it would be interesting to see how well they could take an input of our locations and times and output what they thought would be our rainfall data. Most of the studies we encountered were trying to push real time gathering of rainfall data, rather than historical data. For instance, in [4] engineers took cell phones and used them to monitor rainfall in real time. These real time methods used in [1], [3], and [4] are highly experimental and in an early stage of development. Because of this, we decided to make solid, historical rainfall data readily available to use. In this way, in the future, when methods for gathering real time data become more robust, our method can be used to readily scan and extract detailed information from real time data at a glance. Image 10: Rainfall pattern clustering 7 Related Work The ability to quickly retrieve historical rainfall data is extremely important to specific parts of society. Detailed, historical rainfall data can be used to predict future rainfall data, get an idea of what patterns rainfall has, how to better prepare for certain types of weather, and much more. We looked into many past studies of rainfall gathering techniques, and basically came to the conclusion that data is either gathered from the past or in real time. 8 Conclusion Our results were fairly ordinary and not at all surprising. The problem we attempted to solve has been answered before and many of the references show other attempts of solving similar problems. We were able to successfully load two full years of rainfall data into a database and successfully query it for specific results (such as specific locations and times of rainfall). We also were able to apply the K-means algorithm on the data. While our project does not contribute anything new to the field, our results are in agreement with common sense.

5 By performing this project we learned a significant amount about both Data Warehousing and Data Mining. We got to use a collection of useful tools. MySQL was relatively easy to set up but also had a number of difficulties. We needed to make sure the CSV files were properly formatted and a working knowledge of SQL was required. The W3C SQL reference was indispensable toward completing this project. We found that MySQL Workbench was clear and well designed and gaining a working knowledge of the software was indispensable. Orange was extremely easy to use. It is a very power tool for both Data Mining and Data Visualization. In the future if we are ever required to do a similar project Orange will be one of the first products we will consider using. Working in a team is always a valuable experience. It was also interesting to work on an open ended project. While we were behind and only finished last minute. We are still satisfied with the results. [5] Wei Wang, Hui Lu, Tianjie Zhao, Lingmei Jiang, Jiancheng Shi, Evaluation and Comparison of Daily Rainfall From Latest GPM and TRMM Products Over the Mekong River Basin. IEEE Early Access Articles, 2017, Vol. PP, No. 99, PP [6] R. Senthil Kumar, C. Ramesh, A study on prediction of rainfall using datamining technique. IEEE Conference Publications, 2016, Vol. 3 PP. 1-9 [7] W3C SQL Reference [8] Python Documentation [9] Orange [10] MySQL 9 References [1] Carlos T. Calafate, Karin Cicenia, Oscar Alvear, and Juan Carlos Cano, Estimating rainfall intensity by using vehicles as sensors. Conference Publications, 2017, PP [2] National Centers for Environmental Information (NCEI). [3] Haiyin Qing, Yenhsyang Chu, Zhengyu Zhao, Chinglun Su, Chen Zhou, Yuannong Zhang, Observation and analysis of atmospheric rainfall based on the very high frequency radar. IET Journals & Magazines, 2017, Vol. 11, No. 4 PP [4] Hagit Messer, Lior Gazit, From cellular networks to the garden hose: Advances in rainfall monitoring via cellular power measurements. IEEE Conference Publications, 2016, PP

Weather to Climate Investigation: Maximum Temperature

Weather to Climate Investigation: Maximum Temperature Name: Date: Guiding Questions: Weather to Climate Investigation: Maximum Temperature What are the historical and current weather patterns or events for a location in the United States? What are the long-term

More information

SAMPLE. SITE SPECIFIC WEATHER ANALYSIS Rainfall Report. Bevens Engineering, Inc. Susan M. Benedict REFERENCE:

SAMPLE. SITE SPECIFIC WEATHER ANALYSIS Rainfall Report. Bevens Engineering, Inc. Susan M. Benedict REFERENCE: SAMPLE SITE SPECIFIC WEATHER ANALYSIS Rainfall Report PREPARED FOR: Bevens Engineering, Inc. Susan M. Benedict REFERENCE: DUBOWSKI RESIDENCE / FILE# 11511033 CompuWeather Sample Report Please note that

More information

Studying Topography, Orographic Rainfall, and Ecosystems (STORE)

Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Introduction Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Lesson: Using ArcGIS Explorer to Analyze the Connection between Topography, Tectonics, and Rainfall GIS-intensive Lesson This

More information

Name: Date: Period: #: Chapter 1: Outline Notes What Does a Historian Do?

Name: Date: Period: #: Chapter 1: Outline Notes What Does a Historian Do? Name: Date: Period: #: Chapter 1: Outline Notes What Does a Historian Do? Lesson 1.1 What is History? I. Why Study History? A. History is the study of the of the past. History considers both the way things

More information

LAB 19. Lab 19. Differences in Regional Climate: Why Do Two Cities Located at the Same Latitude and Near a Body of Water Have Such Different Climates?

LAB 19. Lab 19. Differences in Regional Climate: Why Do Two Cities Located at the Same Latitude and Near a Body of Water Have Such Different Climates? Lab Handout Lab 19. Differences in Regional Climate: Why Do Two Cities Located at the Same Latitude and Near a Body of Water Have Such Different Climates? Introduction Weather describes the current atmospheric

More information

Orange Visualization Tool (OVT) Manual

Orange Visualization Tool (OVT) Manual Orange Visualization Tool (OVT) Manual This manual describes the features of the tool and how to use it. 1. Contents of the OVT Once the OVT is open (the first time it may take some seconds), it should

More information

Weather and Climate Summary and Forecast Summer 2017

Weather and Climate Summary and Forecast Summer 2017 Weather and Climate Summary and Forecast Summer 2017 Gregory V. Jones Southern Oregon University August 4, 2017 July largely held true to forecast, although it ended with the start of one of the most extreme

More information

Inquiry: The University of Arkansas Undergraduate Research Journal. Volume 5 Article 15

Inquiry: The University of Arkansas Undergraduate Research Journal. Volume 5 Article 15 Inquiry: The University of Arkansas Undergraduate Research Journal Volume 5 Article 15 Fall 2004 Last Frost Project Midori Kubozono University of Arkansas, Fayetteville Follow this and additional works

More information

Hourly Precipitation Data Documentation (text and csv version) February 2016

Hourly Precipitation Data Documentation (text and csv version) February 2016 I. Description Hourly Precipitation Data Documentation (text and csv version) February 2016 Hourly Precipitation Data (labeled Precipitation Hourly in Climate Data Online system) is a database that gives

More information

SAMPLE. SITE SPECIFIC WEATHER ANALYSIS Rainfall Report. Bevins Engineering, Inc. Susan M. Benedict. July 1, 2017 REFERENCE:

SAMPLE. SITE SPECIFIC WEATHER ANALYSIS Rainfall Report. Bevins Engineering, Inc. Susan M. Benedict. July 1, 2017 REFERENCE: SAMPLE SITE SPECIFIC WEATHER ANALYSIS Rainfall Report PREPARED FOR: Bevins Engineering, Inc. Susan M. Benedict July 1, 2017 REFERENCE: DUBOWSKI RESIDENCE / FILE# 11511033 1500 Water Street, Pensacola,

More information

To Predict Rain Fall in Desert Area of Rajasthan Using Data Mining Techniques

To Predict Rain Fall in Desert Area of Rajasthan Using Data Mining Techniques To Predict Rain Fall in Desert Area of Rajasthan Using Data Mining Techniques Peeyush Vyas Asst. Professor, CE/IT Department of Vadodara Institute of Engineering, Vadodara Abstract: Weather forecasting

More information

Climatic Change Implications for Hydrologic Systems in the Sierra Nevada

Climatic Change Implications for Hydrologic Systems in the Sierra Nevada Climatic Change Implications for Hydrologic Systems in the Sierra Nevada Part Two: The HSPF Model: Basis For Watershed Yield Calculator Part two presents an an overview of why the hydrologic yield calculator

More information

APPEND AND MERGE. Colorado average snowfall amounts - Aggregated by County and Month

APPEND AND MERGE. Colorado average snowfall amounts - Aggregated by County and Month APPEND AND MERGE Climate change affects the environment is many ways. This past winter produced little snow in California which is likely to compound their drought. The lack of snow also negatively impacts

More information

WEATHER AND CLIMATE (K.ES.NGSS)

WEATHER AND CLIMATE (K.ES.NGSS) TM WEATHER AND CLIMATE (K.ES.NGSS) UNIT AT A GLANCE ACTIVITY 1 - Weather Watchers: Making Observations QUESTIONS: What do we need to know about the weather, and what do we need to find out? Preparation:

More information

Analyzing and Visualizing Precipitation and Soil Moisture in ArcGIS

Analyzing and Visualizing Precipitation and Soil Moisture in ArcGIS Analyzing and Visualizing Precipitation and Soil Moisture in ArcGIS Wenli Yang, Pham Long, Peisheng Zhao, Steve Kempler, and Jennifer Wei * NASA Goddard Earth Science Data and Information Services Center

More information

P6.13 GLOBAL AND MONTHLY DIURNAL PRECIPITATION STATISTICS BASED ON PASSIVE MICROWAVE OBSERVATIONS FROM AMSU

P6.13 GLOBAL AND MONTHLY DIURNAL PRECIPITATION STATISTICS BASED ON PASSIVE MICROWAVE OBSERVATIONS FROM AMSU P6.13 GLOBAL AND MONTHLY DIURNAL PRECIPITATION STATISTICS BASED ON PASSIVE MICROWAVE OBSERVATIONS FROM AMSU Frederick W. Chen*, David H. Staelin, and Chinnawat Surussavadee Massachusetts Institute of Technology,

More information

Weather and Climate of the Rogue Valley By Gregory V. Jones, Ph.D., Southern Oregon University

Weather and Climate of the Rogue Valley By Gregory V. Jones, Ph.D., Southern Oregon University Weather and Climate of the Rogue Valley By Gregory V. Jones, Ph.D., Southern Oregon University The Rogue Valley region is one of many intermountain valley areas along the west coast of the United States.

More information

Weather and Climate Summary and Forecast October 2017 Report

Weather and Climate Summary and Forecast October 2017 Report Weather and Climate Summary and Forecast October 2017 Report Gregory V. Jones Linfield College October 4, 2017 Summary: Typical variability in September temperatures with the onset of fall conditions evident

More information

Geography Skills Progression. Eden Park Primary School Academy

Geography Skills Progression. Eden Park Primary School Academy Geography Skills Progression Eden Park Primary School Academy In order to ensure broad and balanced coverage, we follow these principles: Within each phase, geography is a driver for at least 3 Learning

More information

Leon Creek Watershed October 17-18, 1998 Rainfall Analysis Examination of USGS Gauge Helotes Creek at Helotes, Texas

Leon Creek Watershed October 17-18, 1998 Rainfall Analysis Examination of USGS Gauge Helotes Creek at Helotes, Texas Leon Creek Watershed October 17-18, 1998 Rainfall Analysis Examination of USGS Gauge 8181400 Helotes Creek at Helotes, Texas Terrance Jackson MSCE Candidate University of Texas San Antonio Abstract The

More information

What Is the Weather Like in Different Regions of the United States?

What Is the Weather Like in Different Regions of the United States? Learning Set 1 What Is Weather, and How Is It Measured and Described? 1.3 Explore What Is the Weather Like in Different Regions of the United States? trends: patterns or tendencies you can see over a broad

More information

Funding provided by NOAA Sectoral Applications Research Project CLIMATE. Basic Climatology Oklahoma Climatological Survey

Funding provided by NOAA Sectoral Applications Research Project CLIMATE. Basic Climatology Oklahoma Climatological Survey Funding provided by NOAA Sectoral Applications Research Project CLIMATE Basic Climatology Oklahoma Climatological Survey Remember These? Factor 1: Our Energy Source Factor 2: Revolution & Tilt Factor 3:

More information

NIDIS Intermountain West Drought Early Warning System January 15, 2019

NIDIS Intermountain West Drought Early Warning System January 15, 2019 NIDIS Drought and Water Assessment NIDIS Intermountain West Drought Early Warning System January 15, 2019 Precipitation The images above use daily precipitation statistics from NWS COOP, CoCoRaHS, and

More information

Optimum Neural Network Architecture for Precipitation Prediction of Myanmar

Optimum Neural Network Architecture for Precipitation Prediction of Myanmar Optimum Neural Network Architecture for Precipitation Prediction of Myanmar Khaing Win Mar, Thinn Thu Naing Abstract Nowadays, precipitation prediction is required for proper planning and management of

More information

Weather to Climate Investigation: Snow

Weather to Climate Investigation: Snow Name: Date: Weather to Climate Investigation: Snow Guiding Questions: What are the historical and current weather patterns or events for a location in the United States? What are the long-term weather

More information

Critical Thinking. about. GeoGRAPHY. United States, Canada, and Greenland. Jayne Freeman

Critical Thinking. about. GeoGRAPHY. United States, Canada, and Greenland. Jayne Freeman Critical Thinking about GeoGRAPHY United States, Canada, and Greenland Jayne Freeman WALCH EDUCATION Contents Introduction............................................................... v National Geography

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

Presented at WaPUG Spring Meeting 1 st May 2001

Presented at WaPUG Spring Meeting 1 st May 2001 Presented at WaPUG Spring Meeting 1 st May 21 Author: Richard Allitt Richard Allitt Associates Ltd 111 Beech Hill Haywards Heath West Sussex RH16 3TS Tel & Fax (1444) 451552 1. INTRODUCTION The Flood Estimation

More information

Author response to reviewer s comments

Author response to reviewer s comments Author response to reviewer s comments On behalf of myself and the co-authors, I take the opportunity to thank the anonymous reviewers for his/her constructive comments, questions and editions. We have

More information

Worksheet: The Climate in Numbers and Graphs

Worksheet: The Climate in Numbers and Graphs Worksheet: The Climate in Numbers and Graphs Purpose of this activity You will determine the climatic conditions of a city using a graphical tool called a climate chart. It represents the long-term climatic

More information

What a Hurricane Needs to Develop

What a Hurricane Needs to Develop Weather Weather is the current atmospheric conditions, such as air temperature, wind speed, wind direction, cloud cover, precipitation, relative humidity, air pressure, etc. 8.10B: global patterns of atmospheric

More information

Sources of Hourly Surface Data and Weather Maps for the U.S.

Sources of Hourly Surface Data and Weather Maps for the U.S. Sources of Hourly Surface Data and Weather Maps for the U.S. An alternative source to Plymouth State University to get hourly observations is the National Weather Service (NWS). Hourly surface observations

More information

A Preliminary Analysis of the Relationship between Precipitation Variation Trends and Altitude in China

A Preliminary Analysis of the Relationship between Precipitation Variation Trends and Altitude in China ATMOSPHERIC AND OCEANIC SCIENCE LETTERS, 2011, VOL. 4, NO. 1, 41 46 A Preliminary Analysis of the Relationship between Precipitation Variation Trends and Altitude in China YANG Qing 1, 2, MA Zhu-Guo 1,

More information

Lab Activity: Climate Variables

Lab Activity: Climate Variables Name: Date: Period: Water and Climate The Physical Setting: Earth Science Lab Activity: Climate Variables INTRODUCTION:! The state of the atmosphere continually changes over time in response to the uneven

More information

Appendix 4 Weather. Weather Providers

Appendix 4 Weather. Weather Providers Appendix 4 Weather Using weather data in your automation solution can have many benefits. Without weather data, your home automation happens regardless of environmental conditions. Some things you can

More information

A Comparative Study of the National Water Model Forecast to Observed Streamflow Data

A Comparative Study of the National Water Model Forecast to Observed Streamflow Data A Comparative Study of the National Water Model Forecast to Observed Streamflow Data CE394K GIS in Water Resources Term Project Report Fall 2018 Leah Huling Introduction As global temperatures increase,

More information

1. Study the following Vocabulary Words to be defined: Prehistory, History, Geography, 5 Themes of Geography, Legacy

1. Study the following Vocabulary Words to be defined: Prehistory, History, Geography, 5 Themes of Geography, Legacy Social Studies Mr. Poirier Introduction Test - Study Guide Study Guide given in class on Monday September 18, 2017 Introduction Unit Test - Thursday September 21, 2017 1. Study the following Vocabulary

More information

Maps and Globes. By Kennedy s Korner

Maps and Globes. By Kennedy s Korner Maps and Globes By Kennedy s Korner Map Key or Symbols Maps use symbols to show places and things on Earth. Symbols are drawings that stand for something real. A map key tells you what each symbol stands

More information

High resolution spatiotemporal distribution of rainfall seasonality and extreme events based on a 12-year TRMM time series

High resolution spatiotemporal distribution of rainfall seasonality and extreme events based on a 12-year TRMM time series High resolution spatiotemporal distribution of rainfall seasonality and extreme events based on a 12-year TRMM time series Bodo Bookhagen, Geography Department, UC Santa Barbara, Santa Barbara, CA 93106-4060

More information

Table of Contents. Page

Table of Contents. Page Eighteen Years (1990 2007) of Climatological Data on NMSU s Corona Range and Livestock Research Center Research Report 761 L. Allen Torell, Kirk C. McDaniel, Shad Cox, Suman Majumdar 1 Agricultural Experiment

More information

24. Sluis, T Weather blamed for voter turnout. Durango Herald October 24.

24. Sluis, T Weather blamed for voter turnout. Durango Herald October 24. 120 23. Shields, T. and R. Goidel. 2000. Who contributes? Checkbook participation, class biases, and the impact of legal reforms, 1952-1992. American Politics Ouarterlx 28:216-234. 24. Sluis, T. 2000.

More information

TEMPORAL DISTIRUBTION OF PMP RAINFALL AS A FUNCTION OF AREA SIZE. Introduction

TEMPORAL DISTIRUBTION OF PMP RAINFALL AS A FUNCTION OF AREA SIZE. Introduction TEMPORAL DISTIRUBTION OF PMP RAINFALL AS A FUNCTION OF AREA SIZE Bill D. Kappel, Applied Weather Associates, LLC Edward M. Tomlinson, Ph.D., Applied Weather Associates, LLC Tye W. Parzybok, Metstat, Inc.

More information

Geodatabase Programming with Python John Yaist

Geodatabase Programming with Python John Yaist Geodatabase Programming with Python John Yaist DevSummit DC February 26, 2016 Washington, DC Target Audience: Assumptions Basic knowledge of Python Basic knowledge of Enterprise Geodatabase and workflows

More information

GIS Semester Project Working With Water Well Data in Irion County, Texas

GIS Semester Project Working With Water Well Data in Irion County, Texas GIS Semester Project Working With Water Well Data in Irion County, Texas Grant Hawkins Question for the Project Upon picking a random point in Irion county, Texas, to what depth would I have to drill a

More information

BSYSE 456/556 Surface Hydrologic Processes and Modeling

BSYSE 456/556 Surface Hydrologic Processes and Modeling BSYSE 456/556 Surface Hydrologic Processes and Modeling Lab 9 (Prepared by Erin Brooks and Jan Boll, UI, and Joan Wu, WSU) P Introduction One of the most difficult tasks in watershed assessment and management

More information

Colorado s 2003 Moisture Outlook

Colorado s 2003 Moisture Outlook Colorado s 2003 Moisture Outlook Nolan Doesken and Roger Pielke, Sr. Colorado Climate Center Prepared by Tara Green and Odie Bliss http://climate.atmos.colostate.edu How we got into this drought! Fort

More information

Large Alberta Storms. March Introduction

Large Alberta Storms. March Introduction Large Alberta Storms Introduction Most of the largest runoff events in Alberta have been in response to large storms. Storm properties, such as location, magnitude, and geographic and temporal distribution

More information

If you aren t familiar with Geographical Information Systems (GIS), you. GIS, when combined with a database that stores response information,

If you aren t familiar with Geographical Information Systems (GIS), you. GIS, when combined with a database that stores response information, Geographical Information Systems in EMS By William E. Ott If you aren t familiar with Geographical Information Systems (GIS), you should take a look at what GIS can offer you as an EMS manager. GIS, when

More information

2 Georgia: Its Heritage and Its Promise

2 Georgia: Its Heritage and Its Promise TERMS region, erosion, fault, elevation, Fall Line, aquifer, marsh, climate, weather, precipitation, drought, tornado, hurricane, wetland, estuary, barrier island, swamp PLACES Appalachian Mountains, Appalachian

More information

Chapter 1 The Nature Of Science. Scientists are much like detectives trying to solve a mystery. Problem: What caused the huge ocean waves?

Chapter 1 The Nature Of Science. Scientists are much like detectives trying to solve a mystery. Problem: What caused the huge ocean waves? Chapter 1 The Nature Of Science Section 1 Science All Around Mysteries and Problems Scientists are much like detectives trying to solve a mystery. 1996- While looking through historical data, scientists

More information

Image 1: Earth from space

Image 1: Earth from space Image 1: Earth from space Credit: NASA Spacecraft: Apollo 17 Sensor: camera using visible light Image date: December 7, 1972 This image is a photograph of Earth taken by Harrison "Jack" Schmitt, an astronaut

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

WEATHER ON WHEELS Elementary School Program

WEATHER ON WHEELS Elementary School Program WEATHER ON WHEELS Elementary School Program MAST ACADEMY OUTREACH On-Site Packet Miami-Dade County Public Schools Miami, Florida MAST ACADEMY OUTREACH WEATHER ON WHEELS ELEMENTARY ON-SITE HIGHLIGHTS PACKET

More information

The following information is provided for your use in describing climate and water supply conditions in the West as of April 1, 2003.

The following information is provided for your use in describing climate and water supply conditions in the West as of April 1, 2003. Natural Resources Conservation Service National Water and Climate Center 101 SW Main Street, Suite 1600 Portland, OR 97204-3224 Date: April 8, 2003 Subject: April 1, 2003 Western Snowpack Conditions and

More information

Flight Utilities Metar Reader version 3.1 by Umberto Degli Esposti

Flight Utilities  Metar Reader version 3.1 by Umberto Degli Esposti Flight Utilities http://www.flightutilities.com Metar Reader version 3.1 by Umberto Degli Esposti 1 Description The program allows inserting a Metar, to load it from a disk or from internet and to show

More information

4.4 MONTHLY WEATHER SUMMARY

4.4 MONTHLY WEATHER SUMMARY 4.4 1 4.4 MONTHLY WEATHER SUMMARY OBJECTIVES The students Collect and summarize monthly weather data about local weather conditions including wind speed and direction, rainfall, temperature, humidity (optional),

More information

Science 20. Unit C: The Changing Earth. Assignment Booklet C3

Science 20. Unit C: The Changing Earth. Assignment Booklet C3 Science 20 Unit C: The Changing Earth Assignment Booklet C3 FOR TEACHER S USE ONLY Summary Teacher s Comments Chapter 3 Assignment Total Possible Marks 45 Your Mark Science 20 Unit C: The Changing Earth

More information

STUDY GUIDE. Exploring Geography. Chapter 1, Section 1. Terms to Know DRAWING FROM EXPERIENCE ORGANIZING YOUR THOUGHTS

STUDY GUIDE. Exploring Geography. Chapter 1, Section 1. Terms to Know DRAWING FROM EXPERIENCE ORGANIZING YOUR THOUGHTS For use with textbook pages 19 22. Exploring Geography Terms to Know location A specific place on the earth (page 20) absolute location The exact spot at which a place is found on the globe (page 20) hemisphere

More information

North Carolina Climate Variations

North Carolina Climate Variations North Carolina Climate Variations Sethu Raman Professor of Atmospheric and Marine Sciences and State Climatologist State Climate Office of North Carolina North Carolina State University Latest Drought

More information

2003 Moisture Outlook

2003 Moisture Outlook 2003 Moisture Outlook Nolan Doesken and Roger Pielke, Sr. Colorado Climate Center Prepared by Tara Green and Odie Bliss http://climate.atmos.colostate.edu Through 1999 Through 1999 Fort Collins Total Water

More information

Sierra Weather and Climate Update

Sierra Weather and Climate Update Sierra Weather and Climate Update 2014-15 Kelly Redmond Western Regional Climate Center Desert Research Institute Reno Nevada Yosemite Hydroclimate Workshop Yosemite Valley, 2015 October 8-9 Percent of

More information

March 1, 2003 Western Snowpack Conditions and Water Supply Forecasts

March 1, 2003 Western Snowpack Conditions and Water Supply Forecasts Natural Resources Conservation Service National Water and Climate Center 101 SW Main Street, Suite 1600 Portland, OR 97204-3224 Date: March 17, 2003 Subject: March 1, 2003 Western Snowpack Conditions and

More information

Japanese Programs on Space and Water Applications

Japanese Programs on Space and Water Applications Japanese Programs on Space and Water Applications Tamotsu IGARASHI Remote Sensing Technology Center of Japan June 2006 COPUOS 2006 Vienna International Centre Water-related hazards/disasters may occur

More information

Lesson 7: Classification of Solutions

Lesson 7: Classification of Solutions Student Outcomes Students know the conditions for which a linear equation will have a unique solution, no solution, or infinitely many solutions. Lesson Notes Part of the discussion on the second page

More information

Development and Land Use Change in the Central Potomac River Watershed. Rebecca Posa. GIS for Water Resources, Fall 2014 University of Texas

Development and Land Use Change in the Central Potomac River Watershed. Rebecca Posa. GIS for Water Resources, Fall 2014 University of Texas Development and Land Use Change in the Central Potomac River Watershed Rebecca Posa GIS for Water Resources, Fall 2014 University of Texas December 5, 2014 Table of Contents I. Introduction and Motivation..4

More information

Application of Satellite Data for Flood Forecasting and Early Warning in the Mekong River Basin in South-east Asia

Application of Satellite Data for Flood Forecasting and Early Warning in the Mekong River Basin in South-east Asia MEKONG RIVER COMMISSION Vientiane, Lao PDR Application of Satellite Data for Flood Forecasting and Early Warning in the Mekong River Basin in South-east Asia 4 th World Water Forum March 2006 Mexico City,

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

Weather and Climate Summary and Forecast Winter

Weather and Climate Summary and Forecast Winter Weather and Climate Summary and Forecast Winter 2016-17 Gregory V. Jones Southern Oregon University February 7, 2017 What a difference from last year at this time. Temperatures in January and February

More information

Multiple-Year Droughts In Nebraska

Multiple-Year Droughts In Nebraska University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln Drought Mitigation Center Faculty Publications Drought -- National Drought Mitigation Center 2005 Multiple-Year Droughts

More information

The Northeast Snowfall Impact Scale

The Northeast Snowfall Impact Scale The Northeast Snowfall Impact Scale Michael Squires National Climatic Data Center Abstract While the Fujita and Saffir-Simpson Scales characterize tornadoes and hurricanes respectively, there is no widely

More information

http://www.wrcc.dri.edu/csc/scenic/ USER GUIDE 2017 Introduction... 2 Overview Data... 3 Overview Analysis Tools... 4 Overview Monitoring Tools... 4 SCENIC structure and layout... 5... 5 Detailed Descriptions

More information

Monthly Long Range Weather Commentary Issued: SEPTEMBER 19, 2015 Steven A. Root, CCM, Chief Analytics Officer, Sr. VP, sales

Monthly Long Range Weather Commentary Issued: SEPTEMBER 19, 2015 Steven A. Root, CCM, Chief Analytics Officer, Sr. VP, sales Monthly Long Range Weather Commentary Issued: SEPTEMBER 19, 2015 Steven A. Root, CCM, Chief Analytics Officer, Sr. VP, sales sroot@weatherbank.com AUGUST 2015 Climate Highlights The Month in Review The

More information

Update on Seasonal Conditions & Summer Weather Outlook

Update on Seasonal Conditions & Summer Weather Outlook Update on Seasonal Conditions & Summer Weather Outlook Andy Bryant National Weather Service Portland, Oregon June 6, 2018 Overview Quick review of winter and spring conditions Seasonal water supply forecasts

More information

Funding provided by NOAA Sectoral Applications Research Project CLIMATE. Basic Climatology Colorado Climate Center

Funding provided by NOAA Sectoral Applications Research Project CLIMATE. Basic Climatology Colorado Climate Center Funding provided by NOAA Sectoral Applications Research Project CLIMATE Basic Climatology Colorado Climate Center Remember These? Factor 1: Our Energy Source Factor 2: Revolution & Tilt Factor 3: Rotation!

More information

Weather History on the Bishop Paiute Reservation

Weather History on the Bishop Paiute Reservation Weather History on the Bishop Paiute Reservation -211 For additional information contact Toni Richards, Air Quality Specialist 76 873 784 toni.richards@bishoppaiute.org Updated 2//214 3:14 PM Weather History

More information

The Next Generation of Chamber Control Software

The Next Generation of Chamber Control Software CARIBBEAN TROPICS KENYAN WETLANDS SAHARA DESERT NORWEGIAN TUNDRA The Next Generation of Chamber Control Software Helping researchers address climate changes CARIBBEAN TROPICS Revolutionary WeatherEze is

More information

Village Weather, Snow, Ice, Breakup, Flooding, Fire sites

Village Weather, Snow, Ice, Breakup, Flooding, Fire sites Village Weather, Snow, Ice, Breakup, Flooding, Fire sites What is the weather like now in Villages?... 1 BREAKUP:... 2 Flooding... 3 Fires... 5 Weather Predictability, Weather and Ice Advisories and How

More information

CSO Climate Data Rescue Project Formal Statistics Liaison Group June 12th, 2018

CSO Climate Data Rescue Project Formal Statistics Liaison Group June 12th, 2018 CSO Climate Data Rescue Project Formal Statistics Liaison Group June 12th, 2018 Dimitri Cernize and Paul McElvaney Environment Statistics and Accounts Presentation Structure Background to Data Rescue Project

More information

Geoprocessing Hydrometeorological Datasets to Assess National Weather Service (NWS) Forecasts

Geoprocessing Hydrometeorological Datasets to Assess National Weather Service (NWS) Forecasts Geoprocessing Hydrometeorological Datasets to Assess National Weather Service (NWS) Forecasts Jack Settelmaier National Weather Service Southern Region HQ Fort Worth, Texas ABSTRACT The National Weather

More information

Colorado CoCoRaHS. Colorado CoCoRaHS. Because Every Drop Counts! October 2014 Volume 2, Issue 10

Colorado CoCoRaHS. Colorado CoCoRaHS. Because Every Drop Counts! October 2014 Volume 2, Issue 10 U.S. PRECIPITATION (% OF AVERAGE) LOOKING BACK AT SEPTEMBER 2014 September was dry for much of the nation with a few exceptions; one of those being the central Rockies. In Colorado, it was wetter-than-average

More information

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore Your web browser (Safari 7) is out of date. For more security, comfort and Activityengage the best experience on this site: Update your browser Ignore Introduction to GIS What is a geographic information

More information

Weather and Climate Summary and Forecast November 2017 Report

Weather and Climate Summary and Forecast November 2017 Report Weather and Climate Summary and Forecast November 2017 Report Gregory V. Jones Linfield College November 7, 2017 Summary: October was relatively cool and wet north, while warm and very dry south. Dry conditions

More information

Ed Tomlinson, PhD Bill Kappel Applied Weather Associates LLC. Tye Parzybok Metstat Inc. Bryan Rappolt Genesis Weather Solutions LLC

Ed Tomlinson, PhD Bill Kappel Applied Weather Associates LLC. Tye Parzybok Metstat Inc. Bryan Rappolt Genesis Weather Solutions LLC Use of NEXRAD Weather Radar Data with the Storm Precipitation Analysis System (SPAS) to Provide High Spatial Resolution Hourly Rainfall Analyses for Runoff Model Calibration and Validation Ed Tomlinson,

More information

L.O Students will learn about factors that influences the environment

L.O Students will learn about factors that influences the environment Name L.O Students will learn about factors that influences the environment Date 1. At the present time, glaciers occur mostly in areas of A) high latitude or high altitude B) low latitude or low altitude

More information

VALIDATION OF SPATIAL INTERPOLATION TECHNIQUES IN GIS

VALIDATION OF SPATIAL INTERPOLATION TECHNIQUES IN GIS VALIDATION OF SPATIAL INTERPOLATION TECHNIQUES IN GIS V.P.I.S. Wijeratne and L.Manawadu University of Colombo (UOC), Kumarathunga Munidasa Mawatha, Colombo 03, wijeratnesandamali@yahoo.com and lasan@geo.cmb.ac.lk

More information

Creating a WeatherSMART nation: SAWS drought related research, services and products

Creating a WeatherSMART nation: SAWS drought related research, services and products Creating a WeatherSMART nation: SAWS drought related research, services and products Drought Dialogue 23-24 June 2016 Western Cape Government Hannes Rautenbach South African Weather Service SAWS mandate

More information

Lab 12: El Nino Southern Oscillation

Lab 12: El Nino Southern Oscillation Name: Date: OCN 104: Our Dynamic Ocean Lab 12: El Nino Southern Oscillation Part 1: Observations of the tropical Pacific Ocean during a normal year The National Oceanographic and Atmospheric Administration

More information

Colorado Alpine Dust Deposition and Associated Continental Winds 1

Colorado Alpine Dust Deposition and Associated Continental Winds 1 Hydrology Days 2010 Colorado Alpine Dust Deposition and Associated Continental Winds 1 Morgan Phillips 2 Colorado Climate Center and Bureau of Land Management Abstract. The winter and early spring of 2008-2009

More information

Analyzing Long-Term Drought Effects on Land Surface Temperature and Vegetation Using National Oceanic Atmospheric Administration Satellite s Data

Analyzing Long-Term Drought Effects on Land Surface Temperature and Vegetation Using National Oceanic Atmospheric Administration Satellite s Data Analyzing Long-Term Drought Effects on Land Surface Temperature and Vegetation Using National Oceanic Atmospheric Administration Satellite s Data Cornelius Holmes, Derek Morris Jr. S Abstract Analyzing

More information

Sources of Hourly Surface Data and Weather Maps for the U.S.

Sources of Hourly Surface Data and Weather Maps for the U.S. Sources of Hourly Surface Data and Weather Maps for the U.S. Weather Underground Weather Underground http://www.wunderground.com/history/ maintains a deep archive of hourly reports for around the world.

More information

MAST ACADEMY OUTREACH. WOW (Weather on Wheels)

MAST ACADEMY OUTREACH. WOW (Weather on Wheels) MAST ACADEMY OUTREACH ELEMENTARY SCHOOL PROGRAM Adventures Aboard WOW (Weather on Wheels) On-Site Packet MAST Academy Maritime and Science Technology High School Miami-Dade County Public Schools Miami,

More information

EMERGENCY WARNING SYSTEM PROCEDURES FOR DEBRIS FLOWS IN WESTERN OREGON

EMERGENCY WARNING SYSTEM PROCEDURES FOR DEBRIS FLOWS IN WESTERN OREGON EMERGENCY WARNING SYSTEM PROCEDURES FOR DEBRIS FLOWS IN WESTERN OREGON Updated: 12/03/2007 by the Oregon Department of Forestry and the Oregon Department of Geology and Mineral Industries Debris flows

More information

Weather and Climate Summary and Forecast March 2019 Report

Weather and Climate Summary and Forecast March 2019 Report Weather and Climate Summary and Forecast March 2019 Report Gregory V. Jones Linfield College March 2, 2019 Summary: Dramatic flip from a mild winter to a top five coldest February on record in many locations

More information

Coastal Flooding in Brevard County, Florida

Coastal Flooding in Brevard County, Florida Helen Gerlach CE 394K.3 December 4, 2015 Coastal Flooding in Brevard County, Florida Introduction My project was to create a model of the coastal flooding that occurred in Brevard County, Florida in August

More information

HURRICANES AND TORNADOES

HURRICANES AND TORNADOES HURRICANES AND TORNADOES The most severe weather systems are hurricanes and tornadoes. They occur in extremely low pressure systems, or cyclones, when the air spirals rapidly into the center of a low.

More information

The map document opens, and you see a physical map of the world with the Saudi Arabian Peninsula outlined in red.

The map document opens, and you see a physical map of the world with the Saudi Arabian Peninsula outlined in red. Module 5, Lesson 2 A line in the sand The ever-changing map of the world reflects the forces of conflict and cooperation among nations and peoples of the world. In this activity, you will explore one of

More information

DOWNLOAD PDF READING CLIMATE MAPS

DOWNLOAD PDF READING CLIMATE MAPS Chapter 1 : Template:Climate chart/how to read a climate chart - Wikipedia Maps don't just tell you which way to go they can tell you practically everything about an area of land, even the weather. Learn

More information

Ensuring Water in a Changing World

Ensuring Water in a Changing World Ensuring Water in a Changing World Evaluation and application of satellite-based precipitation measurements for hydro-climate studies over mountainous regions: case studies from the Tibetan Plateau Soroosh

More information

13.2 USING VIRTUAL GLOBES TO IMPROVE SITUATIONAL AWARENESS IN THE NATIONAL WEATHER SERVICE

13.2 USING VIRTUAL GLOBES TO IMPROVE SITUATIONAL AWARENESS IN THE NATIONAL WEATHER SERVICE 13.2 USING VIRTUAL GLOBES TO IMPROVE SITUATIONAL AWARENESS IN THE NATIONAL WEATHER SERVICE Andy Foster* National Weather Service Springfield, Missouri* Keith Stellman National Weather Service Shreveport,

More information

Monthly Long Range Weather Commentary Issued: February 15, 2015 Steven A. Root, CCM, President/CEO

Monthly Long Range Weather Commentary Issued: February 15, 2015 Steven A. Root, CCM, President/CEO Monthly Long Range Weather Commentary Issued: February 15, 2015 Steven A. Root, CCM, President/CEO sroot@weatherbank.com JANUARY 2015 Climate Highlights The Month in Review During January, the average

More information