Elaboradar  0.1
 Tutto Classi Namespace File Funzioni Variabili Tipi enumerati (enum) Gruppi
template<typename T>
double radarelab::PolarScan< T >::sample_height_real ( unsigned  az,
unsigned  cell_idx 
) const
inline

Return the height (in meters) of a sample given its azimuth and cell indices use the real beam elevation (not the nominal of the PolarScan) and add half cell_size to the range.

Parametri
[in]az- azimuth index
[in]cell_idx- cell index
Restituisce
height [m]

Definizione alla linea 182 del file volume.h.

183  {
184  return PolarScanBase::sample_height(elevations_real(az), (cell_idx + 0.5) * cell_size);
185  }
Eigen::VectorXd elevations_real
Vector of actual elevations for each beam.
Definition: volume.h:45
double cell_size
Size of a beam cell in meters.
Definition: volume.h:48
double sample_height(unsigned cell_idx) const
Return the height (in meters) of the sample at the given cell indexa.
Definition: volume.cpp:37