-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed DistanceCalculator.totalTravelDistance(Unit, Point...) to
DistanceCalculator.distance(Unit, Point...). Deprecated DistanceCalculator.distance(Point, Point, Unit). Updated README and javadoc.
- Loading branch information
Kurtis LoVerde
committed
Feb 15, 2016
1 parent
ff151ec
commit 61e6d36
Showing
5 changed files
with
38 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
GeographicCoordinate | ||
==================== | ||
|
||
GeographicCoordinate is a simple Java library for latitude and longitude. | ||
GeographicCoordinate is a simple Java library for representing latitude and longitude, and for calculating distances. | ||
|
||
Features: | ||
|
||
* Unlike using floating-point primitives, enforces automatic range checking: objects can never have invalid values | ||
* Coordinates can be manipulated in floating-point form or as degrees, minutes and seconds | ||
* Provides the ability to calculate the distance between two or more coordinates | ||
* Unlike using floating-point primitives, GeographicCoordinate enforces automatic range checking: objects can never have invalid values. | ||
* Coordinates can be manipulated in floating-point form or as degrees, minutes and seconds. | ||
* Provides the ability to calculate the distance between two coordinates, or for the total travel distance between an unlimited number of points. | ||
|
||
|
||
If you find this library useful, I'd love to hear from you. I can be reached at [email protected]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters