Elaboradar  0.1
 Tutto Classi Namespace File Funzioni Variabili Tipi enumerati (enum) Gruppi
sp20.h
Vai alla documentazione di questo file.
1 
5 #ifndef RADARELAB_SP20_H
6 #define RADARELAB_SP20_H
7 
8 #include <radarelab/volume.h>
9 
10 namespace radarelab {
11 namespace volume {
12 
13 namespace sp20 {
14 struct Beam;
15 }
16 
17 struct SP20Loader
18 {
19  bool clean;
20  Scans<double>* vol_z = 0;
21  Scans<double>* vol_d = 0;
22  Scans<double>* vol_v = 0;
23  Scans<double>* vol_w = 0;
24 
25  void load(const std::string& pathname);
26 
27  void beam_to_volumes(const sp20::Beam& beam, unsigned az_idx, unsigned beam_size, unsigned el_num);
28 };
29 
30 }
31 }
32 
33 #endif
Definisce le principali strutture che contengono i dati.