File tree 3 files changed +9
-9
lines changed
locus-api-core/src/main/java/locus/api/objects/extra
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 0.9.56 ]
7
+ ## [ 0.9.57 ]
8
8
### Added
9
9
- ` GeoDataExtra.PAR_LOPOINT_REVIEWS ` as container for LoPoint reviews
10
- - ` Location.gnssLastCorrectionTime ` parameter
10
+ - ` Location.gnssDiffMessageAge ` parameter
11
11
12
12
## [ 0.9.55]
13
13
### Fixed
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ GRADLE_NEXUS_STAGING = 0.30.0
23
23
LOCUS_LOGGER = 2.2
24
24
25
25
# Version
26
- API_CODE = 103
27
- API_VERSION = 0.9.56
26
+ API_CODE = 104
27
+ API_VERSION = 0.9.57
28
28
29
29
# ANDROID SUPPORT LIBS
30
30
# https://developer.android.com/topic/libraries/support-library/revisions.html
Original file line number Diff line number Diff line change @@ -515,11 +515,11 @@ class Location() : Storable() {
515
515
set(value) = setDataLong(EXTRA_KEY_GNSS_OBSERVATION_TIME_END , value)
516
516
517
517
/* *
518
- * UTC time of the last correction message used to create this location.
518
+ * Age of the RTK messages that created this location object (in ms) .
519
519
*/
520
- var gnssLastCorrectionTime : Long?
521
- get() = getDataLong(EXTRA_KEY_GNSS_LAST_CORRECTION_TIME )
522
- set(value) = setDataLong(EXTRA_KEY_GNSS_LAST_CORRECTION_TIME , value)
520
+ var gnssDiffMessageAge : Long?
521
+ get() = getDataLong(EXTRA_KEY_GNSS_DIFF_MESSAGE_AGE )
522
+ set(value) = setDataLong(EXTRA_KEY_GNSS_DIFF_MESSAGE_AGE , value)
523
523
524
524
/* *
525
525
* Offset of the hardware antenna phase center (in m).
@@ -1002,7 +1002,7 @@ class Location() : Storable() {
1002
1002
private const val EXTRA_KEY_GNSS_NTRIP_MOUNTPOINT = 57
1003
1003
private const val EXTRA_KEY_GNSS_OBSERVATION_TIME_START = 58
1004
1004
private const val EXTRA_KEY_GNSS_OBSERVATION_TIME_END = 59
1005
- private const val EXTRA_KEY_GNSS_LAST_CORRECTION_TIME = 60
1005
+ private const val EXTRA_KEY_GNSS_DIFF_MESSAGE_AGE = 60
1006
1006
1007
1007
private const val EXTRA_KEY_EXTRA_ANTENNA_PHASE_CENTER_OFFSET = 70
1008
1008
private const val EXTRA_KEY_EXTRA_POLE_HEIGHT = 71
You can’t perform that action at this time.
0 commit comments