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