Skip to content

Commit

Permalink
Fixed the group number column placement for GNSS CSV, and pointed the…
Browse files Browse the repository at this point in the history
… user manual link directly to the page
  • Loading branch information
christianrowlands committed Nov 9, 2023
1 parent 54582a7 commit e10b01c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ public GnssCsvLogger(NetworkSurveyService networkSurveyService, Looper serviceLo
String[] getHeaders()
{
return new String[]{DEVICE_TIME, LATITUDE, LONGITUDE, ALTITUDE, SPEED, ACCURACY,
MISSION_ID, RECORD_NUMBER,
MISSION_ID, RECORD_NUMBER, GROUP_NUMBER,
CONSTELLATION, SPACE_VEHICLE_ID, CARRIER_FREQ_HZ, CLOCK_OFFSET, USED_IN_SOLUTION,
UNDULATION_M, LATITUDE_STD_DEV_M, LONGITUDE_STD_DEV_M, ALTITUDE_STD_DEV_M, AGC_DB,
CN0_DB_HZ, HDOP, VDOP, GROUP_NUMBER};
CN0_DB_HZ, HDOP, VDOP};
}

@Override
Expand Down Expand Up @@ -91,6 +91,7 @@ private String[] convertToObjectArray(GnssRecord record)
String.valueOf(data.getAccuracy()),
data.getMissionId(),
String.valueOf(data.getRecordNumber()),
String.valueOf(data.getGroupNumber()),
data.getConstellation().toString(),
data.hasSpaceVehicleId() ? String.valueOf(data.getSpaceVehicleId().getValue()) : "",
data.hasCarrierFreqHz() ? String.valueOf(data.getCarrierFreqHz().getValue()) : "",
Expand Down
2 changes: 1 addition & 1 deletion networksurvey/src/main/res/navigation/nav_graph.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<activity
android:id="@+id/nav_user_manual_activity"
app:action="android.intent.action.VIEW"
app:data="https://networksurvey.app/" />
app:data="https://networksurvey.app/manual" />

<activity
android:id="@+id/nav_messaging_activity"
Expand Down

0 comments on commit e10b01c

Please sign in to comment.