org.geolatte.geom.codec.PostgisWkbDecoder Maven / Gradle / Ivy
Show all versions of geolatte-geom Show documentation
/*
* This file is part of the GeoLatte project.
*
* GeoLatte 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 3 of the License, or
* (at your option) any later version.
*
* GeoLatte 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 GeoLatte. If not, see .
*
* Copyright (C) 2010 - 2011 and Ownership of code is shared by:
* Qmino bvba - Romeinsestraat 18 - 3001 Heverlee (http://www.qmino.com)
* Geovise bvba - Generaal Eisenhowerlei 9 - 2140 Antwerpen (http://www.geovise.com)
*/
package org.geolatte.geom.codec;
import org.geolatte.geom.ByteBuffer;
import org.geolatte.geom.Position;
import org.geolatte.geom.crs.CoordinateReferenceSystem;
import org.geolatte.geom.crs.CoordinateReferenceSystems;
import org.geolatte.geom.crs.CrsRegistry;
import org.geolatte.geom.crs.Unit;
import static org.geolatte.geom.crs.CoordinateReferenceSystems.*;
/**
* A Wkb Decoder for PostGIS EWKB
* This WKBDecoder supports the EWKB dialect of PostGIS versions 1.0 tot 1.5+.
* This implementation is not thread-safe.
*
* @author Karel Maesen, Geovise BVBA
* creation-date: Nov 11, 2010
*/
class PostgisWkbDecoder extends AbstractWkbDecoder {
@Override
protected void prepare(ByteBuffer byteBuffer) {
//do nothing
}
@Override
@SuppressWarnings("unchecked")
protected CoordinateReferenceSystem
readCrs(ByteBuffer byteBuffer, int typeCode, CoordinateReferenceSystem
crs) {
boolean hasM = (typeCode & PostgisWkbTypeMasks.M_FLAG) == PostgisWkbTypeMasks.M_FLAG;
boolean hasZ = (typeCode & PostgisWkbTypeMasks.Z_FLAG) == PostgisWkbTypeMasks.Z_FLAG;
// if set, just validate
if (crs != null) {
validateCrs(crs, hasM, hasZ);
return crs;
}
CoordinateReferenceSystem crsDeclared;
if (hasSrid(typeCode)) {
int srid = byteBuffer.getInt();
crsDeclared = CrsRegistry.getCoordinateReferenceSystemForEPSG(srid, CoordinateReferenceSystems.PROJECTED_2D_METER);
} else {
crsDeclared = CoordinateReferenceSystems.PROJECTED_2D_METER;
}
if (hasZ) {
crsDeclared = addVerticalSystem(crsDeclared, Unit.METER);
}
if (hasM) {
crsDeclared = addLinearSystem(crsDeclared, Unit.METER);
}
return (CoordinateReferenceSystem
)crsDeclared;
}
private void validateCrs(CoordinateReferenceSystem> crs, boolean hasM, boolean hasZ) {
if ( (hasM && ! hasMeasureAxis(crs)) ||
(hasZ && ! hasVerticalAxis(crs))) {
throw new WkbDecodeException("WKB inconsistent with specified Coordinate Reference System");
}
}
@Override
protected boolean hasSrid(int typeCode) {
return (typeCode & PostgisWkbTypeMasks.SRID_FLAG) == PostgisWkbTypeMasks.SRID_FLAG;
}
}