kungfoo / geohash-java

Implementation of GeoHashes in java. We try to be/stay compliant to the spec, as far as possible.
Other
981 stars 310 forks source link

VincentyGeodesy #28

Closed dank78 closed 5 years ago

dank78 commented 7 years ago

Line 80 newLon = (newLon > 180.0 ? 360.0 - newLon : newLon);

should be newLon = (newLon > 180.0 ? newLon - 360 : newLon);

kungfoo commented 7 years ago

I merged the fix, I'll release a new version once I've had a good hard look at the other issues.