}
public static OGCGeometry fromBinary(ByteBuffer binary) {
OperatorImportFromWkb op = (OperatorImportFromWkb) OperatorFactoryLocal
.getInstance().getOperator(Operator.Type.ImportFromWkb);
OGCStructure ogcStructure = op.executeOGC(0, binary, null);
return OGCGeometry.createFromOGCStructure(ogcStructure,
SpatialReference.create(4326));
}