Elaboradar 0.1
|
◆ read_vertical_slice()
template<typename T >
Fill a matrix elevations x beam_size with the vertical slice at a given azimuth.
Definizione alla linea 492 del file volume.h. 493 {
494 unsigned size_z = std::max(this->size(), (size_t)slice.rows());
495 for (unsigned el = 0; el < size_z; ++el)
496 this->scan(el).read_beam(az, slice.row_ptr(el), slice.cols(), missing_value);
497 }
Referenzia radarelab::volume::Scans< T >::scan(). |