Learn R Programming

RadioSonde (version 1.4)

skewt.lines: Overlays data on a SKEW-T, log p axis

Description

Overlays observations as lines on a SKEW-T, log p axis (as created by skewt.axis).

Usage

skewt.lines(temp, pressure, ...)

Arguments

temp

Temperature in degrees C.

pressure

Pressure in millibars

...

Any graphical arguments

Details

skewt.lines overlays observations on a SKEW-T, log p axis

See Also

skewt.points, skewt.axis, plotsonde

Examples

Run this code
# NOT RUN {
# 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 ...

data(ExampleSonde)
skewt.axis()
skewt.lines( ExampleSonde$temp,  ExampleSonde$press, col = 6)
skewt.lines( ExampleSonde$dewpt, ExampleSonde$press, col = 7)
skewt.points(ExampleSonde$temp,  ExampleSonde$press, col = 3)
skewt.points(ExampleSonde$dewpt, ExampleSonde$press, col = 4)
# }

Run the code above in your browser using DataLab