Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
67b466d
c
bonchan Nov 21, 2022
fd50956
haslinghuis diff from 602#issuecomment-1320958859
bonchan Nov 21, 2022
e48ef6f
Merge branch 'gps-maybe' into graph-gps-data
bonchan Nov 21, 2022
803b3b7
added check undefined returning undefined
bonchan Nov 21, 2022
f8b1755
displays data in table and graph
LinusThorsell Nov 21, 2022
5bfad3f
progress, table loads offset by 5, but works
LinusThorsell Nov 21, 2022
11ecff5
GPS G Frame logs successfully.
LinusThorsell Nov 21, 2022
df6ee3e
removed unecessary comments
LinusThorsell Nov 21, 2022
b877867
fixed names in table
LinusThorsell Nov 21, 2022
0dc3295
removed test code in main, remove whitespaces
LinusThorsell Nov 21, 2022
5a9be0f
Merge branch 'master' into display-gps-data-better
LinusThorsell Nov 21, 2022
cd08b16
fixed GPS cases and added gps example graph
bonchan Nov 21, 2022
5ce7fad
Merge pull request #1 from bonchan/display-gps-data-better-fixes
LinusThorsell Nov 22, 2022
cd5f022
using const name of, instead of normal for in flightlog
LinusThorsell Nov 22, 2022
3ac4278
changes suggested by ctzsnooze (presentability)
LinusThorsell Nov 22, 2022
368711c
readability changes
LinusThorsell Nov 22, 2022
f1bb6a4
make numsat and speed start at bottom of graph
LinusThorsell Nov 22, 2022
cabd414
removed time field. refactored code
LinusThorsell Nov 22, 2022
f2949e5
cosmetic code changes
LinusThorsell Nov 22, 2022
44d91e2
changed live gps to GPS Reported Altitude
LinusThorsell Nov 22, 2022
b1bc7a5
fixed gps ASL altitude scaling, changed reported gps alt to alt ASL
LinusThorsell Nov 23, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions js/flightlog.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ function FlightLog(logData) {
}
// Add names of gps fields which we'll merge into the main stream
if (parser.frameDefs.G) {
for (let i = 0; i < parser.frameDefs.G.name.length; i++) {
fieldNames.push(parser.frameDefs.G.name[i]);
for (const name of parser.frameDefs.G.name) {
fieldNames.push(name);
}
}

Expand Down