
com.orientechnologies.spatial.shape.OComplexShapeBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orientdb-spatial Show documentation
Show all versions of orientdb-spatial Show documentation
Lucene plugin for OrientDB NoSQL document graph dbms
/*
*
* * Copyright 2014 Orient Technologies.
* *
* * Licensed under the Apache License, Version 2.0 (the "License");
* * you may not use this file except in compliance with the License.
* * You may obtain a copy of the License at
* *
* * http://www.apache.org/licenses/LICENSE-2.0
* *
* * Unless required by applicable law or agreed to in writing, software
* * distributed under the License is distributed on an "AS IS" BASIS,
* * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* * See the License for the specific language governing permissions and
* * limitations under the License.
*
*/
package com.orientechnologies.spatial.shape;
import com.spatial4j.core.shape.*;
import com.spatial4j.core.shape.jts.JtsGeometry;
import com.spatial4j.core.shape.jts.JtsPoint;
import com.vividsolutions.jts.geom.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* Created by Enrico Risa on 13/08/15.
*/
public abstract class OComplexShapeBuilder extends OShapeBuilder {
protected List> coordinatesFromLineString(LineString ring) {
Coordinate[] coordinates = ring.getCoordinates();
List> numbers = new ArrayList>();
for (Coordinate coordinate : coordinates) {
numbers.add(Arrays.asList(coordinate.x, coordinate.y));
}
return numbers;
}
protected LineString createLineString(List> coordinates) {
Coordinate[] coords = new Coordinate[coordinates.size()];
int i = 0;
for (List c : coordinates) {
coords[i] = new Coordinate(c.get(0).doubleValue(), c.get(1).doubleValue());
i++;
}
return GEOMETRY_FACTORY.createLineString(coords);
}
protected JtsGeometry createMultiPoint(ShapeCollection geometries) {
Coordinate[] points = new Coordinate[geometries.size()];
int i = 0;
for (JtsPoint geometry : geometries) {
points[i] = new Coordinate(geometry.getX(), geometry.getY());
i++;
}
MultiPoint multiPoints = GEOMETRY_FACTORY.createMultiPoint(points);
return SPATIAL_CONTEXT.makeShape(multiPoints);
}
protected JtsGeometry createMultiLine(ShapeCollection geometries) {
LineString[] multiLineString = new LineString[geometries.size()];
int i = 0;
for (JtsGeometry geometry : geometries) {
multiLineString[i] = (LineString) geometry.getGeom();
i++;
}
MultiLineString multiPoints = GEOMETRY_FACTORY.createMultiLineString(multiLineString);
return SPATIAL_CONTEXT.makeShape(multiPoints);
}
protected JtsGeometry createMultiPolygon(ShapeCollection geometries) {
Polygon[] polygons = new Polygon[geometries.size()];
int i = 0;
for (Shape geometry : geometries) {
if (geometry instanceof JtsGeometry) {
polygons[i] = (Polygon) ((JtsGeometry) geometry).getGeom();
} else {
Rectangle rectangle = (Rectangle) geometry;
Geometry geometryFrom = SPATIAL_CONTEXT.getGeometryFrom(rectangle);
polygons[i] = (Polygon) geometryFrom;
}
i++;
}
MultiPolygon multiPolygon = GEOMETRY_FACTORY.createMultiPolygon(polygons);
return SPATIAL_CONTEXT.makeShape(multiPolygon);
}
protected boolean isMultiPolygon(ShapeCollection collection) {
boolean isMultiPolygon = true;
for (Shape shape : collection) {
if (!isPolygon(shape)) {
isMultiPolygon = false;
break;
}
}
return isMultiPolygon;
}
protected boolean isMultiPoint(ShapeCollection collection) {
boolean isMultipoint = true;
for (Shape shape : collection) {
if (!isPoint(shape)) {
isMultipoint = false;
break;
}
}
return isMultipoint;
}
protected boolean isMultiLine(ShapeCollection collection) {
boolean isMultipoint = true;
for (Shape shape : collection) {
if (!isLineString(shape)) {
isMultipoint = false;
break;
}
}
return isMultipoint;
}
private boolean isLineString(Shape shape) {
if (shape instanceof JtsGeometry) {
Geometry geom = ((JtsGeometry) shape).getGeom();
return geom instanceof LineString;
}
return false;
}
protected boolean isPoint(Shape shape) {
return shape instanceof com.spatial4j.core.shape.Point;
}
protected boolean isPolygon(Shape shape) {
if (shape instanceof JtsGeometry) {
Geometry geom = ((JtsGeometry) shape).getGeom();
return geom instanceof Polygon;
}
if (shape instanceof Rectangle) {
return true;
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy