@@ -11,12 +11,12 @@ public static class Constants {
11
11
#region Constants
12
12
13
13
/// <summary>
14
- /// Defines the Precision
14
+ /// Defines the coordinate precision
15
15
/// </summary>
16
16
public const double Precision = 1E5 ;
17
17
18
18
/// <summary>
19
- /// Defines the ShiftLength
19
+ /// Defines the shift length
20
20
/// </summary>
21
21
public const int ShiftLength = 5 ;
22
22
@@ -29,17 +29,17 @@ public static class ASCII {
29
29
#region Constants
30
30
31
31
/// <summary>
32
- /// Defines the QuestionMark
32
+ /// Defines the ASCII QuestionMark
33
33
/// </summary>
34
34
public const int QuestionMark = 63 ;
35
35
36
36
/// <summary>
37
- /// Defines the Space
37
+ /// Defines the ASCII Space
38
38
/// </summary>
39
39
public const int Space = 32 ;
40
40
41
41
/// <summary>
42
- /// Defines the UnitSeparator
42
+ /// Defines the ASCII UnitSeparator
43
43
/// </summary>
44
44
public const int UnitSeparator = 31 ;
45
45
@@ -53,22 +53,22 @@ public static class Coordinate {
53
53
#region Constants
54
54
55
55
/// <summary>
56
- /// Defines the MaxLatitude
56
+ /// Defines the maximum value for Latitude
57
57
/// </summary>
58
58
public const int MaxLatitude = 90 ;
59
59
60
60
/// <summary>
61
- /// Defines the MaxLongitude
61
+ /// Defines the maximum value for longitude
62
62
/// </summary>
63
63
public const int MaxLongitude = 180 ;
64
64
65
65
/// <summary>
66
- /// Defines the MinLatitude
66
+ /// Defines the minimum value for latitude
67
67
/// </summary>
68
68
public const int MinLatitude = - MaxLatitude ;
69
69
70
70
/// <summary>
71
- /// Defines the MinLongitude
71
+ /// Defines the minimum value for longitude
72
72
/// </summary>
73
73
public const int MinLongitude = - MaxLongitude ;
74
74
0 commit comments