Package | Description |
---|---|
org.locationtech.jts.algorithm |
Contains classes and interfaces implementing fundamental computational geometry algorithms.
|
org.locationtech.jts.awt |
Classes to perform conversions from Java2D shape objects.
|
org.locationtech.jts.geom |
Contains the
Geometry interface hierarchy and supporting classes. |
org.locationtech.jts.geom.util |
Provides classes that parse and modify Geometry objects.
|
org.locationtech.jts.geomgraph |
Contains classes that implement topology graphs.
|
org.locationtech.jts.io |
Contains the interfaces for converting JTS objects to and from other formats.
|
org.locationtech.jts.io.gml2 |
Classes to read and write the GML2 geometry format.
|
org.locationtech.jts.io.kml | |
org.locationtech.jts.operation.buffer |
Provides classes for computing buffers of geometries
|
org.locationtech.jts.operation.distance |
Provides classes for computing the distance between geometries
|
org.locationtech.jts.operation.distance3d | |
org.locationtech.jts.operation.predicate |
Classes which implement topological predicates optimized for particular kinds of geometries.
|
org.locationtech.jts.operation.valid |
Provides classes for testing the validity of geometries.
|
org.locationtech.jtsexample.geom.prep | |
org.locationtech.jtsexample.technique | |
org.locationtech.jtstest.testbuilder |
Modifier and Type | Method and Description |
---|---|
private int |
PointLocator.locateOnPoint(Coordinate p,
Point pt) |
Modifier and Type | Method and Description |
---|---|
private java.awt.Shape |
ShapeWriter.toShape(Point point) |
Modifier and Type | Method and Description |
---|---|
Point |
Point.copy()
Creates and returns a full copy of this
Point object. |
Point |
GeometryFactory.createPoint() |
Point |
GeometryFactory.createPoint(Coordinate coordinate)
Creates a Point using the given Coordinate.
|
Point |
GeometryFactory.createPoint(CoordinateSequence coordinates)
Creates a Point using the given CoordinateSequence; a null or empty
CoordinateSequence will create an empty Point.
|
static Point |
GeometryFactory.createPointFromInternalCoord(Coordinate coord,
Geometry exemplar) |
private Point |
Geometry.createPointFromInternalCoord(Coordinate coord,
Geometry exemplar) |
Point |
Geometry.getCentroid()
Computes the centroid of this
Geometry . |
Point |
LineString.getEndPoint() |
Point |
Geometry.getInteriorPoint()
Computes an interior point of this
Geometry . |
Point |
LineString.getPointN(int n) |
Point |
LineString.getStartPoint() |
static Point[] |
GeometryFactory.toPointArray(java.util.Collection points)
Converts the
List to an array. |
Modifier and Type | Method and Description |
---|---|
MultiPoint |
GeometryFactory.createMultiPoint(Point[] point)
Creates a
MultiPoint using the given Point s. |
Constructor and Description |
---|
MultiPoint(Point[] points,
GeometryFactory factory) |
MultiPoint(Point[] points,
PrecisionModel precisionModel,
int SRID)
Deprecated.
Use GeometryFactory instead
|
Modifier and Type | Method and Description |
---|---|
protected Geometry |
GeometryTransformer.transformPoint(Point geom,
Geometry parent) |
Modifier and Type | Method and Description |
---|---|
private void |
GeometryGraph.addPoint(Point p)
Add a Point to the graph.
|
Modifier and Type | Method and Description |
---|---|
private Point |
WKBReader.readPoint() |
private Point |
WKTReader.readPointText()
Creates a
Point using the next token in the stream. |
private Point[] |
WKTReader.toPoints(Coordinate[] coordinates)
Creates an array of
Point s having the given Coordinate
s. |
Modifier and Type | Method and Description |
---|---|
private void |
WKBWriter.writePoint(Point pt,
OutStream os) |
Modifier and Type | Method and Description |
---|---|
private void |
GMLWriter.writePoint(Point p,
java.io.Writer writer,
int level) |
Modifier and Type | Method and Description |
---|---|
private void |
KMLWriter.writePoint(Point p,
java.lang.String attributes,
int level,
java.lang.StringBuffer buf) |
Modifier and Type | Method and Description |
---|---|
private void |
OffsetCurveSetBuilder.addPoint(Point p)
Add a Point to the graph.
|
Modifier and Type | Method and Description |
---|---|
private void |
DistanceOp.computeMinDistance(LineString line,
Point pt,
GeometryLocation[] locGeom) |
Modifier and Type | Method and Description |
---|---|
private void |
Distance3DOp.computeMinDistanceLinePoint(LineString line,
Point point,
boolean flip) |
private void |
Distance3DOp.computeMinDistancePointPoint(Point point0,
Point point1,
boolean flip) |
private void |
Distance3DOp.computeMinDistancePolygonPoint(PlanarPolygon3D polyPlane,
Point point,
boolean flip) |
Modifier and Type | Method and Description |
---|---|
private boolean |
RectangleContains.isPointContainedInBoundary(Point point) |
Modifier and Type | Method and Description |
---|---|
private void |
IsValidOp.checkValid(Point g)
Checks validity of a Point.
|
Modifier and Type | Method and Description |
---|---|
(package private) static Point |
PreparedGeometryExample.createRandomPoint() |
Modifier and Type | Method and Description |
---|---|
(package private) static Point |
SearchUsingPreparedGeometryIndex.createRandomPoint() |
Modifier and Type | Field and Description |
---|---|
(package private) Point |
PointNode.pt |
Constructor and Description |
---|
PointNode(Point p,
GeometryContext context) |