Class LineString
- All Implemented Interfaces:
Serializable, Cloneable, Comparable, Lineal
- Direct Known Subclasses:
LinearRing
LineString.
A LineString consists of a sequence of two or more vertices,
along with all points along the linearly-interpolated curves
(line segments) between each
pair of consecutive vertices.
Consecutive vertices may be equal.
The line segments in the line may intersect each other (in other words,
the linestring may "curl back" in itself and self-intersect.
Linestrings with exactly two identical points are invalid.
A linestring must have either 0 or 2 or more points.
If these conditions are not met, the constructors throw
an IllegalArgumentException
- Version:
- 1.7
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe minimum number of vertices allowed in a valid non-empty linestring.protected CoordinateSequenceThe points of thisLineString.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
ConstructorsConstructorDescriptionLineString(Coordinate[] points, PrecisionModel precisionModel, int SRID) Deprecated.Use GeometryFactory insteadLineString(CoordinateSequence points, GeometryFactory factory) Constructs aLineStringwith the given points. -
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 LineStringAn 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.Gets the boundary of this geometry.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.getCoordinateN(int n) Returns an array containing the values of all the vertices for this geometry.intReturns the dimension of this geometry.Returns the name of this Geometry's actual class.doubleReturns the length of thisLineStringintReturns the count of thisGeometrys vertices.getPointN(int n) protected intbooleanisClosed()booleanReturns true if the given point is a vertex of thisLineString.booleanisEmpty()Tests whether the set of points covered by thisGeometryis empty.protected booleanisEquivalentClass(Geometry other) Returns whether the twoGeometrys are equal, from the point of view of theequalsExactmethod.booleanisRing()voidNormalizes a LineString.reverse()Creates aLineStringwhose coordinates are in the reverse order of this objectsprotected LineStringMethods 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, getArea, getCentroid, getEnvelope, getEnvelopeInternal, getFactory, getGeometryN, getInteriorPoint, getNumGeometries, getPrecisionModel, getSRID, getUserData, hasDimension, hashCode, hasNonEmptyElements, hasNullElements, intersection, intersects, isGeometryCollection, isRectangle, isSimple, isValid, isWithinDistance, norm, overlaps, relate, relate, setSRID, setUserData, symDifference, toString, toText, touches, union, union, within
-
Field Details
-
MINIMUM_VALID_SIZE
public static final int MINIMUM_VALID_SIZEThe minimum number of vertices allowed in a valid non-empty linestring. Empty linestrings with 0 vertices are also valid.- See Also:
-
points
The points of thisLineString.
-
-
Constructor Details
-
LineString
Deprecated.Use GeometryFactory instead -
LineString
Constructs aLineStringwith the given points.- Parameters:
points- the points of the linestring, ornullto create the empty geometry.- Throws:
IllegalArgumentException- if too few points are provided
-
-
Method Details
-
getCoordinates
Description copied from class:GeometryReturns an array containing the values of all the vertices for this geometry. If the geometry is a composite, the array will contain all the vertices for the components, in the order in which the components occur in the geometry.In general, the array cannot be assumed to be the actual internal storage for the vertices. Thus modifying the array may not modify the geometry itself. Use the
CoordinateSequence.setOrdinate(int, int, double)method (possibly on the components) to modify the underlying data. If the coordinates are modified,Geometry.geometryChanged()must be called afterwards.- Specified by:
getCoordinatesin classGeometry- Returns:
- the vertices of this
Geometry - See Also:
-
getCoordinateSequence
-
getCoordinateN
-
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.
-
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:
-
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.
-
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(). -
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
-
getPointN
-
getStartPoint
-
getEndPoint
-
isClosed
public boolean isClosed() -
isRing
public boolean isRing() -
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
-
getLength
-
getBoundary
Gets the boundary of this geometry. The boundary of a lineal geometry is always a zero-dimensional geometry (which may be empty).- Specified by:
getBoundaryin classGeometry- Returns:
- the boundary geometry
- See Also:
-
reverse
Creates aLineStringwhose coordinates are in the reverse order of this objects- Overrides:
reversein classGeometry- Returns:
- a
LineStringwith coordinates in the reverse order
-
reverseInternal
- Specified by:
reverseInternalin classGeometry
-
isCoordinate
Returns true if the given point is a vertex of thisLineString.- Parameters:
pt- theCoordinateto check- Returns:
trueifptis one of thisLineString's vertices
-
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
-
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 thisLineStringobject. (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
-
isEquivalentClass
Description copied from class:GeometryReturns whether the twoGeometrys are equal, from the point of view of theequalsExactmethod. Called byequalsExact. In general, twoGeometryclasses are considered to be "equivalent" only if they are the same class. An exception isLineString, which is considered to be equivalent to its subclasses.- Overrides:
isEquivalentClassin classGeometry- Parameters:
other- theGeometrywith which to compare thisGeometryfor equality- Returns:
trueif the classes of the twoGeometrys are considered to be equal by theequalsExactmethod.
-
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
-