Fix typos of Transistor
This commit is contained in:
parent
46091b30c7
commit
2449343d04
4 changed files with 6 additions and 6 deletions
|
@ -32,7 +32,7 @@ Trackbook automatically generates GPX files for every recording. You can find th
|
|||
### How Does Trackbook Measure Distance?
|
||||
Trackbook calculates the distance between markers and adds them up.
|
||||
|
||||
### How Does Transistor Measure Altitude?
|
||||
### How Does Trackbook Measure Altitude?
|
||||
Many devices have altitude sensors (of varying accuracy). Trackbook compares the altitude of each new marker with the previously stored altitude. The difference is added to either the uphill or downhill elevation value.
|
||||
|
||||
### What Does Accuracy Threshold Mean?
|
||||
|
|
|
@ -33,9 +33,9 @@ object Keys {
|
|||
const val CURRENT_TRACKLIST_FORMAT_VERSION: Int = 0
|
||||
|
||||
// intent actions
|
||||
const val ACTION_START: String = "org.y20k.trackbooks.action.START"
|
||||
const val ACTION_STOP: String = "org.y20k.trackbooks.action.STOP"
|
||||
const val ACTION_RESUME: String = "org.y20k.transistors.action.RESUME"
|
||||
const val ACTION_START: String = "org.y20k.trackbook.action.START"
|
||||
const val ACTION_STOP: String = "org.y20k.trackbook.action.STOP"
|
||||
const val ACTION_RESUME: String = "org.y20k.trackbook.action.RESUME"
|
||||
|
||||
// args
|
||||
const val ARG_TRACK_TITLE: String = "ArgTrackTitle"
|
||||
|
|
|
@ -155,7 +155,7 @@ object TrackHelper {
|
|||
|
||||
// add header
|
||||
gpxString = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n" +
|
||||
"<gpx version=\"1.1\" creator=\"Transistor App (Android)\"\n" +
|
||||
"<gpx version=\"1.1\" creator=\"Trackbook App (Android)\"\n" +
|
||||
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" +
|
||||
" xsi:schemaLocation=\"http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd\">\n"
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ Trackbook automatically generates GPX files for every recording. You can find th
|
|||
HOW DOES TRACKBOOK MEASURE DISTANCE?
|
||||
Trackbook calculates the distance between markers and adds them up.
|
||||
|
||||
HOW DOES TRANSISTOR MEASURE ALTITUDE?
|
||||
HOW DOES TRACKBOOK MEASURE ALTITUDE?
|
||||
Many devices have altitude sensors (of varying accuracy). Trackbook compares the altitude of each new marker with the previously stored altitude. The difference is added to either the uphill or downhill elevation value.
|
||||
|
||||
WHAT DOES ACCURACY THRESHOLD MEAN?
|
||||
|
|
Loading…
Reference in a new issue