The RadioSonde Package

Size: px
Start display at page:

Download "The RadioSonde Package"

Transcription

1 The RadioSonde Package November 17, 2004 Version Date Title Tools for plotting skew-t diagrams and wind profiles Author Tim Hoar, Eric Gilleland, Doug Nychka Maintainer Tim Hoar RadioSonde is a collection of programs for reading and plotting SKEW-T,log p diagrams and wind profiles for data collected by radiosondes (the typical weather balloon-borne instrument), which we will call "flights", "sondes", or "profiles" throughout the associated documentation. The raw data files are in a common format that has a header followed by specific variables. Use "help(examplesonde)" for the full explanation of the data files. License GPL (Version 2 or later) URL R topics documented: ExampleSonde PWV RadioSonde internal getsonde plotsonde plotwind sample.sonde skewt.axis skewt.lines skewt.points station.symbol Index 15 1

2 2 ExampleSonde ExampleSonde Example Sonde/Balloon/Profiler Data This data was collected by a radiosonde which was carried aloft by a weather balloon. This data was collected as part of a special field program, but the instrument and data formats are very common in the atmospheric community. Fundamentally; temperature, pressure, and humidity sensors are bundled with a radio transmitter and are either sent aloft on a balloon (rawindsonde) or tied to a small parachute and dropped from a plane (dropsonde). Either way, the location of the sonde is observed (either visually or with GPS), the data from the radio transmitter recorded, and the result is an ascii file that contains a header (of varying length) with descriptive information followed by a table of information. Format For rawindsondes, the first entry for the table is actually the surface data from the weather station, but the remaining entries are from the sonde. Also, the wind is inferred from the position of the balloon. Since this is real data, there are missing values which arise all the time. If you get a profile without missing values, you can be sure it is synthetic or interpolated. The datastreme ends when the operator calls it quits. This happens when a) the balloon breaks, or b) the radio reception has so many dropouts that is is not worth it anymore. Different fields have different missing flags. Where possible, we replace the "standard" missing flags with NaN data(examplesonde) ExampleSonde is the nominal output and is a mixture of ancillary data (contained in the first???? lines of the file), and the instrument measures and some derived fields that follow in a fixed-format table with an unknown number of lines. Field varname width format description units missing value [ 1] time 6 F6.1 Time Seconds [ 2] press 6 F6.1 Pressure Millibars [ 3] temp 5 F5.1 Dry-bulb Temperature Degrees C [ 4] dewpt 5 F5.1 Dew Point Temperature Degrees C [ 5] rhum 5 F5.1 Relative Humidity Percent [ 6] uwind 6 F6.1 U Wind Component Meters/Second [ 7] vwind 6 F6.1 V Wind Component Meters/Second [ 8] wspd 5 F5.1 Wind Speed Meters/Second [ 9] wdir 5 F5.1 Wind Direction Degrees [10] dz 5 F5.1 Ascension Rate Meters/Second [11] lon 8 F8.3 Longitude Degrees [12] lat 7 F7.3 Latitude Degrees [13] range 5 F5.1 Variable (see below) [14] angle 5 F5.1 Variable (see below) [15] alt 7 F7.1 Altitude Meters [16] qp 4 F4.1 QC flag for Pressure Code (see below) 99.0 [17] qt 4 F4.1 QC flag for Temperature Code (see below) 99.0

3 PWV 3 [18] qh 4 F4.1 QC flag for Humidity Code (see below) 99.0 [19] qu 4 F4.1 QC flag for U Component Code (see below) 99.0 [20] qv 4 F4.1 QC flag for V Component Code (see below) 99.0 [21] quv 4 F4.1 QC flag for Ascension Rate Code (see below) 99.0 The missing value flags are in brackets []. Fields 13 and 14 are variable because depending on the sounding system the variables used in these positions can vary. Fields 16 through 21 contain the Quality Control information (flags) generated at JOSS. These flags are based on the automated or visual checks made. The JOSS QC flag codes are as follows: 99.0 Unchecked (QC information is missing. ) ( UNCHECKED ) 1.0 Checked, datum seems physically reasonable. ( GOOD ) 2.0 Checked, datum seems questionable on physical basis. ( MAYBE ) 3.0 Checked, datum seems to be in error. ( BAD ) 4.0 Checked, datum is interpolated. ( ESTIMATED ) 9.0 Checked, datum was missing in original file. ( MISSING ) Source getsonde, plotsonde, skewt.lines, skewt.points sample.sonde <- getsonde(filename) PWV Precipitable Water Vapor Calculates precipitable water (in mm) up to minp (minimum pressure) using dew-point temperature (td) and temperature (temp) (both in degrees C). PWV(sonde = NULL, press, td, temp, minp = 400)

4 4 RadioSonde internal sonde press td temp minp Sonde data read in using getsonde function. Pressure (only used if sonde is NULL) Dew-point temperature (in deg C) (only used if sonde is NULL) Temperature (in deg C) (only used if sonde is NULL) Minimum Pressure Value single numeric value is returned. Author(s) Junhong Wang getsonde, td.to.q # Example 1 sample.sonde <- getsonde(filename) ###### # OK, now find precipitable water vapor. PWV( sample.sonde) RadioSonde internal RadioSonde internal and secondary functions Listed below are supporting functions for the major methods in RadioSonde. satlft(thw, p) skewt.data skewtx(temp, ycoord) skewty(pres) sonde.data

5 getsonde 5 td.to.q(temp, td, p) wobf getsonde read a radiosonde file to an R dataframe. getsonde takes a common radiosonde data file and reads it in as an R dataframe. getsonde(filename, datakey="------", varkey=" Time", unitkey=" sec") filename datakey varkey unitkey Full path and file name of radiosonde data. character string identifying the line preceeding the datastream. The string gets compared to the first N characters of each line, so all whitespace is important! character string identifying the line containing the variable names. The string gets compared to the first N characters of each line, so all whitespace is important! character string identifying the line containing the units of the variables. The string gets compared to the first N characters of each line, so all whitespace is important! Details Value getsonde assumes the data is in a very common format for radiosonde data. The files are typically ASCII files with a header of unknown length stating such things as the location and time of the data collection etc. Appended to this is a table of data where each column is a particular quantity and each row corresponds to the time of the observation. This typically has a header identifying the quantity in each of the columns and is separated from the data by a particular character string. The location of this string in the file is crucial in deciphering the start of the datastream from the metadata. For much more about the file format, go to RadioSonde or look at the example in RadioSonde/data/ExampleSonde.txt Returns a dataframe with the following items, if present in the input file. Note that each of these items can be present in any order in the input file. time time in seconds since weather balloon launched or recording begins. press Pressure in mb. temp Dry-bulb Temperature in degrees C. dewpt Dew point temperature in degrees C.

6 6 getsonde rhum Relative Humidity (Percent). uwind East-West wind component (m/s). vwind North-South wind component (m/s). wspd Wind speed (m/s). wdir Wind direction (deg.). dz Ascension rate of weather balloon (m/s). lon Longitude of weather balloon. lat Latitude of weather balloon. rng Range (see warning below) az Azimuth of weather balloon from originating station (see warning below) alt Altitude of weather balloon (m). qp Quality Control (QC) flag for pressure (see note below) qt QC flag for temperature (see note below) qh QC flag for humidity (see note below) qu QC flag for U Component (see note below) qv QC flag for V Component (see note below) quv QC flag for Ascension rate (see note below) If the units are avialable in the datafile, they are included in the dataframe as the attribute units. Rather than throw away the original header information, which usually contains valuable metadata, it is included as another attribute: metadata. Warning Note The connotation of fields is not exactly standard. Different recording systems use these fields in different ways. Hence, they cannot be automatically interpreted without knowledge of the recording system. The Quality Control information (flags): qp, qt, qh, qu, qv, and quv are generated at JOSS are based on the automated or visual checks made. The JOSS QC flags are as follows: 99.0 means it is unchecked, 1.0 implies datum seems physically reasonable (good), 2.0 implies datum seems questionable on physical basis (maybe), 3.0 implies datum seems to be in error (bad), 4.0 implies datum is interpolated (estimated), and 9.0 implies datum was missing in original file (missing). Author(s) Tim Hoar, Eric Gilleland, Doug Nychka plotsonde, skewt.points, skewt.lines

7 plotsonde 7 # Read a typical radiosonde (ASCII) datafile, headers and all. # The datakey,varkey,and unitkey arguments come from examining # the datafile. The whitespace is important. datakey <- "------" varkey <- " Time" unitkey <- " sec" sample.sonde <- getsonde(filename,datakey,varkey,unitkey) attr(sample.sonde,"units") attr(sample.sonde,"metadata") plotsonde(sample.sonde,title=filename) # # Read the same radiosonde dataset, but ignore the units... # datakey <- "------" varkey <- " Time" sample.sonde <- getsonde(filename,datakey,varkey) attr(sample.sonde,"metadata") plotsonde Creates a SKEW-T, log p diagram for a radiosonde dataframe. Creates a SKEW-T, log p diagram with dry-bulb temperature and dewpoint temperature traces versus (log) pressure. Optionally plots the vertical wind profile using wind barbs. plotsonde(dataframe, skewt=true, winds=false, site="", title="", windplot=null, s=3, col=c(1, 2),... ) dataframe skewt winds site title windplot s Value col R dataframe of a radiosonde dataset (as created by getsonde) Logical value. If false, will not plot the SKEW-T, log p diagram. Logical value. If false, will not plot the winds profile. Optional character to add to plot title. Title for plot (must be a character value). 4X1 numeric vector that gives the position of wind profile plot (next to SKEW- T diagram). Only used if it is desired to have this plot in a different position. Generally, the default NULL is used and the placement is chosen automatically. Size of winds profile plot. Usual plotting parameter.... Other optional plotting parameters. No value returned. Creates a plot.

8 8 plotwind Author(s) Tim Hoar, Eric Gilleland, Doug Nychka References 1. Department of Defense, 1969, "USAF SKEW-T, log p DIAGRAM," DOD-WPC , Aeronautical Chart and Information Center, United States Air Force, St. Louis, Missouri List, R.J. (editor), 1958, Smithsonian Meteorological Tables, Smithsonian Institute, Washington, D.C. 3. Nordquist, W.S., 1973, "Numerical Approximations of Selected Meteorological Parameters for Cloud Physics Problems," ECOM-5475, Atmospheric Sciences Laboratory, US Army Electronics Command, White Sands Missile Range, New Mexico Stipanuk, G.S., 1973, "Algorithms for Generating a SKEW-T, log p Diagram and Computing Selected Meteorological Quantities," American Sciences Laboratory, US Army Electronics Command, White Sands Missile Range, New Mexico getsonde, skewt.axis, skewt.lines, skewt.points # Example 1 sample.sonde <- getsonde(filename) plotsonde(sample.sonde) plotwind Winds Profile Plot Creates a wind profile in the standard atmospheric notation. Each full barb = 10 m/s, half barb = 5 m/s, and a filled triangle for 50 m/s. The maximum wind speed that can be plotted without amending the program is 65 m/s. plotwind(dataframe, size=5, ylim=c(1050, 100), legend=false) dataframe size ylim legend Data frame for sounding data, must have components for wind speed wspd, wind direction dir, and pressure press. change the thickness of the plotted lines plot extent, in units of pressure explains wind barb strategy

9 sample.sonde 9 Details Value the dataframe must have components for wind speed wspd, wind direction dir, and pressure press. Missing values may be coded as either NA or 999. and are not plotted. The standard atmospheric wind sybmol is a vector of fixed length with barbs proportional to wind speed. A full barb for each 10 m/s, half barbs for 5 m/s and a triangular barb for 50 m/s. None creates a plot. Author(s) Eric Gilleland, Tim Hoar, Doug Nychka getsonde, plotsonde # Example 1: sample.sonde <- getsonde(filename) plotwind(sample.sonde) # Example 2: plotwind(sample.sonde, size = 7, legend=true) sample.sonde Example R dataframe for radiosonde observations Format The sample.sonde data frame has 461 rows and 21 columns. The columns are different physical measurements made during the balloon s ascent. data("sample.sonde") This data frame contains the following named components: time press temp dewpt rh uwind vwind wspd dir Time in seconds from the ballon s release, a numeric vector. Pressure (mb), a numeric vector Dry-bulb Temperature (deg. C), a numeric vector Dew point temperaure (deg. C), a numeric vector Relative humidity (%), a numeric vector East-West component of the wind, a numeric vector North-South component of the wind, a numeric vector wind speed (m/s), a numeric vector Wind direction, a numeric vector

10 10 skewt.axis dz lon lat rng az alt qp qt qh qu qv quv Ascension rate (m/s), a numeric vector Longitude, a numeric vector Latitude, a numeric vector range, a numeric vector azimuth (angle along horizon), a numeric vector altitude (m), a numeric vector QC flag for pressure, a numeric vector QC flag for temperature, a numeric vector QC flag for humidity, a numeric vector QC flag for U component, a numeric vector QC flag for V component, a numeric vector QC flag for ascension rate, a numeric vector Note Quality Control (QC) flags are generated locally at JOSS based on either automated or visual checks made implies the QC information is missing, 1.0 implies datum seems physically reasonable (good), 2.0 implies datum questionable on a physical basis (maybe), 3.0 implies datum seems to be in error (bad), 4.0 implies datum interpolated (estimated), 9.0 implies datum missing in original file. getsonde, skewt.lines, skewt.points, plotsonde skewt.axis Draws a SKEW-T, log p axis. Draws a SKEW-T, log p axis. This is the standard axis for interpreting atmospheric sounding profiles like those collected by the instrument carried aloft by a weather balloon (radiosonde). Use skewt.lines or skewt.points to layer information on top of the skewt axis. skewt.axis(brown="brown", GREEN="green", redo=false,... ) BROWN GREEN redo Color of lines for both Temperature (solid skewed) and Pressure (dashed horizontal) Color of lines for dry adiabats (solid) and constant mixing ratio (dashed) flag to generate the adiabats, should skewt.data become corrupt. The adiabats are the result of an iterative process and to make smooth curves, you need a lot of points. Hence this is time-consuming, so [FALSE] is the preferred value.... The usual plot parameters.

11 skewt.lines 11 Details Radiosondes record temperature, humidity and winds. They can be lifted by weather balloons, dropped from aircraft, there is even something called a glidersonde. The data collected by radiosondes are plotted versus pressure/height to give details on the vertical structure of the atmosphere. The type of plot is called a SKEW-T, log p diagram. skewt.axis creates the traditional axis for a SKEW-T, log p diagram, including moist and dry adiabats, etc... Generating the necessary plot data is time-consuming, so there is an option to read from a specific dataset that Doug will change. Value Returns the par()$plt values, which are used by plotsonde if you choose to plot the wind profile adjacent to the skewt axis. Author(s) Tim Hoar getsonde, plotsonde, skewt.lines, skewt.points # draw a background, then # draw the temperature (with a solid line) in color 6 # draw the dewpoint in color 7 # overlay the temperature observations in a different color # you get the point... # sample.sonde <- getsonde(filename) skewt.axis( mar=c(5.1, 1.1, 2.1, 5.1) ) skewt.lines( sample.sonde$temp, sample.sonde$press, col = 6) skewt.lines( sample.sonde$dewpt, sample.sonde$press, col = 7) skewt.points(sample.sonde$temp, sample.sonde$press, col = 3) skewt.points(sample.sonde$dewpt, sample.sonde$press, col = 4) # # Changing the moist adiabats: you must edit the this-is-escaped-code{ function # directly and then capture the output in this-is-escaped-codenormal-bracket36bracket-nor # subsequent calls. skewt.data <- skewt.axis(redo=true) skewt.axis() skewt.axis() skewt.lines Overlays data on a SKEW-T, log p axis Overlays observations as lines on a SKEW-T, log p axis (as created by skewt.axis).

12 12 skewt.points skewt.lines(temp, pressure,...) temp Temperature in degrees C. pressure Pressure in millibars... Any graphical arguments Details skewt.lines overlays observations on a SKEW-T, log p axis skewt.points, skewt.axis, plotsonde # draw a background, then # draw the temperature (with a solid line) in color 6 # draw the dewpoint in color 7 # overlay the temperature observations in a different color # you get the point... print(filename) sample.sonde <- getsonde(filename) skewt.axis() skewt.lines( sample.sonde$temp, sample.sonde$press, col = 6) skewt.lines( sample.sonde$dewpt, sample.sonde$press, col = 7) skewt.points(sample.sonde$temp, sample.sonde$press, col = 3) skewt.points(sample.sonde$dewpt, sample.sonde$press, col = 4) skewt.points Overlays data on a SKEW-T, log p axis Overlays observations on a SKEW-T, log p axis (as created by skewt.axis). skewt.points(temp, pressure,...) temp Temperature in degrees C. pressure Pressure in millibars... Any graphical arguments

13 station.symbol 13 Details skewt.points overlays observations on a SKEW-T, log p axis skewt.axis, skewt.lines, plotsonde # draw a background, then # draw the temperature (with a solid line) in color 6 # draw the dewpoint in color 7 # overlay the temperature observations in a different color # you get the point... sample.sonde <- getsonde(filename) skewt.axis() skewt.lines( sample.sonde$temp, sample.sonde$press, col = 6) skewt.lines( sample.sonde$dewpt, sample.sonde$press, col = 7) skewt.points(sample.sonde$temp, sample.sonde$press, col = 3) skewt.points(sample.sonde$dewpt, sample.sonde$press, col = 4) station.symbol Adds a meteorological surface station annotation to a plot. Adds a meteorological surface station annotation at the given coordinates. The annotation includes speed and direction of the wind, temperature, pressure, dewpoint... to a given plot. station.symbol(cx, cy, direction = 0, speed = 0, fill = 0, color = "green", temp = NULL, press = NULL, dewpt = NULL, circle=true, cex = 2) cx cy direction speed x coordinate for location of the annotation. y coordinate for the annotation. Wind direction. Wind speed. fill Fill for visibility: 0 = clear skies, 1 = 25% obscured, 2 = 50% obscured, 3 = 75% obscured, 4 = no visibility color Fill color. Used only when fill > 0 temp press Temperature value to plot symbol (must be a scalar). If NULL then no temperature value will be annotated. Pressure value to plot symbol (must be a scalar). If NULL then no pressure value will be annotated.

14 14 station.symbol dewpt circle cex Dewpoint Temperature value to plot symbol (must be a scalar). If NULL then no dewpoint value will be annotated. If TRUE, will plot the usual station symbol with a circle at its base. Usual plotting parameter. Value Adds to a plot. Author(s) Doug Nychka, Eric Gilleland plotsonde, plotwind, skewt.axis plot(0:1, 0:1, type="n") station.symbol(0.5, 0.5, direction=75, speed=30, fill=3, temp=31, press=987, dewpt=26)

15 Index Topic aplot plotsonde, 7 skewt.lines, 11 skewt.points, 12 station.symbol, 13 Topic datasets ExampleSonde, 1 sample.sonde, 9 Topic hplot plotsonde, 7 plotwind, 8 skewt.axis, 10 Topic internal RadioSonde internal, 4 Topic manip getsonde, 4 PWV, 3 Topic misc RadioSonde internal, 4 ExampleSonde, 1 getsonde, 3, 4, 8 11 plotsonde, 3, 6, 7, 9 12, 14 plotwind, 8, 14 PWV, 3 RadioSonde internal, 4 sample.sonde, 9 satlft (RadioSonde internal), 4 skewt.axis, 8, 10, 12, 14 skewt.data (RadioSonde internal), 4 skewt.lines, 3, 6, 8, 10, 11, 11, 12 skewt.points, 3, 6, 8, 10, 11, 12, 12 skewtx (RadioSonde internal), 4 skewty (RadioSonde internal), 4 sonde.data (RadioSonde internal), 4 station.symbol, 13 td.to.q (RadioSonde internal), 4 wobf (RadioSonde internal), 4 15

AT351 Lab Seven Skew-T Stability Analysis

AT351 Lab Seven Skew-T Stability Analysis AT351 Lab Seven Skew-T Stability Analysis Twice a day, all around the planet, small instrument packages called radiosondes are launched into the atmosphere using balloons. These instruments record the

More information

Fun with Weather Maps! (no, really stop laughing) AOSC 200 Tim Canty

Fun with Weather Maps! (no, really stop laughing) AOSC 200 Tim Canty Fun with Weather Maps! (no, really stop laughing) AOSC 200 Tim Canty Class Web Site: http://www.atmos.umd.edu/~tcanty/aosc200 Topics for today: Observations Station Model Temperature Maps Pressure Maps

More information

Observing Weather: Making the Invisible Visible. Dr. Michael J. Passow

Observing Weather: Making the Invisible Visible. Dr. Michael J. Passow Observing Weather: Making the Invisible Visible Dr. Michael J. Passow What Is Weather? Weather refers to the conditions of the atmosphere at a certain place and time. Weather differs from Climate, which

More information

Table 1-2. TMY3 data header (line 2) 1-68 Data field name and units (abbreviation or mnemonic)

Table 1-2. TMY3 data header (line 2) 1-68 Data field name and units (abbreviation or mnemonic) 1.4 TMY3 Data Format The format for the TMY3 data is radically different from the TMY and TMY2 data.. The older TMY data sets used columnar or positional formats, presumably as a method of optimizing data

More information

Temperature, Observations, and Maps AOSC 200 Tim Canty. Weather and Climate

Temperature, Observations, and Maps AOSC 200 Tim Canty. Weather and Climate Temperature, Observations, and Maps AOSC 200 Tim Canty Class Web Site: http://www.atmos.umd.edu/~tcanty/aosc200 Topics for today: Climate Weather Observations Weather Maps Lecture 03 Feb 5 2019 1 Weather

More information

Page 1. Name: 1) The graph below shows air temperature for an area near the Earth's surface during a 12-hour period.

Page 1. Name: 1) The graph below shows air temperature for an area near the Earth's surface during a 12-hour period. Name: 1) The graph below shows air temperature for an area near the Earth's surface during a 12-hour period. Which graph best illustrates the probable change in air pressure during the same time period?

More information

WORLD METEOROLOGICAL ORGANIZATION THE WMO TABLE DRIVEN CODES: THE 21 ST CENTURY UNIVERSAL OBSERVATION CODES

WORLD METEOROLOGICAL ORGANIZATION THE WMO TABLE DRIVEN CODES: THE 21 ST CENTURY UNIVERSAL OBSERVATION CODES WORLD METEOROLOGICAL ORGANIZATION THE WMO TABLE DRIVEN CODES: THE 21 ST CENTURY UNIVERSAL OBSERVATION CODES 1 THE WMO TABLE DRIVEN CODES: THE 21 ST CODES CENTURY UNIVERSAL OBSERVATION ABSTRACT The table

More information

The project that I originally selected to research for the OC 3570 course was based on

The project that I originally selected to research for the OC 3570 course was based on Introduction The project that I originally selected to research for the OC 3570 course was based on remote sensing applications of the marine boundary layer and their verification with actual observed

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

I. Objectives Describe vertical profiles of pressure in the atmosphere and ocean. Compare and contrast them.

I. Objectives Describe vertical profiles of pressure in the atmosphere and ocean. Compare and contrast them. ERTH 430: Lab #1: The Vertical Dr. Dave Dempsey Fluid Dynamics Pressure Gradient Force/Mass Earth & Clim. Sci. in Earth Systems SFSU, Fall 2016 (Tuesday, Oct. 25; 5 pts) I. Objectives Describe vertical

More information

WindNinja Tutorial 3: Point Initialization

WindNinja Tutorial 3: Point Initialization WindNinja Tutorial 3: Point Initialization 07/20/2017 Introduction Welcome to. This tutorial will step you through the process of running a WindNinja simulation that is initialized by location specific

More information

Lecture Ch. 6. Condensed (Liquid) Water. Cloud in a Jar Demonstration. How does saturation occur? Saturation of Moist Air. Saturation of Moist Air

Lecture Ch. 6. Condensed (Liquid) Water. Cloud in a Jar Demonstration. How does saturation occur? Saturation of Moist Air. Saturation of Moist Air Lecture Ch. 6 Saturation of moist air Relationship between humidity and dewpoint Clausius-Clapeyron equation Dewpoint Temperature Depression Isobaric cooling Moist adiabatic ascent of air Equivalent temperature

More information

NATS 101 Section 13: Lecture 3. Weather vs. Climate

NATS 101 Section 13: Lecture 3. Weather vs. Climate NATS 101 Section 13: Lecture 3 Weather vs. Climate Definition of Weather Weather: Condition of the atmosphere at a particular time and place. Comprised of: Air temperature: Degree of hotness or coldness

More information

Module 11: Meteorology Topic 3 Content: Weather Instruments Notes

Module 11: Meteorology Topic 3 Content: Weather Instruments Notes Introduction In order for meteorologists to accurately predict the weather, they take thousands of different weather measurements each day. Meteorologists need to use many tools in order to draw an accurate

More information

Weather Station Model

Weather Station Model Fun with Weather Maps! (no, really stop laughing) AOSC 200 Tim Canty Class Web Site: http://www.atmos.umd.edu/~tcanty/aosc200 Topics for today: Station Model Temperature Maps Pressure Maps Fronts Lecture

More information

Dr. Christopher M. Godfrey University of North Carolina at Asheville

Dr. Christopher M. Godfrey University of North Carolina at Asheville Surface and Upper-Air Observations Surface Observations Collect information for synoptic-scale weather Most surface observations are automated (e.g., Automated Surface Observing System) Also mesoscale

More information

Package weathercan. July 5, 2018

Package weathercan. July 5, 2018 Type Package Package weathercan July 5, 2018 Title Download Weather Data from the Environment and Climate Change Canada Website Version 0.2.7 Provides means for downloading historical weather data from

More information

CSU RAMS. Standard Input Formats for Pressure Coordinate and Observational Data (Data Prep Stage)

CSU RAMS. Standard Input Formats for Pressure Coordinate and Observational Data (Data Prep Stage) CSU RAMS Standard Input Formats for Pressure Coordinate and Observational Data (Data Prep Stage) This document contains detailed notes on how gridded pressure level datasets (such as NCEP-reanalysis, GFS

More information

WindNinja Tutorial 3: Point Initialization

WindNinja Tutorial 3: Point Initialization WindNinja Tutorial 3: Point Initialization 6/27/2018 Introduction Welcome to WindNinja Tutorial 3: Point Initialization. This tutorial will step you through the process of downloading weather station data

More information

MET 3502 Synoptic Meteorology. Lecture 5: Surface Weather Elements

MET 3502 Synoptic Meteorology. Lecture 5: Surface Weather Elements MET 3502 Synoptic Meteorology Lecture 5: Surface Weather Elements Surface Weather Elements Not observations of the surface, but Observations made by an observer (or instrument) at the surface Example:

More information

Construction and Interpretation of Weather Station Models

Construction and Interpretation of Weather Station Models Fall Semester Regents Earth Science John Dewey High School Mr. Klimetz Construction and Interpretation of Weather Station Models An Exercise in the Construction and Interpretation of Weather Station Models

More information

BUFR Table D - List of common sequences

BUFR Table D - List of common sequences BUFR Table D - List of common sequences Category of sequences 3 00 BUFR table entries sequences 3 01 Location and identification sequences 3 02 Meteorological sequences common to surface data 3 03 Meteorological

More information

Sensitivity of Convective Indices to Humidity Adjustments

Sensitivity of Convective Indices to Humidity Adjustments Sensitivity of Convective Indices to Humidity Adjustments M. E. Splitt University of Utah Salt Lake City, Utah R. A. Peppler Cooperative Institute for Mesoscale Meteorological Studies University of Oklahoma

More information

Weather vs. Climate. Tucson NWS homepage:

Weather vs. Climate. Tucson NWS homepage: Weather vs. Climate Tucson NWS homepage: www.nws.noaa.gov/twc/ A Weather Forecaster? Betty claims to know exactly when it s going to rain because her knee starts to hurt. Ms. Betty Martin of Newburgh,

More information

PLOTTING WEATHER DATA to perform a SURFACE ANALYSIS

PLOTTING WEATHER DATA to perform a SURFACE ANALYSIS PLOTTING WEATHER DATA to perform a SURFACE ANALYSIS The surface analysis permits one to identify and locate the large scale features of the sea level pressure field and the surface fronts. Isobars with

More information

Weather Unit. Daily Weather:

Weather Unit. Daily Weather: Satellites, Weather and Climate Lesson plan summary: Weather Created by: Richard Meyer Burlington High School, Burlington VT Grade Level: 9-12 Curriculum Target Benchmarks: Subject keywords: Weather, Unisys

More information

Instrument Cross-Comparisons and Automated Quality Control of Atmospheric Radiation Measurement Data

Instrument Cross-Comparisons and Automated Quality Control of Atmospheric Radiation Measurement Data Instrument Cross-Comparisons and Automated Quality Control of Atmospheric Radiation Measurement Data S. Moore and G. Hughes ATK Mission Research Santa Barbara, California Introduction Within the Atmospheric

More information

KEY. 7th Grade Science: Weather and Climate Core Assessment Study Guide

KEY. 7th Grade Science: Weather and Climate Core Assessment Study Guide KEY 7th Grade Science: Weather and Climate Core Assessment Study Guide Ch. 1 The Air Around You (pg. 6-26) 1. The chart on the right shows the percentage of gases that comprise our atmosphere. Use the

More information

Name: ATOC Homework #1 Due Tuesday February 8, 2010 BEGINNING OF CLASS!

Name: ATOC Homework #1 Due Tuesday February 8, 2010 BEGINNING OF CLASS! ATOC 1050-001 Homework #1 Due Tuesday February 8, 2010 BEGINNING OF CLASS! Instructions: Make sure that you answer all of the questions and complete all of the tables for maximum credit. Use appropriate

More information

Page 1. Name:

Page 1. Name: Name: 1) As the difference between the dewpoint temperature and the air temperature decreases, the probability of precipitation increases remains the same decreases 2) Which statement best explains why

More information

Three-dimensional Structure in Midlatitude Cyclones. ATMS 370 Due Friday, March 9, 2018

Three-dimensional Structure in Midlatitude Cyclones. ATMS 370 Due Friday, March 9, 2018 Three-dimensional Structure in Midlatitude Cyclones ATMS 370 Due Friday, March 9, 2018 In this lab, we exam a cross-section for a case that occurred in January 1996 and use backwards calculated trajectories

More information

ROAD WEATHER INFORMATION SYSTEM DEVICE TESTING LEVEL C

ROAD WEATHER INFORMATION SYSTEM DEVICE TESTING LEVEL C Page 1 of 11 Date: Jan. 05, 2009 This procedure outlines Level C device test to be performed on Road Weather Information System. Level C device testing demonstrates that each device is fully operational

More information

25.1 Air Masses. Section 25.1 Objectives

25.1 Air Masses. Section 25.1 Objectives Section 25.1 Objectives Explain how an air mass forms. List the four main types of air masses. Describe how air masses affect the weather of North America. Air Masses 25.1 Air Masses Differences in air

More information

IOP-2 Summary of Operations 03 June UTC 04 June UTC Authors: Market, Kastman

IOP-2 Summary of Operations 03 June UTC 04 June UTC Authors: Market, Kastman IOP-2 Summary of Operations 03 June 2014 2200 UTC 04 June 2014 1200 UTC Authors: Market, Kastman IOP-2 focused on the slow-moving warm front that extended east from a cyclone that was situated over eastern

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

McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6)

McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6) McIDAS-V Tutorial Displaying Point Observations from ADDE Datasets updated July 2016 (software version 1.6) McIDAS-V is a free, open source, visualization and data analysis software package that is the

More information

Christian Sutton. Microwave Water Radiometer measurements of tropospheric moisture. ATOC 5235 Remote Sensing Spring 2003

Christian Sutton. Microwave Water Radiometer measurements of tropospheric moisture. ATOC 5235 Remote Sensing Spring 2003 Christian Sutton Microwave Water Radiometer measurements of tropospheric moisture ATOC 5235 Remote Sensing Spring 23 ABSTRACT The Microwave Water Radiometer (MWR) is a two channel microwave receiver used

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

Department of Earth & Climate Sciences Spring 2016 Meteorology 260

Department of Earth & Climate Sciences Spring 2016 Meteorology 260 Department of Earth & Climate Sciences Spring 2016 Meteorology 260 Name Laboratory #9 Key: Joplin Tornado Day Subsynoptic, Thermodynamic, and Wind Shear Setting Part A: 1600 UTC Surface Chart Subsynoptic

More information

Science Olympiad Meteorology Quiz #1 Page 1 of 7

Science Olympiad Meteorology Quiz #1 Page 1 of 7 1) What is generally true about the stratosphere: a) Has turbulent updrafts and downdrafts. b) Has either a stable or increasing temperature profile with altitude. c) Where the auroras occur. d) Both a)

More information

Package SPADAR. April 30, 2017

Package SPADAR. April 30, 2017 Package SPADAR April 3, 217 Type Package Title Spherical Projections of Astronomical Data Version 1. Date 217-4-29 Author Alberto Krone-Martins Maintainer Alberto Krone-Martins Description

More information

Package rnmf. February 20, 2015

Package rnmf. February 20, 2015 Type Package Title Robust Nonnegative Matrix Factorization Package rnmf February 20, 2015 An implementation of robust nonnegative matrix factorization (rnmf). The rnmf algorithm decomposes a nonnegative

More information

4 Forecasting Weather

4 Forecasting Weather CHAPTER 2 4 Forecasting Weather SECTION Understanding Weather BEFORE YOU READ After you read this section, you should be able to answer these questions: What instruments are used to forecast weather? How

More information

National Climatic Data Center DATA DOCUMENTATION FOR DATA SET 6406 (DSI-6406) ASOS SURFACE 1-MINUTE, PAGE 2 DATA. July 12, 2006

National Climatic Data Center DATA DOCUMENTATION FOR DATA SET 6406 (DSI-6406) ASOS SURFACE 1-MINUTE, PAGE 2 DATA. July 12, 2006 DATA DOCUMENTATION FOR DATA SET 6406 (DSI-6406) ASOS SURFACE 1-MINUTE, PAGE 2 DATA July 12, 2006 151 Patton Ave. Asheville, NC 28801-5001 USA Table of Contents Topic Page Number 1. Abstract... 3 2. Element

More information

Workshop on Numerical Weather Models for Space Geodesy Positioning

Workshop on Numerical Weather Models for Space Geodesy Positioning Workshop on Numerical Weather Models for Space Geodesy Positioning Marcelo C. Santos University of New Brunswick, Department of Geodesy and Geomatics Engineering, Fredericton, NB Room C25 (ADI Room), Head

More information

1. The Basic X-Y Scatter Plot

1. The Basic X-Y Scatter Plot 1. The Basic X-Y Scatter Plot EXCEL offers a wide range of plots; however, this discussion will be restricted to generating XY scatter plots in various formats. The easiest way to begin is to highlight

More information

The Payerne Meteolabor Radiosonde

The Payerne Meteolabor Radiosonde The Payerne Meteolabor Radiosonde R. Philipona, G. Romanens, G. Levrat Federal Office of Meteorology and Climatology, CH-1530 Payerne, Switzerland Swiss Radiosonde Meteolabor SRS-C34 Temperature: Thermocouple

More information

Name SOLUTIONS T.A./Section Atmospheric Science 101 Homework #6 Due Thursday, May 30 th (in class)

Name SOLUTIONS T.A./Section Atmospheric Science 101 Homework #6 Due Thursday, May 30 th (in class) Name SOLUTIONS T.A./Section Atmospheric Science 101 Homework #6 Due Thursday, May 30 th (in class) 1. General Circulation Briefly describe where each of the following features is found in the earth s general

More information

Monitoring of Precipitable Water Vapor Over the Czech Republic by GPS

Monitoring of Precipitable Water Vapor Over the Czech Republic by GPS Monitoring of Precipitable Water Vapor Over the Czech Republic by GPS Ing. Michal Kačmařík Institute of Geoinformatics, Faculty of Mining and Geology, VŠB Technical Univerzity of Ostrava, 17. listopadu

More information

Performance of Radar Wind Profilers, Radiosondes, and Surface Flux Stations at the Southern Great Plains (SGP) Cloud and Radiation Testbed (CART) Site

Performance of Radar Wind Profilers, Radiosondes, and Surface Flux Stations at the Southern Great Plains (SGP) Cloud and Radiation Testbed (CART) Site Performance of Radar Wind Profilers, Radiosondes, and Surface Flux Stations at the Southern Great Plains (SGP) Cloud and Radiation Testbed (CART) Site R. L. Coulter, B. M. Lesht, M. L. Wesely, D. R. Cook,

More information

Chapter 5: Weather. Only Section 1: What is Weather?

Chapter 5: Weather. Only Section 1: What is Weather? Chapter 5: Weather Only Section 1: What is Weather? Find the definitions of: Meteorology, meteorologist, weather, climate Not in book? Use the dictionaries **Meteorology - Meteorology is the study of the

More information

Met Office Intercomparison of Vaisala RS92 and RS41 Radiosondes

Met Office Intercomparison of Vaisala RS92 and RS41 Radiosondes Met Office Intercomparison of Vaisala RS92 and RS41 Radiosondes Camborne, United Kingdom, 7 th 19 th November 2013 David Edwards, Graeme Anderson, Tim Oakley, Peter Gault 12/02/14 FINAL_Branded_Vaisala_RS41_RS92_Report_11

More information

DATA SOURCES AND INPUT IN GIS. By Prof. A. Balasubramanian Centre for Advanced Studies in Earth Science, University of Mysore, Mysore

DATA SOURCES AND INPUT IN GIS. By Prof. A. Balasubramanian Centre for Advanced Studies in Earth Science, University of Mysore, Mysore DATA SOURCES AND INPUT IN GIS By Prof. A. Balasubramanian Centre for Advanced Studies in Earth Science, University of Mysore, Mysore 1 1. GIS stands for 'Geographic Information System'. It is a computer-based

More information

Section 7: Hazard Avoidance

Section 7: Hazard Avoidance 7.1 In-Flight Hazard Awareness Section 7: Hazard Avoidance As technology improves, pilots have more and more real-time information within reach in all phases of flight. Terrain proximity, real-time weather

More information

STATION If relative humidity is 60% and saturation vapor pressure is 35 mb, what is the actual vapor pressure?

STATION If relative humidity is 60% and saturation vapor pressure is 35 mb, what is the actual vapor pressure? STATION 1 Vapor pressure is a measure of relative humidity and saturation vapor pressure. Using this information and the information given in the problem, answer the following question. 1. If relative

More information

Mesoscale Meteorology Assignment #3 Q-G Theory Exercise. Due 23 February 2017

Mesoscale Meteorology Assignment #3 Q-G Theory Exercise. Due 23 February 2017 Mesoscale Meteorology Assignment #3 Q-G Theory Exercise 1. Consider the sounding given in Fig. 1 below. Due 23 February 2017 Figure 1. Skew T-ln p diagram from Tallahassee, FL (TLH). The observed temperature

More information

Comparison of Vaisala Radiosondes RS41 and RS92 WHITE PAPER

Comparison of Vaisala Radiosondes RS41 and RS92 WHITE PAPER Comparison of Vaisala Radiosondes RS41 and RS92 WHITE PAPER Table of Contents CHAPTER 1 Introduction... 4 CHAPTER 2 Key Improvements in RS41... 5 CHAPTER 3 RS41 and RS92 Comparison Tables... 6 CHAPTER

More information

ATOC 1050 Summer Homework 1. Due: June 8, 2011

ATOC 1050 Summer Homework 1. Due: June 8, 2011 ATOC 1050 Summer 2011 Homework 1 Due: June 8, 2011 Make sure your answers are legible, grammatically correct, and have units associated with them if applicable. Each question can be answered in a few sentences.

More information

London Heathrow Field Site Metadata

London Heathrow Field Site Metadata London Heathrow Field Site Metadata Field Site Information Name: Heathrow src_id (Station ID number): 708 Geographic Area: Greater London Latitude (decimal ): 51.479 Longitude (decimal ): -0.449 OS Grid

More information

Topic 1 The Atmosphere and Atmospheric Variables

Topic 1 The Atmosphere and Atmospheric Variables Name Notes: Topic 1 The Atmosphere Regents Earth Science Topic 1 The Atmosphere and Atmospheric Variables What is the atmosphere? Meteorology is the study of A. Structure of the Atmosphere: What two gases

More information

Solutions to Comprehensive Final Examination Given on Thursday, 13 December 2001

Solutions to Comprehensive Final Examination Given on Thursday, 13 December 2001 Name & Signature Dr. Droegemeier Student ID Meteorology 1004 Introduction to Meteorology Fall, 2001 Solutions to Comprehensive Final Examination Given on Thursday, 13 December 2001 BEFORE YOU BEGIN!! Please

More information

MODULE 4.3A SHORT-RANGE FORECASTING OF WEATHER ELEMENTS. Temperature

MODULE 4.3A SHORT-RANGE FORECASTING OF WEATHER ELEMENTS. Temperature MODULE 4.3A SHORT-RANGE FORECASTING OF WEATHER ELEMENTS Temperature Table of Contents TABLE OF CONTENTS 1 1. INTRODUCTION 2 2. SITE/PROCESS APPROACH: 2 3. TRAJECTORY/PROCESS APPROACH: 2 4. PATTERN/PROCESS

More information

Complex Terrain (EDUCT) experiment, conducted by the National Center for Atmospheric

Complex Terrain (EDUCT) experiment, conducted by the National Center for Atmospheric Alex Ameen Shenandoah Trip Paper I visited Shenandoah National Park on April 11, 2009 to investigate the Education in Complex Terrain (EDUCT) experiment, conducted by the National Center for Atmospheric

More information

RF Propagation Characteristics on Leg 1 of July 06 OC3570 Cruise: Comparison of cruise sounding data, climatology and model data.

RF Propagation Characteristics on Leg 1 of July 06 OC3570 Cruise: Comparison of cruise sounding data, climatology and model data. RF Propagation Characteristics on Leg 1 of July 06 OC3570 Cruise: Comparison of cruise sounding data, climatology and model data. LCDR Bob Jones Introduction and Background The purpose of this project

More information

The Water Cycle. Water in the Atmosphere AOSC 200 Tim Canty. Class Web Site:

The Water Cycle. Water in the Atmosphere AOSC 200 Tim Canty. Class Web Site: Water in the Atmosphere AOSC 200 Tim Canty Class Web Site: http://www.atmos.umd.edu/~tcanty/aosc200 Topics for today: Latent Heat Evaporation & Saturation Relative Humidity Dew Point Lecture 11 Oct 2 2018

More information

Double Star Observations

Double Star Observations Double Star Observations Canopus now includes enhanced features for measurnig double stars. This includes easier setting of the reference position (the primary star) as well as recording the observations

More information

The Causes of Weather

The Causes of Weather Meteorology The Causes of Weather Where does the weather in our country come from? * Which air masses determine the weather in our country? * Weather or Climate? *The current state of the atmosphere *

More information

MASTERY ASSIGNMENT 2015

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

More information

Michael F. Stringfellow

Michael F. Stringfellow Michael F. Stringfellow Thermals Columns or bubbles of warm air that rise from the ground when it is heated by the sun Soaring Sustained engineless flight using natural sources of lift Boundary or mixing

More information

Meteorology Unit Study Guide

Meteorology Unit Study Guide Name: Key Pd. Date: 1. Define meteorology Meteorology Unit Study Guide Study of the atmosphere including weather and weather patterns 2. The most abundant gas in the atmosphere by volume is. This gas comprises

More information

Guided Notes Weather. Part 1: Weather Factors Temperature Humidity Air Pressure Winds Station Models

Guided Notes Weather. Part 1: Weather Factors Temperature Humidity Air Pressure Winds Station Models Guided Notes Weather Part 1: Weather Factors Temperature Humidity Air Pressure Winds Station Models. 1. What is weather? Weather: short-term atmospheric conditions in a specific area at a specific time

More information

ESCI 1010 Lab 1 Introduction to Weather Data

ESCI 1010 Lab 1 Introduction to Weather Data ESCI 1010 Lab 1 Introduction to Weather Data Before Lab: Review pages 1-51 in your Weather and Climate textbook. Pay special attention to the sections entitled Location and Time on Earth and Some Weather

More information

Introduction to upper air measurements with radiosondes and other in situ observing systems. John Nash, C. Gaffard,R. Smout and M.

Introduction to upper air measurements with radiosondes and other in situ observing systems. John Nash, C. Gaffard,R. Smout and M. Introduction to upper air measurements with radiosondes and other in situ observing systems John Nash, C. Gaffard,R. Smout and M. Smees Observation Development, Met Office, Exeter Integrated Ground-based

More information

COMPOSITION OF THE ATMOSPHERE

COMPOSITION OF THE ATMOSPHERE Name Air COMPOSITION OF THE ATMOSPHERE 1. What are the two most abundant gases in the atmospherere? 2. Why do you think the percentage of water vapor in the air varies? 3. Would you classify carbon dioxide

More information

7. The weather instrument below can be used to determine relative humidity.

7. The weather instrument below can be used to determine relative humidity. 1. What is the dewpoint temperature when the dry-bulb temperature is 12 C and the wet-bulb temperature is 7 C? A) 1 C B) -2 C C) -5 C D) 4 C 2. A parcel of air has a dry-bulb temperature reading of 16

More information

BUFR format in a nutshell

BUFR format in a nutshell BUFR format in a nutshell Enrico Fucile Enrico.Fucile@ecmwf.int ECMWF February 19, 2018 WMO Binary Codes BUFR (Binary Universal Form for the Representation of meteorological data) is a flexible binary

More information

Maps and Remote Sensing AOSC 200 Tim Canty

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

More information

Weather Practice Test

Weather Practice Test Name: Weather Practice Test 1. The diagram below shows weather instruments A and B. Which table correctly indicates the name of the weather instrument and the weather variable that it measures? A) B) C)

More information

GEO165 LAB EXERCISE #3

GEO165 LAB EXERCISE #3 GEO165 LAB EXERCISE #3 Tools of the Meteorologist Part 2: Fronts Introduction 1. A front is the leading edge of a new air mass invading a region. Because Vilhelm Bjerknes was reminded of the bloody battle

More information

Weather, Air Masses, Fronts and Global Wind Patterns. Meteorology

Weather, Air Masses, Fronts and Global Wind Patterns. Meteorology Weather, Air Masses, Fronts and Global Wind Patterns Meteorology Weather is what conditions of the atmosphere are over a short period of time. Climate is how the atmosphere "behaves" over long periods

More information

5.1 Use of the Consensus Reference Concept for Testing Radiosondes. Joe Facundo and Jim Fitzgibbon, Office of Operational Systems,

5.1 Use of the Consensus Reference Concept for Testing Radiosondes. Joe Facundo and Jim Fitzgibbon, Office of Operational Systems, 5. Use of the Consensus Reference Concept for Testing Radiosondes Joe Facundo and Jim Fitzgibbon, Office of Operational Systems, Silver Spring, Maryland and Sterling, Virginia. INTRODUCTION The U. S. has

More information

Lecture 07 February 10, 2010 Water in the Atmosphere: Part 1

Lecture 07 February 10, 2010 Water in the Atmosphere: Part 1 Lecture 07 February 10, 2010 Water in the Atmosphere: Part 1 About Water on the Earth: The Hydrological Cycle Review 3-states of water, phase change and Latent Heat Indices of Water Vapor Content in the

More information

Department of Earth & Climate Sciences Spring 2016 Meteorology 260

Department of Earth & Climate Sciences Spring 2016 Meteorology 260 Department of Earth & Climate Sciences Spring 2016 Meteorology 260 Name Laboratory #9: Joplin Tornado Day Subsynoptic, Thermodynamic, and Wind Shear Setting Part A: 1600 UTC Surface Chart Subsynoptic Analyses

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

Name: Date: Period: MATCHING: Select the letter of the word in Column B that best matches the phrases in Column A.

Name: Date: Period: MATCHING: Select the letter of the word in Column B that best matches the phrases in Column A. Name: Date: Period: MATCHING: Select the letter of the word in Column B that best matches the phrases in Column A. COLUMN A 1. a unit of atmospheric pressure 2. a line joining points of equal air pressure

More information

Science Olympiad Meteorology Quiz #2 Page 1 of 8

Science Olympiad Meteorology Quiz #2 Page 1 of 8 1) The prevailing general direction of the jet stream is from west to east in the northern hemisphere: 2) Advection is the vertical movement of an air mass from one location to another: 3) Thunderstorms

More information

Monteverdi Metr 201 Quiz #4 100 pts.

Monteverdi Metr 201 Quiz #4 100 pts. DEPARTMENT OF GEOSCIENCES Name San Francisco State University April 27, 2012 Monteverdi Metr 201 Quiz #4 100 pts. A. Definitions. (5 points each for a total of 25 points in this section). (a) Convective

More information

Weather and the Atmosphere. RAP Short Course

Weather and the Atmosphere. RAP Short Course Weather and the Atmosphere RAP Short Course Syllabus 1) Vertical structure and composition of the atmosphere, basic weather variables 2) Warming Earth and its atmosphere the diurnal and seasonal cycles

More information

Atmospheric Circulation and the Global Climate System A map-based exploration

Atmospheric Circulation and the Global Climate System A map-based exploration Name: Answer key Atmospheric Circulation and the Global Climate System A map-based exploration Introduction: Exploration of Earth s radiation budget (Units 4 and 5) reveals regions of positive and negative

More information

Predicting Contrails Using an Appleman Chart [Student]

Predicting Contrails Using an Appleman Chart [Student] Page 1 of 13 Predicting Contrails Using an Appleman Chart [Student] Background: Military planners have been interested in condensation trail (contrail) forecasts since World War II. Contrails can make

More information

Introduction to Skew-T Diagrams

Introduction to Skew-T Diagrams Introduction to Skew-T Diagrams Have a think about a few things I m going to throw to you it will hopefully make you think a little outside the square! - LIs of -15 can give you clear skies - LIs of 0

More information

Cloud Photography Flow Visualization

Cloud Photography Flow Visualization Cloud Photography Flow Visualization Presented for: Professor Jean Hertzberg On: February 24, 2009 By: James Kostrzewa The purpose of this assignment is to display the behavior of clouds according to the

More information

4 Forecasting Weather

4 Forecasting Weather CHAPTER 16 4 Forecasting Weather SECTION Understanding Weather BEFORE YOU READ After you read this section, you should be able to answer these questions: What instruments are used to forecast weather?

More information

Weather observations from Tórshavn, The Faroe Islands

Weather observations from Tórshavn, The Faroe Islands Weather observations from Tórshavn, The Faroe Islands 1953-2014 - Observation data with description John Cappelen Copenhagen 2015 http://www.dmi.dk/fileadmin/rapporter/tr/tr15-09 page 1 of 14 Colophon

More information

William H. Bauman III * NASA Applied Meteorology Unit / ENSCO, Inc. / Cape Canaveral Air Force Station, Florida

William H. Bauman III * NASA Applied Meteorology Unit / ENSCO, Inc. / Cape Canaveral Air Force Station, Florida 12.5 INTEGRATING WIND PROFILING RADARS AND RADIOSONDE OBSERVATIONS WITH MODEL POINT DATA TO DEVELOP A DECISION SUPPORT TOOL TO ASSESS UPPER-LEVEL WINDS FOR SPACE LAUNCH William H. Bauman III * NASA Applied

More information

Table of Contents DBCP Buoy Monitoring Statistics... 1

Table of Contents DBCP Buoy Monitoring Statistics... 1 DBCP Buoy Monitoring Statistics Table of Contents DBCP Buoy Monitoring Statistics... 1 Introduction... 1 Standard format for the buoy monitoring statistics:... 4 Distribution of the statistics:... 4 Standard

More information

CREX Table D List of common sequences

CREX Table D List of common sequences Ver. 31.0.0 7 November 2018 CREX Table D List of common sequences Category of sequences D 00 CREX table entries sequences D 01 Location and identification sequences D 02 Meteorological sequences common

More information

Tutorial 8 Raster Data Analysis

Tutorial 8 Raster Data Analysis Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations

More information

Weather & Atmospheric Variables Review

Weather & Atmospheric Variables Review Weather & Atmospheric Variables Review Words that are bold, italicized and/or underlined are vocabulary you must KNOW! A) Atmospheric variables: a) Temperature as it relates to: 1) duration of insolation...longer

More information

Dew Point and Cloud Formation

Dew Point and Cloud Formation Name: Date: ES: 1 2 3 4 Dew Point and Cloud Formation Part A: Run some water over your hands. After shaking off the excess, wave them back and forth until they are dry. 1. Describe the change in temperature

More information