Skip to content

CoordinatesTransformation

Christian Gendreau edited this page Nov 18, 2013 · 26 revisions

-DRAFT-

The transformations are accomplished using GeoTools 10 [JTS API] (http://docs.geotools.org/latest/userguide/library/api/jts.html).

The accuracy of processed coordinates depends on the precision of the provided coordinates and the transformation needed. Accuracy can differ from one CRS to another. You should always test the result to ensure the accuracy is suitable for you.

You can also provide the exact parameters to use with CRS.parseWKT(String wtk).

CoordinatesToWGS84 Processor

In order to use this processor, you need to include some GeoTools 10 dependencies:

<dependency>
	<groupId>org.geotools</groupId>
	<artifactId>gt-epsg-hsql</artifactId>
	<version>10.0</version>
</dependency>
<dependency>
	<groupId>org.geotools</groupId>
	<artifactId>gt-main</artifactId>
	<version>10.0</version>
</dependency>
//ToDo

Clone this wiki locally