Learn R Programming

bioRad (version 0.4.0)

beam_height: Calculate radar beam height

Description

Calculates the height of a radar beam as a function of elevation and range, assuming the beam is emitted at surface level.

Usage

beam_height(range, elev, k = 4/3, lat = 35, re = 6378, rp = 6357)

Arguments

range

numeric. Range (distance from the radar antenna) in km.

elev

numeric. Elevation in degrees.

k

Standard refraction coefficient.

lat

Geodetic latitude in degrees.

re

Earth equatorial radius in km.

rp

Earth polar radius in km.

Value

numeric. Beam height in km.

Details

To account for refraction of the beam towards the earth's surface, an effective earth's radius of k * (true radius) is assumed, with k = 4/3.

The earth's radius is approximated as a point on a spheroid surface, with re the longer equatorial radius, and rp the shorter polar radius. Typically uncertainties in refraction coefficient are relatively large, making oblateness of the earth and the dependence of earth radius with latitude only a small correction. Using default values assumes an average earth's radius of 6371 km.