1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
namespace sigmf.spatial;
table sigmf_bearing {
azimuth:double=null;
elevation:double=null;
range:double=null;
az_error:double=null;
el_error:double=null;
range_error:double=null;
}
table cartesian_point {
point:[double];
unknown:bool=null;
}
table sigmf_calibration {
caltype:string; // "tone", "xcorr", "ref", "other"
bearing:sigmf_bearing;
cal_geometry:cartesian_point;
}
table Global {
num_elements:uint64=null;
channel_index:uint64=null;
}
table Capture {
aperture_azimuth:double=null;
aperture_bearing:sigmf_bearing;
emitter_bearing:sigmf_bearing;
element_geometry:[cartesian_point];
phase_offset:double=null;
calibration:sigmf_calibration;
}
table Annotation {
signal_azimuth:double=null;
signal_bearing:sigmf_bearing;
}
table Collection {
element_geometry:[cartesian_point];
}
table Descr {
global:Global;
annotation:Annotation;
capture:Capture;
collection:Collection;
}
|