blob: 5a813fc3ad13ad74f6006e577d2d3479edcfc1c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/**
*
*/
package org.traccar;
import org.traccar.helper.DistanceCalculator;
import org.traccar.helper.Log;
import org.traccar.model.Position;
/**
* <p>
* Odometer - total mileage calculation handler
* </p>
*
* @author Amila Silva
*
*/
public class OdometerHandler extends BaseDataHandler {
public OdometerHandler() {
Log.debug("System based odometer calculation enabled for all devices");
}
private Position getLastPosition(long deviceId) {
if (Context.getConnectionManager() != null) {
return Context.getConnectionManager().getLastPosition(deviceId);
}
return null;
}
private Position calculateDistance(Position position) {
Position last = getLastPosition(position.getDeviceId());
if (last != null) {
double distance = DistanceCalculator.distance(
position.getLatitude(), position.getLongitude(),
last.getLatitude(), last.getLongitude());
distance = Math.round((distance) * 100.0) / 100.0;
double odometer = distance + last.getOdometer();
position.setOdometer(odometer);
}
return position;
}
@Override
protected Position handlePosition(Position position) {
return calculateDistance(position);
}
}
|