|
◆ read_vertical_slice()
Fill a matrix elevations x beam_size with the vertical slice at a given azimuth.
- Parametri
-
[in] | az | - azimuth index |
[in,out] | slice | - Matrix2D object containing the slice extracted |
[in] | missing_value | |
Definizione alla linea 490 del file volume.h.
492 unsigned size_z = std::max(this->size(), ( size_t)slice.rows());
493 for ( unsigned el = 0; el < size_z; ++el)
494 this-> scan(el).read_beam(az, slice.row_ptr(el), slice.cols(), missing_value);
PolarScan< T > & scan(unsigned idx) Access a polar scan.
|