File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
java/com/google/openlocationcode Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public final class OpenLocationCode {
77
77
// The maximum value for longitude in degrees.
78
78
private static final BigDecimal LONGITUDE_MAX = new BigDecimal (180 );
79
79
80
- // Maxiumum code length using just lat/lng pair encoding.
80
+ // Maximum code length using just lat/lng pair encoding.
81
81
private static final int PAIR_CODE_LENGTH = 10 ;
82
82
83
83
// Number of columns in the grid refinement method.
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ var LATITUDE_MAX = 90;
80
80
// The maximum value for longitude in degrees.
81
81
var LONGITUDE_MAX = 180 ;
82
82
83
- // Maxiumum code length using lat/lng pair encoding. The area of such a
83
+ // Maximum code length using lat/lng pair encoding. The area of such a
84
84
// code is approximately 13x13 meters (at the equator), and should be suitable
85
85
// for identifying buildings. This excludes prefix and separator characters.
86
86
var PAIR_CODE_LENGTH = 10 ;
Original file line number Diff line number Diff line change 108
108
// The maximum value for longitude in degrees.
109
109
var LONGITUDE_MAX_ = 180 ;
110
110
111
- // Maxiumum code length using lat/lng pair encoding. The area of such a
111
+ // Maximum code length using lat/lng pair encoding. The area of such a
112
112
// code is approximately 13x13 meters (at the equator), and should be suitable
113
113
// for identifying buildings. This excludes prefix and separator characters.
114
114
var PAIR_CODE_LENGTH_ = 10 ;
Original file line number Diff line number Diff line change 81
81
#The maximum value for longitude in degrees.
82
82
LONGITUDE_MAX_ = 180
83
83
84
- #Maxiumum code length using lat/lng pair encoding. The area of such a
84
+ #Maximum code length using lat/lng pair encoding. The area of such a
85
85
#code is approximately 13x13 meters (at the equator), and should be suitable
86
86
#for identifying buildings. This excludes prefix and separator characters.
87
87
PAIR_CODE_LENGTH_ = 10
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ module PlusCodes
9
9
# The max number of characters can be placed before the separator.
10
10
SEPARATOR_POSITION = 8
11
11
12
- # Maxiumum code length using lat/lng pair encoding. The area of such a
12
+ # Maximum code length using lat/lng pair encoding. The area of such a
13
13
# code is approximately 13x13 meters (at the equator), and should be suitable
14
14
# for identifying buildings. This excludes prefix and separator characters.
15
15
PAIR_CODE_LENGTH = 10
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ pub const LATITUDE_MAX: f64 = 90f64;
25
25
// The maximum value for longitude in degrees.
26
26
pub const LONGITUDE_MAX : f64 = 180f64 ;
27
27
28
- // Maxiumum code length using lat/lng pair encoding. The area of such a
28
+ // Maximum code length using lat/lng pair encoding. The area of such a
29
29
// code is approximately 13x13 meters (at the equator), and should be suitable
30
30
// for identifying buildings. This excludes prefix and separator characters.
31
31
pub const PAIR_CODE_LENGTH : usize = 10 ;
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ Private Const LATITUDE_MAX_ As Double = 90
90
90
' The maximum value for longitude in degrees.
91
91
Private Const LONGITUDE_MAX_ As Double = 180
92
92
93
- ' Maxiumum code length using lat/lng pair encoding. The area of such a
93
+ ' Maximum code length using lat/lng pair encoding. The area of such a
94
94
' code is approximately 13x13 meters (at the equator), and should be suitable
95
95
' for identifying buildings. This excludes prefix and separator characters.
96
96
Private Const PAIR_CODE_LENGTH_ As Integer = 10
You can’t perform that action at this time.
0 commit comments