Elaboradar 0.1
|
◆ sample_height() [2/3]
Return the height of a sample (in meters) given center beam elevation (in degrees), range (in meters) and equivalent earth radius (in meters)
Definizione alla linea 42 del file volume.cpp. 43{
44 return sqrt(
45 range * range
46 + equiv_earth_radius * equiv_earth_radius
47 + 2. * equiv_earth_radius * range * sin(elevation * M_PI / 180.)
48 ) - equiv_earth_radius; //meters
49}
double elevation Nominal elevation of this PolarScan, which may be different from the effective elevation of each sing... Definition volume.h:42 |