-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d12041b
commit 8790fc3
Showing
1 changed file
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
window.radians = function (a) { | ||
return 0.0174533 * a | ||
} | ||
|
||
export class DjiDataExtractor { | ||
static extractAttitude (messages, source) { | ||
const attitudes = {} | ||
// console.log('extractAttitude', messages, source) | ||
if (source in messages) { | ||
// console.log('extractAttitude', messages[source]) | ||
const attitudeMsgs = messages[source] | ||
// console.log('attitudeMsgs', attitudeMsgs) | ||
for (const i in attitudeMsgs.time_boot_ms) { | ||
// console.log('attitudeMsgs.time_boot_ms[i]', attitudeMsgs.time_boot_ms[i]) | ||
// console.log(attitudeMsgs) | ||
attitudes[parseInt(attitudeMsgs.time_boot_ms[i])] = | ||
[ | ||
window.radians(attitudeMsgs.roll[i]), | ||
window.radians(attitudeMsgs.pitch[i]), | ||
window.radians(attitudeMsgs.yaw[i]) | ||
] | ||
} | ||
} | ||
return attitudes | ||
} | ||
|
||
static extractAttitudeSources (messages) { | ||
const result = { | ||
quaternions: [], | ||
eulers: ['OSD'] | ||
} | ||
return result | ||
} | ||
|
||
static extractEvents (messages) { | ||
return [] | ||
} | ||
|
||
static extractFlightModes (messages) { | ||
return [[0, 'Normal']] | ||
} | ||
|
||
static extractMission (messages) { | ||
return [] | ||
} | ||
|
||
static extractParams (messages) { | ||
return undefined | ||
} | ||
|
||
static extractFences (messages) { | ||
return [] | ||
} | ||
|
||
static extractDefaultParams (messages) { | ||
return [] | ||
} | ||
|
||
static extractVehicleType (messages) { | ||
return 'quadcopter' | ||
} | ||
|
||
static extractTextMessages (messages) { | ||
const texts = [] | ||
if ('STATUSTEXT' in messages) { | ||
const textMsgs = messages.STATUSTEXT | ||
for (const i in textMsgs.time_boot_ms) { | ||
texts.push([textMsgs.time_boot_ms[i], textMsgs.severity[i], textMsgs.text[i]]) | ||
} | ||
} | ||
if ('MSG' in messages) { | ||
const textMsgs = messages.MSG | ||
for (const i in textMsgs.time_boot_ms) { | ||
texts.push([textMsgs.time_boot_ms[i], 0, textMsgs.Message[i]]) | ||
} | ||
} | ||
return texts | ||
} | ||
|
||
static extractTrajectorySources (messages) { | ||
return ['OSD'] | ||
} | ||
|
||
static extractTrajectory (messages, source) { | ||
// returns a dict with the trajectories found | ||
console.log('extractTrajectory', messages, source) | ||
const ret = {} | ||
if ('OSD' in messages && source === 'OSD') { | ||
const trajectory = [] | ||
const timeTrajectory = {} | ||
let startAltitude = null | ||
const gpsData = messages.OSD | ||
let start = 0 | ||
for (const i in gpsData.time_boot_ms) { | ||
const delta = gpsData.time_boot_ms[i] - start | ||
if (delta < 200) { | ||
continue | ||
} | ||
start = gpsData.time_boot_ms[i] | ||
// console.log('extractTrajectory', gpsData) | ||
if (gpsData.latitude[i] !== 0) { | ||
if (startAltitude === null) { | ||
startAltitude = gpsData.altitude[i] | ||
} | ||
trajectory.push( | ||
[ | ||
gpsData.longitude[i], | ||
gpsData.latitude[i], | ||
gpsData.altitude[i] - startAltitude, | ||
gpsData.time_boot_ms[i] | ||
] | ||
) | ||
timeTrajectory[gpsData.time_boot_ms[i]] = [ | ||
gpsData.longitude[i], | ||
gpsData.latitude[i], | ||
(gpsData.altitude[i] - startAltitude) / 1000, | ||
gpsData.time_boot_ms[i]] | ||
} | ||
} | ||
if (trajectory.length) { | ||
ret.OSD = { | ||
startAltitude: startAltitude, | ||
trajectory: trajectory, | ||
timeTrajectory: timeTrajectory | ||
} | ||
} | ||
} | ||
console.log('extractTrajectory', ret) | ||
return ret | ||
} | ||
|
||
static extractNamedValueFloatNames (_messages) { | ||
// this mechanism is not used for dataflash logs | ||
return [] | ||
} | ||
|
||
static extractStartTime (messages) { | ||
return 0 | ||
} | ||
} |