Adjusts barometric pressure from one elevation to another using the barometric formula. Always returns a plain numeric vector.
Usage
correct_bp(
station_bp,
air_temp,
station_elev,
site_elev,
from_units = "kPa",
to_units = "kPa"
)Arguments
- station_bp
Numeric. Barometric pressure at the station.
- air_temp
Numeric. Air temperature at the station in degrees Celsius.
- station_elev
Numeric. Elevation of the station in meters.
- site_elev
Numeric. Elevation of the target site in meters.
- from_units
Character. Units of
station_bp. Defaults to"kPa". Seeconvert_pressure()for accepted values.- to_units
Character. Desired output units. Defaults to
"kPa". Seeconvert_pressure()for accepted values.
See also
convert_pressure() for supported pressure units.