public class LocationIndexedLine extends Object
Geometry
using LinearLocations as the index.| Constructor and Description |
|---|
LocationIndexedLine(Geometry linearGeom)
Constructs an object which allows linear referencing along
a given linear
Geometry. |
| Modifier and Type | Method and Description |
|---|---|
LinearLocation |
clampIndex(LinearLocation index)
Computes a valid index for this line
by clamping the given index to the valid range of index values
|
Geometry |
extractLine(LinearLocation startIndex,
LinearLocation endIndex)
Computes the
LineString for the interval
on the line between the given indices. |
Point |
extractPoint(LinearLocation index)
Computes the
Coordinates for the point
on the line at the given index. |
Point |
extractPoint(LinearLocation index,
double offsetDistance)
Computes the
Coordinates for the point
on the line at the given index, offset by the given distance. |
LinearLocation |
getEndIndex()
Returns the index of the end of the line
|
LinearLocation |
getStartIndex()
Returns the index of the start of the line
|
LinearLocation |
indexOf(Point pt)
Computes the index for a given point on the line.
|
LinearLocation |
indexOfAfter(Point pt,
LinearLocation minIndex)
Finds the index for a point on the line
which is greater than the given index.
|
LinearLocation[] |
indicesOf(Geometry subLine)
Computes the indices for a subline of the line.
|
boolean |
isValidIndex(LinearLocation index)
Tests whether an index is in the valid index range for the line.
|
LinearLocation |
project(Point pt)
Computes the index for the closest point on the line to the given point.
|
public LinearLocation clampIndex(LinearLocation index)
public Geometry extractLine(LinearLocation startIndex, LinearLocation endIndex)
LineString for the interval
on the line between the given indices.startIndex - the index of the start of the intervalendIndex - the index of the end of the intervalpublic Point extractPoint(LinearLocation index)
Coordinates for the point
on the line at the given index.
If the index is out of range the first or last point on the
line will be returned.
The Z-ordinate of the computed point will be interpolated from
the Z-ordinates of the line segment containing it, if they exist.index - the index of the desired pointpublic Point extractPoint(LinearLocation index, double offsetDistance)
Coordinates for the point
on the line at the given index, offset by the given distance.
If the index is out of range the first or last point on the
line will be returned.
The computed point is offset to the left of the line if the offset distance is
positive, to the right if negative.
The Z-ordinate of the computed point will be interpolated from
the Z-ordinates of the line segment containing it, if they exist.index - the index of the desired pointoffsetDistance - the distance the point is offset from the segment
(positive is to the left, negative is to the right)public LinearLocation getEndIndex()
public LinearLocation getStartIndex()
public LinearLocation indexOf(Point pt)
The supplied point does not necessarily have to lie precisely
on the line, but if it is far from the line the accuracy and
performance of this function is not guaranteed.
Use project(com.revolsys.jts.geom.Point) to compute a guaranteed result for points
which may be far from the line.
pt - a point on the lineproject(Point)public LinearLocation indexOfAfter(Point pt, LinearLocation minIndex)
project(com.revolsys.jts.geom.Point) to compute a guaranteed result for points
which may be far from the line.pt - a point on the lineminIndex - the value the returned index must be greater thanproject(Point)public LinearLocation[] indicesOf(Geometry subLine)
subLine - a subLine of the linepublic boolean isValidIndex(LinearLocation index)
index - the index to testtrue if the index is in the valid rangepublic LinearLocation project(Point pt)
pt - a point on the lineCopyright © 2015 Revolution Systems Inc.. All rights reserved.