You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/PolylineAlgorithm/Internal/Defaults.cs
+4-38Lines changed: 4 additions & 38 deletions
Original file line number
Diff line number
Diff line change
@@ -26,10 +26,6 @@ internal static class Logging {
26
26
/// Contains default values and constants specific to the polyline encoding algorithm.
27
27
/// </summary>
28
28
internalstaticclassAlgorithm{
29
-
/// <summary>
30
-
/// The precision factor used to round coordinate values during polyline encoding.
31
-
/// </summary>
32
-
internalconstintPrecision=100_000;
33
29
34
30
/// <summary>
35
31
/// The number of bits to shift during polyline encoding.
@@ -69,21 +65,6 @@ internal static class Latitude {
69
65
/// The maximum valid latitude value.
70
66
/// </summary>
71
67
internalconstdoubleMax=90.00000;
72
-
73
-
/// <summary>
74
-
/// Contains constants related to normalized latitude values.
75
-
/// </summary>
76
-
[SuppressMessage("Critical Code Smell","S3218:Inner class members should not shadow outer class \"static\" or type members",Justification="Internal use only.")]
@@ -102,21 +83,6 @@ internal static class Longitude {
102
83
/// The maximum valid longitude value.
103
84
/// </summary>
104
85
internalconstdoubleMax=180.00000;
105
-
106
-
/// <summary>
107
-
/// Contains constants related to normalized longitude values.
108
-
/// </summary>
109
-
[SuppressMessage("Critical Code Smell","S3218:Inner class members should not shadow outer class \"static\" or type members",Justification="Internal use only.")]
0 commit comments