From 0c364770d90c47721744d6c7ef43f5f69c34fb1d Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Mon, 28 May 2018 15:48:33 +0500 Subject: Store engine hours in GL200 and GoSafe in milliseconds --- src/org/traccar/protocol/GoSafeProtocolDecoder.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/org/traccar/protocol/GoSafeProtocolDecoder.java') diff --git a/src/org/traccar/protocol/GoSafeProtocolDecoder.java b/src/org/traccar/protocol/GoSafeProtocolDecoder.java index 0fa1934da..ae00ad71a 100644 --- a/src/org/traccar/protocol/GoSafeProtocolDecoder.java +++ b/src/org/traccar/protocol/GoSafeProtocolDecoder.java @@ -107,8 +107,9 @@ public class GoSafeProtocolDecoder extends BaseProtocolDecoder { } if (index < values.length) { String[] hours = values[index].split("-"); - position.set(Position.KEY_HOURS, Integer.parseInt(hours[0]) - + Integer.parseInt(hours[0]) / 60.0 + Integer.parseInt(hours[0]) / 3600.0); + position.set(Position.KEY_HOURS, (Integer.parseInt(hours[0]) * 3600 + + (hours.length > 1 ? Integer.parseInt(hours[1]) * 60 : 0) + + (hours.length > 2 ? Integer.parseInt(hours[2]) : 0)) * 1000); } break; case "ADC": -- cgit v1.2.3