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

org.postgis.PGgeometryLW Maven / Gradle / Ivy

Go to download

PostGIS adds support for geographic objects to the PostgreSQL object-relational database.

The newest version!
/*
 * PGgeometryLW.java
 * 
 * PostGIS extension for PostgreSQL JDBC driver - PGobject LWGeometry Wrapper
 * 
 * (C) 2005 Markus Schaber, [email protected]
 * 
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation, either version 2.1 of the License.
 * 
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with this library; if not, write to the Free Software Foundation, Inc.,
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA or visit the web at
 * http://www.gnu.org.
 * 
 * $Id: PGgeometryLW.java 1622 2005-04-15 14:04:34Z mschaber $
 */

package org.postgis;

import org.postgis.binary.BinaryWriter;

import java.sql.SQLException;

/**
 * This is a subclas of PGgeometry that uses hex encoded EWKB to communicate
 * with the backend, which is much more efficient, but only works with Lwgeom
 * enabled PostGIS (1.0.0 and up).
 */

public class PGgeometryLW extends PGgeometry {
    /* JDK 1.5 Serialization */
    private static final long serialVersionUID = 0x100;
    
    BinaryWriter bw = new BinaryWriter();

    public PGgeometryLW() {
        super();
    }

    public PGgeometryLW(Geometry geom) {
        super(geom);
    }

    public PGgeometryLW(String value) throws SQLException {
        super(value);
    }

    public String toString() {
        return geom.toString();
    }

    public String getValue() {
        return bw.writeHexed(geom);
    }

    public Object clone() {
        return new PGgeometryLW(geom);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy