Class GeometryCollection
java.lang.Object
org.locationtech.jts.geom.Geometry
org.locationtech.jts.geom.GeometryCollection
- All Implemented Interfaces:
Serializable, Cloneable, Comparable
- Direct Known Subclasses:
MultiLineString, MultiPoint, MultiPolygon
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Geometry[]Internal representation of thisGeometryCollection.Fields inherited from class Geometry
envelope, factory, SRID, TYPECODE_GEOMETRYCOLLECTION, TYPECODE_LINEARRING, TYPECODE_LINESTRING, TYPECODE_MULTILINESTRING, TYPECODE_MULTIPOINT, TYPECODE_MULTIPOLYGON, TYPECODE_POINT, TYPECODE_POLYGON, TYPENAME_GEOMETRYCOLLECTION, TYPENAME_LINEARRING, TYPENAME_LINESTRING, TYPENAME_MULTILINESTRING, TYPENAME_MULTIPOINT, TYPENAME_MULTIPOLYGON, TYPENAME_POINT, TYPENAME_POLYGON -
Constructor Summary
ConstructorsConstructorDescriptionGeometryCollection(Geometry[] geometries, GeometryFactory factory) GeometryCollection(Geometry[] geometries, PrecisionModel precisionModel, int SRID) Deprecated.Use GeometryFactory instead -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(CoordinateFilter filter) Performs an operation with or on thisGeometry's coordinates.voidapply(CoordinateSequenceFilter filter) Performs an operation on the coordinates in thisGeometry'sCoordinateSequences.voidapply(GeometryComponentFilter filter) Performs an operation with or on this Geometry and its component Geometry's.voidapply(GeometryFilter filter) Performs an operation with or on thisGeometryand its subelementGeometrys (if any).clone()Deprecated.protected intReturns whether thisGeometryis greater than, equal to, or less than anotherGeometryhaving the same class.protected intReturns whether thisGeometryis greater than, equal to, or less than anotherGeometryof the same class.protected EnvelopeReturns the minimum and maximum x and y values in thisGeometry, or a nullEnvelopeif thisGeometryis empty.protected GeometryCollectionAn internal method to copy subclass-specific geometry data.booleanequalsExact(Geometry other, double tolerance) Returns true if the twoGeometrys are exactly equal, up to a specified distance tolerance.doublegetArea()Returns the area of thisGeometryCollectionReturns the boundary, or an empty geometry of appropriate dimension if thisGeometryis empty.intReturns the dimension of thisGeometrys inherent boundary.Returns a vertex of this geometry (usually, but not necessarily, the first one), ornullif the geometry is empty.Collects all coordinates of all subgeometries into an Array.intReturns the dimension of this geometry.getGeometryN(int n) Returns an elementGeometryfrom aGeometryCollection(orthis, if the geometry is not a collection).Returns the name of this Geometry's actual class.doubleReturns the length of thisGeometry.intReturns the number ofGeometrys in aGeometryCollection(or 1, if the geometry is not a collection).intReturns the count of thisGeometrys vertices.protected intbooleanhasDimension(int dim) Tests whether an atomic geometry or any element of a collection has the specified dimension.booleanisEmpty()Tests whether the set of points covered by thisGeometryis empty.voidConverts thisGeometryto normal form (or canonical form ).reverse()Creates aGeometryCollectionwith every component reversed.protected GeometryCollectionMethods inherited from class Geometry
buffer, buffer, buffer, compare, compareTo, compareTo, contains, convexHull, copy, coveredBy, covers, crosses, difference, disjoint, distance, equal, equals, equals, equalsExact, equalsNorm, equalsTopo, geometryChanged, geometryChangedAction, getCentroid, getEnvelope, getEnvelopeInternal, getFactory, getInteriorPoint, getPrecisionModel, getSRID, getUserData, hashCode, hasNonEmptyElements, hasNullElements, intersection, intersects, isEquivalentClass, isGeometryCollection, isRectangle, isSimple, isValid, isWithinDistance, norm, overlaps, relate, relate, setSRID, setUserData, symDifference, toString, toText, touches, union, union, within
-
Field Details
-
geometries
Internal representation of thisGeometryCollection.
-
-
Constructor Details
-
GeometryCollection
Deprecated.Use GeometryFactory instead -
GeometryCollection
- Parameters:
geometries- theGeometrys for thisGeometryCollection, ornullor an empty array to create the empty geometry. Elements may be emptyGeometrys, but notnulls.
-
-
Method Details
-
getCoordinate
Description copied from class:GeometryReturns a vertex of this geometry (usually, but not necessarily, the first one), ornullif the geometry is empty. The returned coordinate should not be assumed to be an actualCoordinateobject used in the internal representation.- Specified by:
getCoordinatein classGeometry- Returns:
- a coordinate which is a vertex of this
Geometry.
-
getCoordinates
Collects all coordinates of all subgeometries into an Array. Note that while changes to the coordinate objects themselves may modify the Geometries in place, the returned Array as such is only a temporary container which is not synchronized back.- Specified by:
getCoordinatesin classGeometry- Returns:
- the collected coordinates
- See Also:
-
isEmpty
public boolean isEmpty()Description copied from class:GeometryTests whether the set of points covered by thisGeometryis empty.Note this test is for topological emptiness, not structural emptiness. A collection containing only empty elements is reported as empty. To check structural emptiness use
Geometry.getNumGeometries(). -
getDimension
public int getDimension()Description copied from class:GeometryReturns the dimension of this geometry. The dimension of a geometry is is the topological dimension of its embedding in the 2-D Euclidean plane. In the JTS spatial model, dimension values are in the set {0,1,2}.Note that this is a different concept to the dimension of the vertex
Coordinates. The geometry dimension can never be greater than the coordinate dimension. For example, a 0-dimensional geometry (e.g. a Point) may have a coordinate dimension of 3 (X,Y,Z).- Specified by:
getDimensionin classGeometry- Returns:
- the topological dimension of this geometry.
- See Also:
-
hasDimension
public boolean hasDimension(int dim) Description copied from class:GeometryTests whether an atomic geometry or any element of a collection has the specified dimension. In particular, this can be used with mixed-dimensionGeometryCollections to test if they contain an element of the specified dimension.- Overrides:
hasDimensionin classGeometry- Parameters:
dim- the dimension to test- Returns:
- true if the geometry has or contains an element with the dimension
- See Also:
-
getBoundaryDimension
public int getBoundaryDimension()Description copied from class:GeometryReturns the dimension of thisGeometrys inherent boundary.- Specified by:
getBoundaryDimensionin classGeometry- Returns:
- the dimension of the boundary of the class implementing this
interface, whether or not this object is the empty geometry. Returns
Dimension.FALSEif the boundary is the empty geometry.
-
getNumGeometries
public int getNumGeometries()Description copied from class:GeometryReturns the number ofGeometrys in aGeometryCollection(or 1, if the geometry is not a collection).- Overrides:
getNumGeometriesin classGeometry- Returns:
- the number of geometries contained in this geometry
-
getGeometryN
Description copied from class:GeometryReturns an elementGeometryfrom aGeometryCollection(orthis, if the geometry is not a collection).- Overrides:
getGeometryNin classGeometry- Parameters:
n- the index of the geometry element- Returns:
- the n'th geometry contained in this geometry
-
getNumPoints
public int getNumPoints()Description copied from class:GeometryReturns the count of thisGeometrys vertices. TheGeometrys contained by compositeGeometrys must be Geometry's; that is, they must implementgetNumPoints- Specified by:
getNumPointsin classGeometry- Returns:
- the number of vertices in this
Geometry
-
getGeometryType
Description copied from class:GeometryReturns the name of this Geometry's actual class.- Specified by:
getGeometryTypein classGeometry- Returns:
- the name of this
Geometrys actual class
-
getBoundary
Description copied from class:GeometryReturns the boundary, or an empty geometry of appropriate dimension if thisGeometryis empty. (In the case of zero-dimensional geometries, ' an empty GeometryCollection is returned.) For a discussion of this function, see the OpenGIS Simple Features Specification. As stated in SFS Section 2.1.13.1, "the boundary of a Geometry is a set of Geometries of the next lower dimension."- Specified by:
getBoundaryin classGeometry- Returns:
- the closure of the combinatorial boundary of this
Geometry
-
getArea
-
getLength
public double getLength()Description copied from class:GeometryReturns the length of thisGeometry. Linear geometries return their length. Areal geometries return their perimeter. They override this function to compute the area. Others return 0.0 -
equalsExact
Description copied from class:GeometryReturns true if the twoGeometrys are exactly equal, up to a specified distance tolerance. Two Geometries are exactly equal within a distance tolerance if and only if:- they have the same structure
- they have the same values for their vertices, within the given tolerance distance, in exactly the same order.
GeometryFactory, theSRID, or theuserDatafields.To properly test equality between different geometries, it is usually necessary to
Geometry.normalize()them first.- Specified by:
equalsExactin classGeometry- Parameters:
other- theGeometrywith which to compare thisGeometrytolerance- distance at or below which twoCoordinates are considered equal- Returns:
trueif this and the otherGeometryhave identical structure and point values, up to the distance tolerance.- See Also:
-
apply
Description copied from class:GeometryPerforms an operation with or on thisGeometry's coordinates. If this method modifies any coordinate values,Geometry.geometryChanged()must be called to update the geometry state. Note that you cannot use this method to modify this Geometry if its underlying CoordinateSequence's #get method returns a copy of the Coordinate, rather than the actual Coordinate stored (if it even stores Coordinate objects at all). -
apply
Description copied from class:GeometryPerforms an operation on the coordinates in thisGeometry'sCoordinateSequences. If the filter reports that a coordinate value has been changed,Geometry.geometryChanged()will be called automatically. -
apply
Description copied from class:GeometryPerforms an operation with or on thisGeometryand its subelementGeometrys (if any). Only GeometryCollections and subclasses have subelement Geometry's. -
apply
Description copied from class:GeometryPerforms an operation with or on this Geometry and its component Geometry's. Only GeometryCollections and Polygons have component Geometry's; for Polygons they are the LinearRings of the shell and holes. -
clone
Deprecated.Creates and returns a full copy of thisGeometryCollectionobject. (including all coordinates contained by it). -
copyInternal
Description copied from class:GeometryAn internal method to copy subclass-specific geometry data.- Specified by:
copyInternalin classGeometry- Returns:
- a copy of the target geometry object.
-
normalize
public void normalize()Description copied from class:GeometryConverts thisGeometryto normal form (or canonical form ). Normal form is a unique representation forGeometrys. It can be used to test whether twoGeometrys are equal in a way that is independent of the ordering of the coordinates within them. Normal form equality is a stronger condition than topological equality, but weaker than pointwise equality. The definitions for normal form use the standard lexicographical ordering for coordinates. "Sorted in order of coordinates" means the obvious extension of this ordering to sequences of coordinates.NOTE that this method mutates the value of this geometry in-place. If this is not safe and/or wanted, the geometry should be cloned prior to normalization.
-
computeEnvelopeInternal
Description copied from class:GeometryReturns the minimum and maximum x and y values in thisGeometry, or a nullEnvelopeif thisGeometryis empty. UnlikegetEnvelopeInternal, this method calculates theEnvelopeeach time it is called;getEnvelopeInternalcaches the result of this method.- Specified by:
computeEnvelopeInternalin classGeometry- Returns:
- this
Geometrys bounding box; if theGeometryis empty,Envelope#isNullwill returntrue
-
compareToSameClass
Description copied from class:GeometryReturns whether thisGeometryis greater than, equal to, or less than anotherGeometryhaving the same class.- Specified by:
compareToSameClassin classGeometry- Parameters:
o- aGeometryhaving the same class as thisGeometry- Returns:
- a positive number, 0, or a negative number, depending on whether
this object is greater than, equal to, or less than
o, as defined in "Normal Form For Geometry" in the JTS Technical Specifications
-
compareToSameClass
Description copied from class:GeometryReturns whether thisGeometryis greater than, equal to, or less than anotherGeometryof the same class. using the givenCoordinateSequenceComparator.- Specified by:
compareToSameClassin classGeometry- Parameters:
o- aGeometryhaving the same class as thisGeometrycomp- aCoordinateSequenceComparator- Returns:
- a positive number, 0, or a negative number, depending on whether
this object is greater than, equal to, or less than
o, as defined in "Normal Form For Geometry" in the JTS Technical Specifications
-
getTypeCode
protected int getTypeCode()- Specified by:
getTypeCodein classGeometry
-
reverse
Creates aGeometryCollectionwith every component reversed. The order of the components in the collection are not reversed.- Overrides:
reversein classGeometry- Returns:
- a
GeometryCollectionin the reverse order
-
reverseInternal
- Specified by:
reverseInternalin classGeometry
-