Skip to content

Commit 0bd9272

Browse files
author
Petr Šrámek
committed
Updated documentation
1 parent f4a9c70 commit 0bd9272

File tree

1 file changed

+9
-9
lines changed
  • src/Cloudikka.PolylineAlgorithm/Cloudikka.PolylineAlgorithm

1 file changed

+9
-9
lines changed

src/Cloudikka.PolylineAlgorithm/Cloudikka.PolylineAlgorithm/Constants.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ public static class Constants {
1111
#region Constants
1212

1313
/// <summary>
14-
/// Defines the Precision
14+
/// Defines the coordinate precision
1515
/// </summary>
1616
public const double Precision = 1E5;
1717

1818
/// <summary>
19-
/// Defines the ShiftLength
19+
/// Defines the shift length
2020
/// </summary>
2121
public const int ShiftLength = 5;
2222

@@ -29,17 +29,17 @@ public static class ASCII {
2929
#region Constants
3030

3131
/// <summary>
32-
/// Defines the QuestionMark
32+
/// Defines the ASCII QuestionMark
3333
/// </summary>
3434
public const int QuestionMark = 63;
3535

3636
/// <summary>
37-
/// Defines the Space
37+
/// Defines the ASCII Space
3838
/// </summary>
3939
public const int Space = 32;
4040

4141
/// <summary>
42-
/// Defines the UnitSeparator
42+
/// Defines the ASCII UnitSeparator
4343
/// </summary>
4444
public const int UnitSeparator = 31;
4545

@@ -53,22 +53,22 @@ public static class Coordinate {
5353
#region Constants
5454

5555
/// <summary>
56-
/// Defines the MaxLatitude
56+
/// Defines the maximum value for Latitude
5757
/// </summary>
5858
public const int MaxLatitude = 90;
5959

6060
/// <summary>
61-
/// Defines the MaxLongitude
61+
/// Defines the maximum value for longitude
6262
/// </summary>
6363
public const int MaxLongitude = 180;
6464

6565
/// <summary>
66-
/// Defines the MinLatitude
66+
/// Defines the minimum value for latitude
6767
/// </summary>
6868
public const int MinLatitude = -MaxLatitude;
6969

7070
/// <summary>
71-
/// Defines the MinLongitude
71+
/// Defines the minimum value for longitude
7272
/// </summary>
7373
public const int MinLongitude = -MaxLongitude;
7474

0 commit comments

Comments
 (0)