Changeset 45 in flair-src for trunk/lib/FlairCore/src/GpsData.cpp
- Timestamp:
- Jul 18, 2016, 4:13:56 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/GpsData.cpp
r42 r45 56 56 57 57 GpsData::GpsData(const Object *parent, std::string name, int n) 58 : io_data(parent, name, n), dataType( floatType) {58 : io_data(parent, name, n), dataType() { 59 59 if (n > 1) 60 60 Warn("n>1 not supported\n"); 61 61 62 AppendLogDescription(" raw_ax", floatType);63 AppendLogDescription(" raw_ay", floatType);64 AppendLogDescription(" raw_az", floatType);62 AppendLogDescription("latitude", floatType); 63 AppendLogDescription("longitude", floatType); 64 AppendLogDescription("altitude", floatType); 65 65 66 AppendLogDescription("raw_gx", floatType);67 AppendLogDescription("raw_gy", floatType);68 AppendLogDescription("raw_gz", floatType);69 66 70 AppendLogDescription("raw_mx", floatType);71 AppendLogDescription("raw_my", floatType);72 AppendLogDescription("raw_mz", floatType);73 67 } 74 68
Note:
See TracChangeset
for help on using the changeset viewer.