in the openlayers we can simple transform EPSG:900913 to EPSG:4326
I'm look for a java lib can do that.
here I found this, http://www.jhlabs.com/java/maps/proj/index.html

but the document is in c++
I don't know how to use it.


If anyone konw that,
please post a simple code

link|improve this question
1  
What document? Can you provide a direct link? – John Feminella Feb 7 '10 at 14:44
feedback

4 Answers

Jerry Huxtable's delightful Globe Applet on the page you cited is indeed written in Java, as seen in the download. The class com.jhlabs.map.proj.ProjectionFactory contains a method named fromPROJ4Specification(), which returns a com.jhlabs.map.proj.Projection. You can use the EPSG:900913 parameters specified on the OpenLayers site to create the desired projection.

900913:
+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0
+x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs

You should also look at OpenMap.

link|improve this answer
Not seen the Globe Applet before - very nice. – geographika Feb 18 '10 at 15:44
feedback

Another option is to use the OpenSource GIS Java library GeoTools:

http://geotools.org/

Details on the projection classes here:

http://geotools.org/javadocs/org/geotools/referencing/operation/projection/MapProjection.html

Projection definitions in many different formats for all projections can be downloaded from:

http://www.spatialreference.org/

E.g. http://www.spatialreference.org/ref/epsg/4326/

link|improve this answer
Geotools is complicated but very, very powerful - we use it at my job for coordinate and projection conversions, among other things. – Chamelaeon Feb 18 '10 at 15:45
feedback

Geotools is probably the best library to use for this. Taking a look at their CRS tutorial, it looks trivial to transform from one coordinate system to another using:

CoordinateReferenceSystem dataCRS = schema.getCoordinateReferenceSystem();
CoordinateReferenceSystem worldCRS = map.getCoordinateReferenceSystem();
boolean lenient = true; // allow for some error due to different datums
MathTransform transform = CRS.findMathTransform(dataCRS, worldCRS, lenient);

Your CRS references can be retrieved using:

CRS.decode("EPSG:4326")

Per the javadoc.

link|improve this answer
feedback

Also interesting: Proj4j

Proj4J is a Java library to transform point coordinates from one geographic coordinate system to another, including datum transformations. The core of this library is a port of the PROJ.4 C library.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown