In my GIS application the data are sometimes stored in "Google Mercator" (in meters), sometimes in WGS84 LatLon. I'd like a reliable library to convert this data easily and in a "scientific" way, rather than messing with it manually, risking big errors.

I've come across Proj4, which apparently is able to do this: http://trac.osgeo.org/proj

but I can't find a similar library for Java (or Groovy). Such a project would be highly beneficial, given that those projections are increasingly common in online applications. A little jar would be amazing :-)

There is a Java port, but there aren't any files to download: http://www.jhlabs.com/java/maps/proj/

Basically I need to do this type of conversion: http://proj4js.org

Any idea about how to do this in Java?

Thanks, Mulone

link|improve this question

65% accept rate
on the same page the author mentions the new location of the Java port: sourceforge.net/projects/jmapprojlib – Andreas_D Jan 21 '11 at 13:20
feedback

2 Answers

Have a look at GeoTools. The bad thing is you don't get a little jar, but about a hundred.

This Tutorial might show something similiar to what you want to accomplish.

link|improve this answer
thanks, i was looking at GeoTools, but as you said it looks too big for what I need. – Mulone Jan 21 '11 at 13:24
1  
GeoTools is very modular, so you can just use the jars needed for the job. – adrianboimvaser Jan 21 '11 at 15:37
Exactly. You should be able to import only that which you need. – Wouter Lievens Jan 21 '11 at 16:05
feedback

Java port by JH Labs is now on SourceForge: http://sourceforge.net/projects/jmapprojlib/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.