b. hurricanescale.xml - Information on the Saffir-Simpson Hurricane Scale [3].

Size: px
Start display at page:

Download "b. hurricanescale.xml - Information on the Saffir-Simpson Hurricane Scale [3]."

Transcription

1 Background Information HOMEWORK INSTRUCTIONS Every year from June 1 to November 30 is hurricane season in the United States. Rescue relief agencies such as FEMA and the Red Cross are ready to assist when a hurricane comes ashore. Unfortunately, hurricanes cause billions of dollars of damage every year, and deaths are not unusual. The National Weather Service makes its best guess as to when and where the storm will hit. Due to constraints on technology and the overall unpredictable nature of weather, however, damage is often inevitable. Problem Statement In this assignment, students will explore data about hurricanes and related storms from 1950 onward. Using the tools available, predictions can be made about the cost of a hurricane if it makes landfall. Instructions IMPORTANT: This assignment requires the Windows version of Microsoft Office. IMPORTANT: Complete the steps below in the order they are given. Completing the steps out of order may complicate the assignment or result in an incorrect result. 1. Download and extract the provided Data Files ZIP file. It contains the following files for use in this assignment: a. cpifactors.xml Listing of Consumer Price Index adjustment factors [1]. Table: CPIFactors Field Name Type Description HurricaneYear Number Primary key. Year of CPI adjustment factor. CPIFactor Number CPI adjustment factor for 2011-valued dollars. b. hurricanescale.xml - Information on the Saffir-Simpson Hurricane Scale [3]. Table: HurricaneScale Field Name Type Description CategoryAbbrv Short Text Primary key. Abbreviation for the category. CategoryName Short Text Full name of the category (e.g., Tropical Storm, Category 3 Hurricane ). LowerWindSpeed Number The lower bound wind speed for a storm of this category. UpperWindSpeed Number The upper bound wind speed for a storm of this category. Page 1 of 9 Version 9.18

2 c. hurricanes.xml Statistics on hurricanes from 1950 to 2011 [2]. Table: Hurricanes Field Name Type Description HurricaneID AutoNumber Primary key. Unique identifier for the hurricane. HurricaneName Short Text Name given to the storm. HurricaneYear Number Year the storm took place. StartDate Date Date the storm developed. EndDate Date Date the storm diminished. MaxCategoryAbbrv Short Text Maximum category as which the storm was classified on the Saffir-Simpson Hurricane Scale. MaxWindSpeed Number Maximum wind speed recorded for the storm. MinPressure Number Minimum air pressure recorded for the storm. Deaths Number Number of deaths attributed to the storm. Damage Currency Estimated damage caused in the United States. RetiredName Yes/No If yes, this storm resulted in the hurricane name being retired. d. hurricanes.rtf Report text file to format in Word. e. hurricane.png Image of a hurricane for use in PowerPoint. Microsoft Access Portion 2. Begin by creating a new Microsoft Access database named lastname_firstname_hw6_hdp.accdb. 3. Import the following items into the database: a. cpifactors.xml file Import structure and data into a new table. b. hurricanes.xml file Import structure and data into a new table. c. hurricanescale.xml file Import structure and data into a new table. 4. Create the appropriate relationships for the following tables. Enforce referential integrity, but do not enable cascade updates or cascade deletes. a. Hurricanes and HurricaneScale b. Hurricanes and CPIFactors Page 2 of 9 Version 9.18

3 5. Create separate queries to provide the information requested below. Name each query after the step in which it appears (e.g., name the query in Step 5a as Query5A). HINT: Run your queries to test them. Make sure that they display all and only the records that you would expect to appear. a. Create a query to display statistics on each hurricane. List the hurricane name, year, start date, and number of deaths. Also, include a field to calculate the estimated damage in inflation-adjusted 2011 dollars. You can calculate the estimated damage in inflation-adjusted 2011 dollars using the formula: [Hurricanes. Damage] [CPIFactors. CPIFactor] Format the calculated field as currency with no decimal places. Sort by start date in ascending order. HINT: This query will show 686 records and 5 fields. b. We wish to summarize statistics on the most powerful hurricanes. Create a query listing, for each year and storm category, the number of hurricanes, total number of deaths, and total cost of damage. Only include records for Category 4 Hurricanes and Category 5 Hurricanes. Format the total cost of damage as currency with no decimal places. HINT: This query will show 53 records and 5 fields. c. We would like to generate statistics on retired hurricane names. Copyand-paste this SQL code into a new query: SELECT Hurricanes.HurricaneYear, (Count(HurricaneName)-Retired) AS [Non-Retired], Sum(IIf(RetiredName,1,0)) AS Retired FROM Hurricanes GROUP BY Hurricanes.HurricaneYear ORDER BY Hurricanes.HurricaneYear; IMPORTANT: Do not make any modifications to this query other than entering the above SQL code. HINT: This query will show 62 records and 3 fields. Page 3 of 9 Version 9.18

4 d. We need to gather statistics on all our recorded hurricanes. Copy-andpaste this SQL code into a new query: SELECT Hurricanes.HurricaneName, Hurricanes.HurricaneYear, Hurricanes.StartDate, Hurricanes.EndDate, HurricaneScale.CategoryName, Hurricanes.MaxWindSpeed, Hurricanes.MinPressure, Hurricanes.Deaths, Hurricanes.Damage FROM HurricaneScale INNER JOIN Hurricanes ON HurricaneScale.[CategoryAbbrv] = Hurricanes.[MaxCategoryAbbrv] ORDER BY Hurricanes.StartDate; IMPORTANT: Do not make any modifications to this query other than entering the above SQL code. HINT: This query will show 686 records and 9 fields. 6. Run the Compact and Repair Database utility on your database. Ignore any errors you receive when running the utility. Microsoft Excel Portion 7. Create a new Microsoft Excel workbook named lastname_firstname_hw6_hdp.xlsx. 8. We must adjust the sheets in our workbook. a. Rename Sheet1 to Retired Names. b. Add a new sheet named Hurricanes. 9. Import the following items into the workbook: a. Query5C query from the Microsoft Access database: Import as a table starting in cell A1 of the Retired Names sheet. b. Query5D query from the Microsoft Access database: Import as a table starting in cell A1 of the Hurricanes sheet. 10. We would like to create a chart to display information on the retired hurricane names. Create a new 2-D clustered column chart based on cells A1 through C63 of the Retired Names sheet. Move the chart to a new sheet named Retired Names Chart. Ensure the years are shown as labels for the horizontal (category) axis, not plotted as chart data. Specify appropriate chart and axis titles. Format the vertical (value) axis as a number with 1 decimal place. Page 4 of 9 Version 9.18

5 11. To better understand our data, we wish to create a PivotTable. a. Create a new PivotTable based on the data in cells A1 through I687 of the Hurricanes sheet. Place the PivotTable on a new sheet named Hurricanes PivotTable. b. On the PivotTable, do the following: i. Add the year as a Rows field. ii. iii. Add the category name as a Columns field. Add the deaths as a Values field. c. There is nothing to do for this step. Please proceed to the next step. Microsoft Word Portion 12. Create a new Microsoft Word document named lastname_firstname_hw6_hdp.docx. 13. At the beginning of the document, insert a cover page using either of the builtin Sideline or Whisp styles. On the cover page, include the information noted below. a. Company: The words Computer Science 101 Section followed by the section number in which you are enrolled. b. Title: Hurricanes c. Subtitle: Causes, Effects, and Classification d. Author: Your first and last name. e. Date: The current date. 14. Add a second page if one does not already exist. On it, insert the contents of the hurricanes.rtf file. NOTE: The inserted text contains instructions (inside of <> symbols) for use in formatting the document. You should remove these instructions once you have applied the specified formatting. 15. Where indicated, include the chart from the Retired Names Chart sheet in your Microsoft Excel workbook. Size the chart to be 4-inches high by 6.5-inches wide. Add a caption for the chart. 16. Where indicated, insert a new equation using the Microsoft Word equation tool representing the formula below. Your formula must identically reproduce: Damage Deaths Page 5 of 9 Version 9.18

6 17. At the end of the document, we wish to create a bibliography page. a. Define the following sources as references for your report. i. Type: Web site ii. iii. Name of web page: Weather Underground Home Page Name of web site: Weather Underground Date: November 8, 2008 Date accessed: November 8, 2008 URL: Type: Web site Name of web page: USAToday.com Name of web site: USA Today Date: May 17, 2005 Date accessed: November 8, 2008 URL: Type: Book Author: Douglas Brinkley Title: The Great Deluge: Hurricane Katrina, New Orleans, and the Mississippi Gulf Coast Year: 2006 City: New York City Publisher: HarperCollins b. Where indicated on the last page, insert a Bibliography-style bibliography using an APA style. 18. We must finish formatting our document. a. Apply the formatting and changes to your report text as specified by the included comments. Remove the included comments from your document once you have applied the required formatting. b. Ensure your document conforms to the following requirements: i. Modify the Normal formatting style to specify Verdana 11-point as the default font. Page 6 of 9 Version 9.18

7 ii. HOMEWORK INSTRUCTIONS In the right-hand corner of the header on all pages after the cover page, list your last name followed by the page number. The page number should begin at 1 on the first actual page of text (the page after the cover page). iii. The first line of your text paragraphs should be indented by 0.5- inch. Do not indent the cover page, headings, images, captions, equations, or bibliography. iv. Except on the cover page, use double line spacing. v. Ensure there is no (0-point) line spacing before and after each paragraph except on the cover page. vi. Use 1.0-inch margins on all sides. Microsoft PowerPoint Portion 19. Create a new Microsoft PowerPoint presentation named lastname_firstname_hw6_hdp.pptx. 20. In the presentation, create the following slides: a. Title Slide-type slide listing a title for the presentation, your name, course section, and an automatically updating date. b. Title and Content-type slide titled Retired Hurricane Names. Add the chart from the Retired Names Chart sheet of your Microsoft Excel workbook to the content area of the slide. 21. Create Title and Content-type slides to answer four of the five analysis questions below. Respond to one question per slide. Title each slide with the name of the question being answered (e.g., "Question A"). a. The Hurricanes PivotChart chart reveals several spikes in deaths during the early 1960s, 1970s and late 1990s. Identify the key hurricanes that comprise the majority of these spikes. b. Why do most hurricanes form during the so-called Hurricane Season, lasting from June 1 to November 30? c. The Saffir-Simpson Hurricane Scale is a method of measuring the intensity of a hurricane based on maximum wind speed. Is the Saffir- Simpson category of a hurricane, as determined by its maximum wind speed, a good predictor of the damages it will cause? Why or why not? d. Hurricane detection and tracking tools have become significantly more sophisticated over the last 50 years of hurricane history. Give examples of at least two technologies that have improved hurricane detection and tracking. Page 7 of 9 Version 9.18

8 e. Are there any weather or climate phenomena associated with increased hurricane activity? Explain your answer. 22. We wish to apply formatting to the presentation. Use your best judgment to create a professional-looking presentation. a. Apply one slide design of your choice to all slides. b. Apply an animation of your choice to the Retired Hurricane Names chart. c. Apply slide transitions of your choice to all slides. d. Edit the parent (top-most) slide master to add the hurricane.png image to the bottom left corner of the slides. Size the image to be 0.5-inches high by 0.5-inches wide. NOTE: Depending on the slide design used, the image may not appear on title slides. This is acceptable as long as the image is correctly added to the slide master. e. Add your name, an automatically updating date, and the slide number to the footer of all slides except the title slide. Assignment Requirements You must submit all four files (Microsoft Access, Microsoft Excel, Microsoft PowerPoint, and Microsoft Word) for this assignment. Grading Rubric This assignment is worth 50 points. It will be graded by your instructor using this rubric, with partial credit awarded as appropriate: Step 3 2 points Step points Step points Step points Steps 5a-b 2.5 points each Step points Steps 5c-d 1 points each Steps 17a-b 2.5 points total Steps 8a-b 1 points total Steps 18a-b 3.5 points total Steps 9a-b 1.5 points total Steps 20a-b 2.5 points total Step 10 3 points Steps 21a-e (pick 4 of 5) 2.5 points each Steps 11a-c 5 points total Steps 22a-e 2.5 points total Steps 13a-e 2.5 points total Page 8 of 9 Version 9.18

9 The analysis questions in Steps 21a-e will be evaluated using this rubric: Standard Answer is reasonable. Answer is supported. Meets Requirements (1.25 points) Answer addresses the question prompt and is factually correct or a reasonable interpretation of available data. Logical rationale is provided to support the given answer. Does Not Meet Requirements (0 points) Answer does not address the question prompt, is factually incorrect, or is an unreasonable interpretation of available data. Logical rationale is not provided to support the given answer. Acknowledgments The image in the introduction appears courtesy of NASA [4]. References [1] Consumer Price Index (CPI), U.S. Bureau of Labor Statistics. Available: [2] Hurricane and Tropical Cyclones, Weather Underground. Available: [3] Saffir Simpson hurricane wind scale, Wikipedia, the free encyclopedia, Oct. 01, Available: ne_wind_scale&oldid= Accessed: Oct. 01, [4] J. Schmaltz, Hurricane Katrina: August 28, Available: NASA.jpg. Page 9 of 9 Version 9.18

b. states.xml Listing of states and their postal abbreviations.

b. states.xml Listing of states and their postal abbreviations. Background Information Mankind with all of its inventions and weapons has the false belief that it is in control of the environment. All too often the weather delivers a reminder that we are not invincible.

More information

Appendix B Microsoft Office Specialist exam objectives maps

Appendix B Microsoft Office Specialist exam objectives maps B 1 Appendix B Microsoft Office Specialist exam objectives maps This appendix covers these additional topics: A Excel 2003 Specialist exam objectives with references to corresponding material in Course

More information

MAST ACADEMY OUTREACH. WOW (Weather on Wheels)

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

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

WEATHER AND CLIMATE COMPLETING THE WEATHER OBSERVATION PROJECT CAMERON DOUGLAS CRAIG

WEATHER AND CLIMATE COMPLETING THE WEATHER OBSERVATION PROJECT CAMERON DOUGLAS CRAIG WEATHER AND CLIMATE COMPLETING THE WEATHER OBSERVATION PROJECT CAMERON DOUGLAS CRAIG Introduction The Weather Observation Project is an important component of this course that gets you to look at real

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

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

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 the best experience on this site: Update your browser Ignore Educator Version 2005 HU RRICANE SEASO N Map traces a stormy season

More information

MAST ACADEMY OUTREACH. WOW (Weather on Wheels)

MAST ACADEMY OUTREACH. WOW (Weather on Wheels) MAST ACADEMY OUTREACH ELEMENTARY PROGRAM Adventures Aboard WOW (Weather on Wheels) Teacher Instructions / Answer Keys MAST Academy Maritime and Science Technology High School Miami-Dade County Public Schools

More information

Chapter 11: Dealing with Extreme Weather: Hurricanes in the Caribbean Overview Objectives Language Objectives: 1. Vocabulary/Geoterms:

Chapter 11: Dealing with Extreme Weather: Hurricanes in the Caribbean Overview Objectives Language Objectives: 1. Vocabulary/Geoterms: Chapter 11: Dealing with Extreme Weather: Hurricanes in the Caribbean Essential Question: What causes extreme weather, and how do people deal with it? Overview In this lesson, students learn about hurricanes

More information

Richter Scale and Logarithms

Richter Scale and Logarithms activity 7.1 Richter Scale and Logarithms In this activity, you will investigate earthquake data and explore the Richter scale as a measure of the intensity of an earthquake. You will consider how numbers

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

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

Core Curriculum Supplement

Core Curriculum Supplement Core Curriculum Supplement Academic Unit / Office EAS Catalog Year of Implementation 2018-2019 Course (Prefix / Number) GEOL / 1370 Core Proposal Request Add to Core Curriculum Course Title Natural Disasters

More information

Large Scale Structure of the Universe Lab

Large Scale Structure of the Universe Lab Large Scale Structure of the Universe Lab Introduction: Since the mid-1980 s astronomers have gathered data allowing, for the first time, a view of the structure of the Universe in three-dimensions. You

More information

Shenandoah University. (PowerPoint) LESSON PLAN *

Shenandoah University. (PowerPoint) LESSON PLAN * Shenandoah University (PowerPoint) LESSON PLAN * NAME DATE 10/28/04 TIME REQUIRED 90 minutes SUBJECT Algebra I GRADE 6-9 OBJECTIVES AND PURPOSE (for each objective, show connection to SOL for your subject

More information

Conformational Analysis of n-butane

Conformational Analysis of n-butane Conformational Analysis of n-butane In this exercise you will calculate the Molecular Mechanics (MM) single point energy of butane in various conformations with respect to internal rotation around the

More information

Studying Topography, Orographic Rainfall, and Ecosystems (STORE)

Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Studying Topography, Orographic Rainfall, and Ecosystems (STORE) Introduction Basic Lesson 3: Using Microsoft Excel to Analyze Weather Data: Topography and Temperature This lesson uses NCDC data to compare

More information

Post-Hurricane Recovery: How Long Does it Take?

Post-Hurricane Recovery: How Long Does it Take? Post-Hurricane Recovery: How Long Does it Take? Implications for disaster recovery after hurricanes Harvey and Irma In the following report, BuildFax analyzed the geographic areas impacted by three of

More information

Global Climate Change and Human Health Cycloning out of Control: Climate Change Impacts on Natural Disasters; Cyclones

Global Climate Change and Human Health Cycloning out of Control: Climate Change Impacts on Natural Disasters; Cyclones INSTRUCTOR BACKGROUND Cyclones are one of the world s most devastating natural disasters causing billions of dollars in damages to homes, building and infrastructure annually. The United Nations estimates

More information

Homework Assignment 2. Due Date: October 17th, CS425 - Database Organization Results

Homework Assignment 2. Due Date: October 17th, CS425 - Database Organization Results Name CWID Homework Assignment 2 Due Date: October 17th, 2017 CS425 - Database Organization Results Please leave this empty! 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 2.10 2.11 2.12 2.15 2.16 2.17 2.18 2.19 Sum

More information

BASIC TECHNOLOGY Pre K starts and shuts down computer, monitor, and printer E E D D P P P P P P P P P P

BASIC TECHNOLOGY Pre K starts and shuts down computer, monitor, and printer E E D D P P P P P P P P P P BASIC TECHNOLOGY Pre K 1 2 3 4 5 6 7 8 9 10 11 12 starts and shuts down computer, monitor, and printer P P P P P P practices responsible use and care of technology devices P P P P P P opens and quits an

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

Investigating Factors that Influence Climate

Investigating Factors that Influence Climate Investigating Factors that Influence Climate Description In this lesson* students investigate the climate of a particular latitude and longitude in North America by collecting real data from My NASA Data

More information

Phases of Disaster Response. John Yeaw, Gavin Vanstone, Haochen Wu, Jordan Tyler

Phases of Disaster Response. John Yeaw, Gavin Vanstone, Haochen Wu, Jordan Tyler Phases of Disaster Response John Yeaw, Gavin Vanstone, Haochen Wu, Jordan Tyler BP Oil Spill One of the worst man made disasters in human history The BP oil spill occurred in April of 2010 when the Deepwater

More information

Lab 20. Predicting Hurricane Strength: How Can Someone Predict Changes in Hurricane Wind Speed Over Time?

Lab 20. Predicting Hurricane Strength: How Can Someone Predict Changes in Hurricane Wind Speed Over Time? Predicting Hurricane Strength How Can Someone Predict Changes in Hurricane Wind Speed Over Time? Lab Handout Lab 20. Predicting Hurricane Strength: How Can Someone Predict Changes in Hurricane Wind Speed

More information

Hurricane Awareness 2017

Hurricane Awareness 2017 Hurricane Awareness 2017 Hurricane Isabel from the International Space Station NASCC Emergency Management Department When will a Hurricane hit Corpus Christi? Port Lavaca Rockport Corpus Christi Kingsville

More information

LED Lighting Facts: Product Submission Guide

LED Lighting Facts: Product Submission Guide LED Lighting Facts: Product Submission Guide NOVEMBER 2017 1 P a g e L E D L i g h t i n g F a c t s : M a n u f a c t u r e r P r o d u c t S u b m i s s i o n G u i d e TABLE OF CONTENTS Section 1) Accessing

More information

Mathematics 1104B. Systems of Equations and Inequalities, and Matrices. Study Guide. Text: Mathematics 11. Alexander and Kelly; Addison-Wesley, 1998.

Mathematics 1104B. Systems of Equations and Inequalities, and Matrices. Study Guide. Text: Mathematics 11. Alexander and Kelly; Addison-Wesley, 1998. Adult Basic Education Mathematics Systems of Equations and Inequalities, and Matrices Prerequisites: Mathematics 1104A, Mathematics 1104B Credit Value: 1 Text: Mathematics 11. Alexander and Kelly; Addison-Wesley,

More information

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole.

An area chart emphasizes the trend of each value over time. An area chart also shows the relationship of parts to a whole. Excel 2003 Creating a Chart Introduction Page 1 By the end of this lesson, learners should be able to: Identify the parts of a chart Identify different types of charts Create an Embedded Chart Create a

More information

LED Lighting Facts: Manufacturer Guide

LED Lighting Facts: Manufacturer Guide LED Lighting Facts: Manufacturer Guide 2018 1 P a g e L E D L i g h t i n g F a c t s : M a n u f a c t u r e r G u i d e TABLE OF CONTENTS Section 1) Accessing your account and managing your products...

More information

Yes, the Library will be accessible via the new PULSE and the existing desktop version of PULSE.

Yes, the Library will be accessible via the new PULSE and the existing desktop version of PULSE. F R E Q U E N T L Y A S K E D Q U E S T I O N S THE LIBRARY GENERAL W H A T I S T H E L I B R A R Y? The Library is the new, shorter, simpler name for the Business Development (Biz Dev) Library. It s your

More information

Quick Reference Manual. Ver. 1.3

Quick Reference Manual. Ver. 1.3 Quick Reference Manual Ver. 1.3 1 EXASITE Voyage EXSITE Voyage is a web-based communication tool designed to support the following users; Ship operators who utilize Optimum Ship Routing (OSR) service in

More information

[CLUB NAME] HURRICANE ACTIVATION PLAN [EXCERPT VERSION]

[CLUB NAME] HURRICANE ACTIVATION PLAN [EXCERPT VERSION] [CLUB NAME] HURRICANE ACTIVATION PLAN [EXCERPT VERSION] Club Main Phone: [number] Club Email Address: [email] Date of last update: [date] Updated by: [Name] Template Developed By: The Burgee Program and

More information

Agricultural Outlook Forum Presented: February 17, 2006 THE SCIENCE BEHIND THE ATLANTIC HURRICANES AND SEASONAL PREDICTIONS

Agricultural Outlook Forum Presented: February 17, 2006 THE SCIENCE BEHIND THE ATLANTIC HURRICANES AND SEASONAL PREDICTIONS Agricultural Outlook Forum Presented: February 17, 2006 THE SCIENCE BEHIND THE ATLANTIC HURRICANES AND SEASONAL PREDICTIONS Gerald Bell Meteorologist, National Centers for Environmental Prediction NOAA,

More information

Mass Asset Additions. Overview. Effective mm/dd/yy Page 1 of 47 Rev 1. Copyright Oracle, All rights reserved.

Mass Asset Additions.  Overview. Effective mm/dd/yy Page 1 of 47 Rev 1. Copyright Oracle, All rights reserved. Overview Effective mm/dd/yy Page 1 of 47 Rev 1 System References None Distribution Oracle Assets Job Title * Ownership The Job Title [list@yourcompany.com?subject=eduxxxxx] is responsible for ensuring

More information

1. Open polymath: 2. Go to Help, Contents F1 or Press F1

1. Open polymath: 2. Go to Help, Contents F1 or Press F1 Polymath Tutorial Process Fluid Transport 1. Open polymath: 2. Go to Help, Contents F1 or Press F1 1 3. Read the section titled Introduction to Polymath both getting started and Variables and expressions

More information

Effects of Global Warming on Coastal Cities: A Katrina Case Study

Effects of Global Warming on Coastal Cities: A Katrina Case Study Effects of Global Warming on Coastal Cities: A Katrina Case Study Introduction This lesson was created to discuss the possible effects of temperatures increasing worldwide, with a focus on the events that

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

PHYSICAL GEOLOGY SYLLABUS GLY 1010 Physical Geology Fall

PHYSICAL GEOLOGY SYLLABUS GLY 1010 Physical Geology Fall PHYSICAL GEOLOGY SYLLABUS GLY 1010 Physical Geology Fall - 2011 Instructor s Name: Marianne O Neal Caldwell Telephone Number: (813) 253-7251 Email Address: Please use the email in our online classroom.

More information

Hurricanes and Storm Surge : Before coming to lab, visit the following web site:

Hurricanes and Storm Surge : Before coming to lab, visit the following web site: Geol 108 Lab #7 Week of October 15-19, 2012 Coastal Studies Hurricanes and Storm Surge : Before coming to lab, visit the following web site: http://www.usatoday.com/graphics/weather/gra/gsurge/flash.htm

More information

Hurricane Katrina kills hundreds

Hurricane Katrina kills hundreds www.breaking News English.com Ready-to-use ESL / EFL Lessons Hurricane Katrina kills hundreds URL: http://www.breakingnewsenglish.com/0508/050831-katrina-e.html Today s contents The Article 2 Warm-ups

More information

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Thematic maps commonly deal with either of two kinds of data: Qualitative Data showing differences in kind or type (e.g.,

More information

5E's. View the video clip:

5E's. View the video clip: 5E's TEKS 8.10 (C) identify the role of the oceans in the formation of weather systems such as hurricanes Engage View the video clip: http://www.youtube.com/watch?v=h9vpwmtnozc What is a hurricane? How

More information

ON SITE SYSTEMS Chemical Safety Assistant

ON SITE SYSTEMS Chemical Safety Assistant ON SITE SYSTEMS Chemical Safety Assistant CS ASSISTANT WEB USERS MANUAL On Site Systems 23 N. Gore Ave. Suite 200 St. Louis, MO 63119 Phone 314-963-9934 Fax 314-963-9281 Table of Contents INTRODUCTION

More information

Are You Ready For Hurricane Season? 2018 Hurricane Talk B Y : S T O R M T E A M 8 M E T E O R O L O G I S T J U L I E P H I L L I P S

Are You Ready For Hurricane Season? 2018 Hurricane Talk B Y : S T O R M T E A M 8 M E T E O R O L O G I S T J U L I E P H I L L I P S Are You Ready For Hurricane Season? 2018 Hurricane Talk B Y : S T O R M T E A M 8 M E T E O R O L O G I S T J U L I E P H I L L I P S About Me I am Currently a Weekday Meteorologist at WFLA Channel 8.

More information

Hurricane Tracking Lab

Hurricane Tracking Lab Hurricane Tracking Lab Background: Hurricanes are one of nature s most powerful disasters. To equal the power of a hurricane, one would have to set off about a thousand nuclear devices per second for as

More information

DISCRETE RANDOM VARIABLES EXCEL LAB #3

DISCRETE RANDOM VARIABLES EXCEL LAB #3 DISCRETE RANDOM VARIABLES EXCEL LAB #3 ECON/BUSN 180: Quantitative Methods for Economics and Business Department of Economics and Business Lake Forest College Lake Forest, IL 60045 Copyright, 2011 Overview

More information

Error Analysis, Statistics and Graphing Workshop

Error Analysis, Statistics and Graphing Workshop Error Analysis, Statistics and Graphing Workshop Percent error: The error of a measurement is defined as the difference between the experimental and the true value. This is often expressed as percent (%)

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

Student Exploration: Hurricane Motion

Student Exploration: Hurricane Motion Name: Date: Student Exploration: Hurricane Motion Vocabulary: air pressure, Coriolis effect, eye, hurricane, knot, meteorologist, precipitation Prior Knowledge Questions (Do these BEFORE using the Gizmo.)

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Objective: Students will gain familiarity with using Excel to record data, display data properly, use built-in formulae to do calculations, and plot and fit data with linear functions.

More information

Carnegie Mellon University Department of Computer Science /615 - Database Applications C. Faloutsos & A. Pavlo, Fall 2016

Carnegie Mellon University Department of Computer Science /615 - Database Applications C. Faloutsos & A. Pavlo, Fall 2016 Carnegie Mellon University Department of Computer Science 15-415/615 - Database Applications C. Faloutsos & A. Pavlo, Fall 2016 Homework 2 (by Lu Zhang) - Solutions Due: hard copy, in class at 3:00pm,

More information

9/56 YEAR CYCLE: HURRICANES

9/56 YEAR CYCLE: HURRICANES New Concepts in Global Tectonics Newsletter, no., June, 20 / YEAR CYCLE: HURRICANES David McMINN Independent cycle researcher Mcminn@yahoo.com Twin Palms, Blue Knob, NSW 280, Australia Abstract: The timing

More information

Weather Extremes in Canada: Understanding the Sources and Dangers of Weather

Weather Extremes in Canada: Understanding the Sources and Dangers of Weather Weather Extremes in Canada: Understanding the Sources and Dangers of Weather Lesson Overview This lesson will focus on the extremes of weather and how they affect Canada. Important meteorological factors

More information

Building Inflation Tables and CER Libraries

Building Inflation Tables and CER Libraries Building Inflation Tables and CER Libraries January 2007 Presented by James K. Johnson Tecolote Research, Inc. Copyright Tecolote Research, Inc. September 2006 Abstract Building Inflation Tables and CER

More information

SUPPLEMENTAL MATERIALS FOR:

SUPPLEMENTAL MATERIALS FOR: SUPPLEMENTAL MATERIALS FOR: Simulated reduction in Atlantic hurricane frequency under 21 st century warming conditions Thomas R. Knutson, Joseph J. Sirutis, Stephen T. Garner, Gabriel A. Vecchi, and Isaac

More information

Weather Middle School Teacher Instructions and Activity

Weather Middle School Teacher Instructions and Activity Weather Middle School Teacher Instructions and Activity Based on the guidelines of the Saffir-Simpson Scale for hurricane severity and the Fujita Scale for tornado damage, students will write a brief synopsis

More information

How to Make or Plot a Graph or Chart in Excel

How to Make or Plot a Graph or Chart in Excel This is a complete video tutorial on How to Make or Plot a Graph or Chart in Excel. To make complex chart like Gantt Chart, you have know the basic principles of making a chart. Though I have used Excel

More information

Careful, Cyclones Can Blow You Away!

Careful, Cyclones Can Blow You Away! Title: Careful, Cyclones Can Blow You Away! (Meteorology) Grade(s): 6-8 Introduction: Most people associate twisters with tornadoes, but in fact tropical twisters come from hurricanes. Hurricanes are what

More information

Lab #10 Atomic Radius Rubric o Missing 1 out of 4 o Missing 2 out of 4 o Missing 3 out of 4

Lab #10 Atomic Radius Rubric o Missing 1 out of 4 o Missing 2 out of 4 o Missing 3 out of 4 Name: Date: Chemistry ~ Ms. Hart Class: Anions or Cations 4.7 Relationships Among Elements Lab #10 Background Information The periodic table is a wonderful source of information about all of the elements

More information

To Create a Simple Formula using the Point and Click Method:

To Create a Simple Formula using the Point and Click Method: To Create a Simple Formula that Adds Two Numbers: Click the cell where the formula will be defined (C5, for example). Type the equal sign (=) to let Excel know a formula is being defined. Type the first

More information

UNST 232 Mentor Section Assignment 5 Historical Climate Data

UNST 232 Mentor Section Assignment 5 Historical Climate Data UNST 232 Mentor Section Assignment 5 Historical Climate Data 1 introduction Informally, we can define climate as the typical weather experienced in a particular region. More rigorously, it is the statistical

More information

Module 7, Lesson 2 In the eye of the storm

Module 7, Lesson 2 In the eye of the storm Module 7, Lesson 2 In the eye of the storm October 21, 1998 A tropical storm is brewing in the Atlantic Ocean. It began as a tropical wave a few weeks earlier, off the coast of western Africa. Today it

More information

Canes on Canes: Keeping South Florida Prepared During the Calm Before the Storm. Matt Onderlinde and Pete Finocchio

Canes on Canes: Keeping South Florida Prepared During the Calm Before the Storm. Matt Onderlinde and Pete Finocchio Canes on Canes: Keeping South Florida Prepared During the Calm Before the Storm Matt Onderlinde and Pete Finocchio Outline The Science of Hurricanes Why and When South Floridians Must Be Weather-Ready

More information

For your information, these are the extreme data values that appear in the file:

For your information, these are the extreme data values that appear in the file: EEN118 LAB NINE This lab involves some scientific data processing. You will download a Geographical Database File which contains the coordinates of the boundaries of the 48 connected states and the five

More information

2 One-dimensional motion with constant acceleration

2 One-dimensional motion with constant acceleration 2 One-dimensional motion with constant acceleration Experiment objectives: 1. Achieve a better understanding of how to solve position, velocity and acceleration problems in one-dimensional motion with

More information

M E R C E R W I N WA L K T H R O U G H

M E R C E R W I N WA L K T H R O U G H H E A L T H W E A L T H C A R E E R WA L K T H R O U G H C L I E N T S O L U T I O N S T E A M T A B L E O F C O N T E N T 1. Login to the Tool 2 2. Published reports... 7 3. Select Results Criteria...

More information

Hurricanes A 5 Day Unit Plan. Kristy Scott EDUC 651 October 30, nd grade

Hurricanes A 5 Day Unit Plan. Kristy Scott EDUC 651 October 30, nd grade Hurricanes A 5 Day Unit Plan Kristy Scott EDUC 651 October 30, 2006 2 nd grade Unit Overview Unit Description: The focus of this unit is to combine the students experiences of Hurricane Katrina with the

More information

At the Midpoint of the 2008

At the Midpoint of the 2008 At the Midpoint of the 2008 Atlantic Hurricane Season Editor s note: It has been an anxious couple of weeks for those with financial interests in either on- or offshore assets in the Gulf of Mexico and

More information

TOP MARKET SURVEY INSTRUCTION SHEET. Requirements. Overview

TOP MARKET SURVEY INSTRUCTION SHEET. Requirements. Overview INSTRUCTION SHEET TOP SURVEY TOP SURVEY INSTRUCTION SHEET Overview For nearly 40 years, the ACA has surveyed member agencies and conducted the Top Collection Market Survey. This survey provides critical

More information

RESEARCH ASSIGNMENT SAN ANDREAS FAULT SYSTEM: - TECTONICS, GEOLOGY, FAULT DYNAMICS, AND HAZARDS -

RESEARCH ASSIGNMENT SAN ANDREAS FAULT SYSTEM: - TECTONICS, GEOLOGY, FAULT DYNAMICS, AND HAZARDS - RESEARCH ASSIGNMENT SAN ANDREAS FAULT SYSTEM: - TECTONICS, GEOLOGY, FAULT DYNAMICS, AND HAZARDS - Due Date: TUESDAY JULY 25, 2017 by 11:59 pm A. Introduction: This writing assignment involves the research,

More information

Page Points Score Total: 100

Page Points Score Total: 100 Math 1130 Spring 2019 Sample Exam 1c 1/31/19 Name (Print): Username.#: Lecturer: Rec. Instructor: Rec. Time: This exam contains 8 pages (including this cover page) and 7 problems. Check to see if any pages

More information

Outlook 2008 Atlantic Hurricane Season. Kevin Lipton, Ingrid Amberger National Weather Service Albany, New York

Outlook 2008 Atlantic Hurricane Season. Kevin Lipton, Ingrid Amberger National Weather Service Albany, New York Outlook 2008 Atlantic Hurricane Season Kevin Lipton, Ingrid Amberger National Weather Service Albany, New York Summary 2007 Hurricane Season Two hurricanes made landfall in the Atlantic Basin at category-5

More information

Photometry of Supernovae with Makali i

Photometry of Supernovae with Makali i Photometry of Supernovae with Makali i How to perform photometry specifically on supernovae targets using the free image processing software, Makali i This worksheet describes how to use photometry to

More information

Visualizing hurricanes

Visualizing hurricanes Visualizing hurricanes NAME: DATE: Scientific visualization is an integral part of the process of simulating natural phenomena. In the computational sciences, the main goal is to understand the workings

More information

A (Mostly) Correctly Formatted Sample Lab Report. Brett A. McGuire Lab Partner: Microsoft Windows Section AB2

A (Mostly) Correctly Formatted Sample Lab Report. Brett A. McGuire Lab Partner: Microsoft Windows Section AB2 A (Mostly) Correctly Formatted Sample Lab Report Brett A. McGuire Lab Partner: Microsoft Windows Section AB2 August 26, 2008 Abstract Your abstract should not be indented and be single-spaced. Abstracts

More information

GIS FOR PLANNING. Course Overview. Schedule. Instructor. Prerequisites. Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158

GIS FOR PLANNING. Course Overview. Schedule. Instructor. Prerequisites. Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158 GIS FOR PLANNING Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158 Schedule Class/Lab - SARUP 158 Thursdays 5:30pm - 8:10pm Office Hours - By Appointment Project Ideas - Week 4 Final - 5/10/2018 Instructor

More information

COMS F18 Homework 3 (due October 29, 2018)

COMS F18 Homework 3 (due October 29, 2018) COMS 477-2 F8 Homework 3 (due October 29, 208) Instructions Submit your write-up on Gradescope as a neatly typeset (not scanned nor handwritten) PDF document by :59 PM of the due date. On Gradescope, be

More information

Homework 2: Hurricane Katrina. Part 1. Hurricane Katrina, August 28, 2005 Satellite Imagery

Homework 2: Hurricane Katrina. Part 1. Hurricane Katrina, August 28, 2005 Satellite Imagery Metr 302 Homework 2 Fall 2014 Meteorology 302 Fall 2014 Name Homework 2: Hurricane Katrina 100 points total Distributed Thursday 30 October 2014; Due Thursday 13 November 2014 Answer all questions in complete

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Experiment 03: Work and Energy

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Experiment 03: Work and Energy MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department Physics 8.01 Fall Term 2010 Experiment 03: Work and Energy Purpose of the Experiment: In this experiment you allow a cart to roll down an inclined

More information

Experiment 1 Scientific Writing Tools

Experiment 1 Scientific Writing Tools Experiment 1 Scientific Writing Tools OUTCOMES After completing this experiment, the student should be able to: insert a variety of mathematical equations into a Word document. draw line structures of

More information

Week 8 Cookbook: Review and Reflection

Week 8 Cookbook: Review and Reflection : Review and Reflection Week 8 Overview 8.1) Review and Reflection 8.2) Making Intelligent Maps: The map sheet as a blank canvas 8.3) Making Intelligent Maps: Base layers and analysis layers 8.4) ArcGIS

More information

Modeling the Motion of a Projectile in Air

Modeling the Motion of a Projectile in Air In this lab, you will do the following: Modeling the Motion of a Projectile in Air analyze the motion of an object fired from a cannon using two different fundamental physics principles: the momentum principle

More information

PHYSICS LAB FREE FALL. Date: GRADE: PHYSICS DEPARTMENT JAMES MADISON UNIVERSITY

PHYSICS LAB FREE FALL. Date: GRADE: PHYSICS DEPARTMENT JAMES MADISON UNIVERSITY PHYSICS LAB FREE FALL Printed Names: Signatures: Date: Lab Section: Instructor: GRADE: PHYSICS DEPARTMENT JAMES MADISON UNIVERSITY Revision August 2003 Free Fall FREE FALL Part A Error Analysis of Reaction

More information

Coastal Emergency Risks Assessment - CERA Real-Time Storm Surge and Wave Visualization Tool

Coastal Emergency Risks Assessment - CERA Real-Time Storm Surge and Wave Visualization Tool Coastal Emergency Risks Assessment - CERA Real-Time Storm Surge and Wave Visualization Tool Introduction This document provides guidance for using the Coastal Emergency Risks Assessment (CERA) visualization

More information

In this activity, students will compare weather data from to determine if there is a warming trend in their community.

In this activity, students will compare weather data from to determine if there is a warming trend in their community. Overview: In this activity, students will compare weather data from 1910-2000 to determine if there is a warming trend in their community. Objectives: The student will: use the Internet to locate scientific

More information

Washtenaw Community College Comprehensive Report. GLG 104 Weather Effective Term: Fall 2012

Washtenaw Community College Comprehensive Report. GLG 104 Weather Effective Term: Fall 2012 Washtenaw Community College Comprehensive Report GLG 104 Weather Effective Term: Fall 2012 Course Cover Division: Math, Science and Health Department: Physical Sciences Discipline: Geology Course Number:

More information

Institutional Research with Public Data and Open Source Software

Institutional Research with Public Data and Open Source Software 2017 Institutional Research with Public Data and Open Source Software DUE1304591, 1644409, 1700496 Opinions expressed are those of the authors and not necessarily those of the National Science Foundation.

More information

Introduction to the College of DuPage NEXLAB Website

Introduction to the College of DuPage NEXLAB Website Introduction to the College of DuPage NEXLAB Website The purpose of this lab is to familiarize yourself with our website so that you will have an easier time following along in class and will be able to

More information

A Hurricane Outlook for the 21st Century.

A Hurricane Outlook for the 21st Century. A Hurricane Outlook for the 21st Century. Hugh Willoughby Florida International University Cat Winds Effects One 74-95 mph No real damage to building structures. Two Three Four Five 96-110 mph 111-130

More information

Formulas. People = Area. Mass Density = Volume. Population Density. Absolute change = New value Old value. Relative change Old value

Formulas. People = Area. Mass Density = Volume. Population Density. Absolute change = New value Old value. Relative change Old value Formulas Mass Density = Volume Population Density People = Area Absolute change = New value Old value Relative change New value Old value = 100% Old value Absolute difference = Compared value Reference

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

ERTH 365 Homework #2: Hurricane Harvey. 100 points

ERTH 365 Homework #2: Hurricane Harvey. 100 points ERTH 365 Homework #2: Hurricane Harvey 100 points Due by 6pm, Tuesday 30 October 2018, ELECTRONIC SUBMISSON BY EMAIL ONLY BY 6PM (send to klevey@sfsu.edu) (acceptable formats: MS Word, Google Doc, plain

More information

GIS 2010: Coastal Erosion in Mississippi Delta

GIS 2010: Coastal Erosion in Mississippi Delta 1) Introduction Problem overview To what extent do large storm events play in coastal erosion rates, and what is the rate at which coastal erosion is occurring in sediment starved portions of the Mississippi

More information

Unit 7 Trigonometry Project Name Key Project Information

Unit 7 Trigonometry Project Name Key Project Information Unit 7 Trigonometry Project Name Key Project Information What is it? This project will be a series of tasks that you must complete on your own. Specific instructions are given for each task, but all must

More information

Harvard Life Science Outreach December 7, 2017 Measuring ecosystem carbon fluxes using eddy covariance data ACTIVITIES I. NAME THAT ECOSYSTEM!

Harvard Life Science Outreach December 7, 2017 Measuring ecosystem carbon fluxes using eddy covariance data ACTIVITIES I. NAME THAT ECOSYSTEM! Harvard Life Science Outreach December 7, 2017 Measuring ecosystem carbon fluxes using eddy covariance data ACTIVITIES I. NAME THAT ECOSYSTEM! Objective: Distinguish ecosystems (tropical forest vs. temperate

More information

mylab: Chemical Safety Module Last Updated: January 19, 2018

mylab: Chemical Safety Module Last Updated: January 19, 2018 : Chemical Safety Module Contents Introduction... 1 Getting started... 1 Login... 1 Receiving Items from MMP Order... 3 Inventory... 4 Show me Chemicals where... 4 Items Received on... 5 All Items... 5

More information

Free Response Questions Included in Training Module

Free Response Questions Included in Training Module Free Response Questions Included in Training Module Copyright 2011 Laying the Foundation, Inc. All right reserved. The materials included in these files are intended for noncommercial use by educators

More information

Creating Empirical Calibrations

Creating Empirical Calibrations 030.0023.01.0 Spreadsheet Manual Save Date: December 1, 2010 Table of Contents 1. Overview... 3 2. Enable S1 Calibration Macro... 4 3. Getting Ready... 4 4. Measuring the New Sample... 5 5. Adding New

More information