diff options
author | Abyss777 <abyss@fox5.ru> | 2017-05-22 11:33:29 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-05-22 11:33:29 +0500 |
commit | 9107c244020331de12d60f2437c8665011b7162d (patch) | |
tree | 73399e3dfbdff4cf2fa6d8d6e1cc7564445c4f6c /src/org/traccar/protocol/VisiontekProtocolDecoder.java | |
parent | 5af130db6edcc25d89a8f84e55350644ba4797b3 (diff) | |
download | trackermap-server-9107c244020331de12d60f2437c8665011b7162d.tar.gz trackermap-server-9107c244020331de12d60f2437c8665011b7162d.tar.bz2 trackermap-server-9107c244020331de12d60f2437c8665011b7162d.zip |
Organize KEY_xDOP values
Diffstat (limited to 'src/org/traccar/protocol/VisiontekProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/VisiontekProtocolDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/VisiontekProtocolDecoder.java b/src/org/traccar/protocol/VisiontekProtocolDecoder.java index 51c4deb7b..ac767452b 100644 --- a/src/org/traccar/protocol/VisiontekProtocolDecoder.java +++ b/src/org/traccar/protocol/VisiontekProtocolDecoder.java @@ -119,7 +119,7 @@ public class VisiontekProtocolDecoder extends BaseProtocolDecoder { } if (parser.hasNext(7)) { - position.set(Position.KEY_HDOP, parser.next()); + position.set(Position.KEY_HDOP, parser.nextDouble()); position.setAltitude(parser.nextDouble(0)); position.set(Position.KEY_ODOMETER, parser.nextInt(0) * 1000); position.set(Position.KEY_INPUT, parser.next()); |