blob: d6b420f08b5714c3188ab6eae9e91a1ece314afb (
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
50
51
52
53
54
55
56
|
using Enmarcha.Backend.Services;
public abstract class AbstractRealTimeProcessor : IArrivalsProcessor
{
public abstract Task ProcessAsync(ArrivalsContext context);
protected static List<(double Lat, double Lon)> Decode(string encodedPoints)
{
if (string.IsNullOrEmpty(encodedPoints))
return new List<(double, double)>();
var poly = new List<(double, double)>();
char[] polylineChars = encodedPoints.ToCharArray();
int index = 0;
int currentLat = 0;
int currentLng = 0;
int next5bits;
int sum;
int shifter;
while (index < polylineChars.Length)
{
// calculate next latitude
sum = 0;
shifter = 0;
do
{
next5bits = (int)polylineChars[index++] - 63;
sum |= (next5bits & 31) << shifter;
shifter += 5;
} while (next5bits >= 32 && index < polylineChars.Length);
if (index >= polylineChars.Length)
break;
currentLat += (sum & 1) == 1 ? ~(sum >> 1) : (sum >> 1);
// calculate next longitude
sum = 0;
shifter = 0;
do
{
next5bits = (int)polylineChars[index++] - 63;
sum |= (next5bits & 31) << shifter;
shifter += 5;
} while (next5bits >= 32 && index < polylineChars.Length);
currentLng += (sum & 1) == 1 ? ~(sum >> 1) : (sum >> 1);
poly.Add((Convert.ToDouble(currentLat) / 100000.0, Convert.ToDouble(currentLng) / 100000.0));
}
return poly;
}
}
|