Skip to content

Commit

Permalink
Merge pull request #43 from uorocketry/table-format
Browse files Browse the repository at this point in the history
Show connection details
  • Loading branch information
ajayyy authored Jun 26, 2021
2 parents 5886df7 + d12b18d commit 068f586
Show file tree
Hide file tree
Showing 25 changed files with 1,497 additions and 745 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ dependencies {
implementation 'org.json:json:20210307'
implementation 'org.knowm.xchart:xchart:3.6.1'
implementation 'org.java-websocket:Java-WebSocket:1.5.1'
implementation 'org.jetbrains:annotations:19.0.0'

testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
}

test {
Expand Down
8 changes: 5 additions & 3 deletions data-example/config-hotfireTest.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
"Abort Burn",
"Max States"
],
"timestampIndex": 0,
"stateIndex": 1,
"seperator": ","
"indexes": {
"timestamp": 0,
"state": 1
},
"separator": ","
}
],
"stateEvents": [
Expand Down
8 changes: 4 additions & 4 deletions data-example/config-octoberSky.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
"Ground",
"Max States"
],
"coordinateIndexes": {
"indexes": {
"timestamp": 1,
"state": 19,
"altitude": 10,
"latitude": 8,
"longitude": 9
},
"timestampIndex": 1,
"stateIndex": 19,
"seperator": ","
"separator": ","
}
]
}
Loading

0 comments on commit 068f586

Please sign in to comment.