diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-04-17 12:43:54 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2017-04-17 12:43:54 +1200 |
commit | 73ecddc51d9c998e08ffa85d54a8e6da90567f36 (patch) | |
tree | 742d6e156d5ecc1ea70187970235e313c2357bbd /src/org | |
parent | e6975cd0c6d93dc205eac0c5470d3060269df87e (diff) | |
download | trackermap-server-73ecddc51d9c998e08ffa85d54a8e6da90567f36.tar.gz trackermap-server-73ecddc51d9c998e08ffa85d54a8e6da90567f36.tar.bz2 trackermap-server-73ecddc51d9c998e08ffa85d54a8e6da90567f36.zip |
Fix TLT2H time regex pattern
Diffstat (limited to 'src/org')
-rw-r--r-- | src/org/traccar/protocol/Tlt2hProtocolDecoder.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/traccar/protocol/Tlt2hProtocolDecoder.java b/src/org/traccar/protocol/Tlt2hProtocolDecoder.java index 9f0e8e888..1d6093b94 100644 --- a/src/org/traccar/protocol/Tlt2hProtocolDecoder.java +++ b/src/org/traccar/protocol/Tlt2hProtocolDecoder.java @@ -1,5 +1,5 @@ /* - * Copyright 2013 Anton Tananaev (anton@traccar.org) + * Copyright 2013 - 2017 Anton Tananaev (anton@traccar.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -45,7 +45,7 @@ public class Tlt2hProtocolDecoder extends BaseProtocolDecoder { private static final Pattern PATTERN_POSITION = new PatternBuilder() .number("#(x+)?") // cell info .text("$GPRMC,") - .number("(dd)(dd)(dd).(ddd),") // time (hhmmss.sss) + .number("(dd)(dd)(dd).d+,") // time (hhmmss.sss) .expression("([AV]),") // validity .number("(d+)(dd.d+),") // latitude .expression("([NS]),") @@ -91,7 +91,7 @@ public class Tlt2hProtocolDecoder extends BaseProtocolDecoder { parser.next(); // base station info DateBuilder dateBuilder = new DateBuilder() - .setTime(parser.nextInt(), parser.nextInt(), parser.nextInt(), parser.nextInt()); + .setTime(parser.nextInt(), parser.nextInt(), parser.nextInt()); position.setValid(parser.next().equals("A")); position.setLatitude(parser.nextCoordinate()); |