Looking for a java utility. It is even better if you can tell me how to do it using geotools library.
|
feedback
|
|
By "Decimal coordinates" do you mean latitude and longitude (also known as the decimal degree)? If so, what you're trying to do is pretty easy:
From Wikipedia. Here's a Javascript widget that does the same thing. | |||
|
feedback
|
|
It depends on your source format. If it's already split up into degrees (d), minutes (m), and seconds (s), your algorithm is: (assuming d is can be positive or negative)
If it's smooshed together into a string, the usual format is: "ddd.mmss" So parse out using a regular expression or String.substring() to get m and s. Converting back is:
| |||
|
feedback
|