com.github.filosganga.geogson.jts.PolygonCodec 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.Polygon;
import com.vividsolutions.jts.geom.GeometryFactory;
/**
* @author Filippo De Luca - [email protected]
*/
public class PolygonCodec extends AbstractJtsCodec {
/**
* Create a codec for a {@link com.vividsolutions.jts.geom.Polygon JTS
* Polygon} with a given {@link GeometryFactory}
*
* @param geometryFactory
* a {@link GeometryFactory} defining a PrecisionModel and a SRID
*/
public PolygonCodec(GeometryFactory geometryFactory) {
super(geometryFactory);
}
@Override
public Polygon toGeometry(com.vividsolutions.jts.geom.Polygon src) {
return fromJtsPolygon(src);
}
@Override
public com.vividsolutions.jts.geom.Polygon fromGeometry(Polygon src) {
return toJtsPolygon(src);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy