Elaboradar 0.1
|
◆ make_scan()
template<typename T>
Create or reuse a scan at position idx, with the given beam size.
Definizione alla linea 357 del file volume.h. 358 {
360 {
362 {
364 LOG_ERROR("make_scan(idx=%u, beam_count=%u, beam_size=%u) called, but the scan already existed with beam_count=%u", idx, beam_count, beam_size, (*this)[idx].beam_count);
366 }
368 {
370 LOG_ERROR("make_scan(idx=%u, beam_count=%u, beam_size=%u) called, but the scan already existed with beam_size=%u", idx, beam_count, beam_size, (*this)[idx].beam_size);
372 }
373 } else {
374 // If some elevation has been skipped, fill in the gap
376 {
381 }
382
383 // Add the new polar scan
387 }
388
389 // Return it
391 }
Sequence of PolarScans which can have a different beam count for each elevation. Definition volume.h:264 Referenziato da radarelab::Volume< T >::make_scan(). |