All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.filosganga.geogson.jts.LineStringCodec Maven / Gradle / Ivy

There is a newer version: 1.4.31
Show newest version
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