Skip to content

Commit 0692a5a

Browse files
committed
- chg: minor rename in the Location.gnssDiffMessageAge parameter
1 parent 5bac6ee commit 0692a5a

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [0.9.56]
7+
## [0.9.57]
88
### Added
99
- `GeoDataExtra.PAR_LOPOINT_REVIEWS` as container for LoPoint reviews
10-
- `Location.gnssLastCorrectionTime` parameter
10+
- `Location.gnssDiffMessageAge` parameter
1111

1212
## [0.9.55]
1313
### Fixed

Diff for: gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ GRADLE_NEXUS_STAGING = 0.30.0
2323
LOCUS_LOGGER = 2.2
2424

2525
# Version
26-
API_CODE = 103
27-
API_VERSION = 0.9.56
26+
API_CODE = 104
27+
API_VERSION = 0.9.57
2828

2929
# ANDROID SUPPORT LIBS
3030
# https://developer.android.com/topic/libraries/support-library/revisions.html

Diff for: locus-api-core/src/main/java/locus/api/objects/extra/Location.kt

+5-5
Original file line numberDiff line numberDiff line change
@@ -515,11 +515,11 @@ class Location() : Storable() {
515515
set(value) = setDataLong(EXTRA_KEY_GNSS_OBSERVATION_TIME_END, value)
516516

517517
/**
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).
519519
*/
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)
523523

524524
/**
525525
* Offset of the hardware antenna phase center (in m).
@@ -1002,7 +1002,7 @@ class Location() : Storable() {
10021002
private const val EXTRA_KEY_GNSS_NTRIP_MOUNTPOINT = 57
10031003
private const val EXTRA_KEY_GNSS_OBSERVATION_TIME_START = 58
10041004
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
10061006

10071007
private const val EXTRA_KEY_EXTRA_ANTENNA_PHASE_CENTER_OFFSET = 70
10081008
private const val EXTRA_KEY_EXTRA_POLE_HEIGHT = 71

0 commit comments

Comments
 (0)