Elaboradar 0.1
|
◆ read_beam()
template<typename T >
Fill an array with beam data . If the array is longer than the beam fill the remaining with missing
Definizione alla linea 194 del file volume.h. 195 {
196 using namespace std;
197
198 // Prima riempio il minimo tra ray.size() e out_size
200
201 for (unsigned i = 0; i < set_count; ++i)
202 out[i] = get(az, i);
203
204 for (unsigned i = set_count; i < out_size; ++i)
205 out[i] = missing;
206 }
Referenzia radarelab::PolarScanBase::beam_size, e radarelab::PolarScan< T >::get(). |