namespace GeoVLog.Core.Hdf5 { /// /// Enumeration of sensor data schema types. Each sensor type corresponds to a schema /// that defines how its raw message can be parsed. /// /// /// This is used primarily by the parsing system to determine how to interpret a raw sensor message. /// public enum SensorSchema : byte { /// GPS receiver data (e.g., NMEA sentences for location fixes). Gps, /// Inertial Measurement Unit data (accelerometers/gyros). Imu, /// Magnetometer (compass) data. Mag, /// VLF (Very Low Frequency sensor) data. Vlf, /// Radar altimeter data (altitude above ground level). RadarAlt } }