You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LocationRelay has two issues when used with Follow in CLIENT_SPECIFIED mode:
It rejects incoming locations that don't have a heading, accuracy, and time. It doesn't actually need heading for anything, which means that applications supplying external locations to the API have to specify an arbitrary heading just to get LocationRelay to accept it. This requirement should be moved.
The currentSpeed calculation falls apart for incoming location intervals of < 1 second, returning 0 for something as straightforward as (0.5 meter distance in 500ms). This failure affects the average speed, which makes subsequent locations more likely to be rejected.
The text was updated successfully, but these errors were encountered:
kellyschrock
added a commit
to kellyschrock/DroneKit-Android
that referenced
this issue
Jul 26, 2016
@kellyschrock as an alternative, the location relay class can detect when the received location has no bearing, and compute a bearing using GeoTools#getHeadingFromCoordinates(...) passing the new location, and the last received location.
It will then use that bearing when creating the gcs location if the received location has no bearing.
LocationRelay has two issues when used with Follow in CLIENT_SPECIFIED mode:
It rejects incoming locations that don't have a heading, accuracy, and time. It doesn't actually need heading for anything, which means that applications supplying external locations to the API have to specify an arbitrary heading just to get LocationRelay to accept it. This requirement should be moved.
The currentSpeed calculation falls apart for incoming location intervals of < 1 second, returning 0 for something as straightforward as (0.5 meter distance in 500ms). This failure affects the average speed, which makes subsequent locations more likely to be rejected.
The text was updated successfully, but these errors were encountered: