File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
77This Java project contains a library to encode latitude/longitude pairs to mapcodes
88and to decode mapcodes back to latitude/longitude pairs.
99
10- ** Online documentation can be found at: http://mapcode-foundation.github.io/mapcode-java/ **
11-
1210** Release notes can be found at: http://mapcode-foundation.github.io/mapcode-java/ReleaseNotes.html **
1311
12+ ** Online documentation can be found at: http://mapcode-foundation.github.io/mapcode-java/ **
13+
1414** An example of how to use this library can be found at: https://github.com/mapcode-foundation/mapcode-java-example **
1515
1616If you wish to use mapcodes in your own application landscape, consider using running an instance of the
Original file line number Diff line number Diff line change 88 <artifactId >mapcode</artifactId >
99
1010 <packaging >jar</packaging >
11- <version >1.50.4 -SNAPSHOT</version >
11+ <version >2.0.0 -SNAPSHOT</version >
1212
1313 <name >Mapcode Java Library</name >
1414 <description >
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ private Point() {
220220 defined = false ;
221221 }
222222
223- private Point (final double latDeg , final double lonDeg , boolean wrap ) {
223+ private Point (final double latDeg , final double lonDeg , final boolean wrap ) {
224224 if (wrap ) {
225225 this .latDeg = mapToLat (latDeg );
226226 this .lonDeg = mapToLon (lonDeg );
Original file line number Diff line number Diff line change @@ -9,9 +9,12 @@ Release Notes (Version ${project.version})
99 In any case, never depend on them for your own non-<<<SNAPSHOT>>> releases.
1010#end
1111
12- * 1.50.4
12+ * 2.0.0
1313
14- * To do.
14+ * Fixes to the data rectangles (primarily intended for ISO proposal).
15+
16+ * Note that this release only allows high-precision mapcodes up to 2 additional suffix characters.
17+ A future release will be scheduled to allow up to 8 suffix characters (nanometer accuracy).
1518
1619 []
1720
You can’t perform that action at this time.
0 commit comments