From 8ac3babace6125aa430b39581e347d42996a7ce3 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 16 Aug 2020 22:14:00 -0700 Subject: Swap coordinate values --- src/main/java/org/traccar/protocol/MoovboxProtocolDecoder.java | 4 ++-- src/test/java/org/traccar/protocol/MoovboxProtocolDecoderTest.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/traccar/protocol/MoovboxProtocolDecoder.java b/src/main/java/org/traccar/protocol/MoovboxProtocolDecoder.java index 1c8cde8a2..3116d073c 100644 --- a/src/main/java/org/traccar/protocol/MoovboxProtocolDecoder.java +++ b/src/main/java/org/traccar/protocol/MoovboxProtocolDecoder.java @@ -89,8 +89,8 @@ public class MoovboxProtocolDecoder extends BaseHttpProtocolDecoder { position.setValid(true); position.setTime(new Date(Long.parseLong(xPath.evaluate("time", node)) * 1000)); - position.setLatitude(Double.parseDouble(xPath.evaluate("latitude", node))); - position.setLongitude(Double.parseDouble(xPath.evaluate("longitude", node))); + position.setLatitude(Double.parseDouble(xPath.evaluate("longitude", node))); + position.setLongitude(Double.parseDouble(xPath.evaluate("latitude", node))); position.setAltitude(Double.parseDouble(xPath.evaluate("altitude", node))); position.setSpeed(Double.parseDouble(xPath.evaluate("speed", node))); diff --git a/src/test/java/org/traccar/protocol/MoovboxProtocolDecoderTest.java b/src/test/java/org/traccar/protocol/MoovboxProtocolDecoderTest.java index c0090e9f2..9b3f6823a 100644 --- a/src/test/java/org/traccar/protocol/MoovboxProtocolDecoderTest.java +++ b/src/test/java/org/traccar/protocol/MoovboxProtocolDecoderTest.java @@ -12,7 +12,7 @@ public class MoovboxProtocolDecoderTest extends ProtocolTest { MoovboxProtocolDecoder decoder = new MoovboxProtocolDecoder(null); verifyPositions(decoder, request(HttpMethod.POST, "/", - buffer("\n\n3\n\n80.726257\n13.821351\n9.500000\n0.000000\n0.064000\n-27.300000\n0.000000\n9\n\n"))); + buffer("\n\n3\n\n100.726257\n13.821351\n9.500000\n0.000000\n0.064000\n-27.300000\n0.000000\n9\n\n"))); } -- cgit v1.2.3