Does anyone know of a way, in Java, to convert an earth surface position from lat, lon to UTM (say in WGS84)? I'm currently looking at Geotools but unfortunately the solution is not obvious.
|
feedback
|
|
I was able to use Geotools 2.4 to get something that works, based on some example code.
| ||||
|
feedback
|
|
I suggest JCoord. It allows you to convert between various cartographic coordinate schemes using a very simple API. Iy you're feeling saucy, have a look at the source code; it's pages and pages of dense trigonometry. Splendid stuff. There's also a javascript version called JSCoord. | |||
|
feedback
|
|
the Alberta 10 TM answer is probably overkill for what you need - this link from developer works probably has all the information you need. | |||
|
feedback
|
|
Take a look at OpenMap specifically the com.bbn.openmap.proj.coords package in the API. | |||
|
feedback
|
|
Steve Dutch at University of Wisconson has a pretty good write-up on the algorithm. Also includes an Excel document to help verify your numbers. | |||
|
feedback
|
|
This problem is analogous to the one in this post. If you look at the solutions to it, you can easily adapt them to UTM. | |||||
feedback
|
|
I found this one here. You can download a complete implementation as a *.java file as well from there and just copy-paste it in your project. | |||
|
feedback
|
|
perhaps you're manipulating a lot of spatial data here, i assume you're using a kind of a spatially enabled relational dbms like Postgres with PostGIS extension. You could easily do this kind of transformation in the PostGIS, it offers an extensive support of geometric operations and relations as defined in the OGC standards... just a thought! | |||
|
feedback
|