-
Notifications
You must be signed in to change notification settings - Fork 4
/
Coordinate.cs
63 lines (55 loc) · 1.51 KB
/
Coordinate.cs
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
57
58
59
60
61
62
63
using System;
namespace TownCrier
{
// Adapted from GoArrow by Ben Howell
class Location
{
int Landcell;
double YOffset;
double XOffset;
double Latitude;
double Longitude;
public Location(int landcell, double yOffset, double xOffset)
{
Landcell = landcell;
YOffset = yOffset;
XOffset = xOffset;
Latitude = GetLatitude();
Longitude = GetLongitude();
}
double GetLatitude()
{
uint l = (uint)((Landcell & 0x00FF0000) / 0x2000);
return (l + YOffset / 24.0 - 1019.5) / 10.0;
}
double GetLongitude()
{
uint l = (uint)((Landcell & 0xFF000000) / 0x200000);
return (l + XOffset / 24.0 - 1019.5) / 10.0;
}
public override string ToString()
{
return ToCoordString() + ToIndoorString();
}
public string ToCoordString()
{
return Math.Abs(Latitude).ToString("0.00") + (Latitude >= 0 ? "N" : "S") + ", "
+ Math.Abs(Longitude).ToString("0.00") + (Longitude >= 0 ? "E" : "W");
}
public string ToIndoorString()
{
if (IsIndoors())
{
return " (Indoors, landcell " + Landcell + ")";
}
else
{
return "";
}
}
bool IsIndoors()
{
return (Landcell & 0x0000FF00) != 0;
}
}
}