com.github.filosganga.geogson.jts.PointCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geogson-jts Show documentation
Show all versions of geogson-jts Show documentation
GeoJSON support for Google Gson - JTS
package com.github.filosganga.geogson.jts;
import com.github.filosganga.geogson.model.Point;
import com.vividsolutions.jts.geom.Coordinate;
import com.vividsolutions.jts.geom.GeometryFactory;
/**
* @author Filippo De Luca - [email protected]
*/
public class PointCodec extends AbstractJtsCodec {
/**
* Create a codec for a {@link com.vividsolutions.jts.geom.Point JTS
* Point} with a given {@link GeometryFactory}
*
* @param geometryFactory
* a {@link GeometryFactory} defining a PrecisionModel and a SRID
*/
public PointCodec(GeometryFactory geometryFactory) {
super(geometryFactory);
}
@Override
public Point toGeometry(com.vividsolutions.jts.geom.Point src) {
return fromJtsPoint(src);
}
@Override
public com.vividsolutions.jts.geom.Point fromGeometry(Point src) {
return this.geometryFactory.createPoint(new Coordinate(src.lon(), src.lat()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy