Uses of Class
org.locationtech.jts.geomgraph.Node
-
Packages that use Node Package Description org.locationtech.jts.geomgraph Contains classes that implement topology graphs.org.locationtech.jts.operation.buffer Provides classes for computing buffers of geometriesorg.locationtech.jts.operation.overlay Contains classes that perform a topological overlay to compute boolean spatial functions.org.locationtech.jts.operation.relate Contains classes to implement the computation of the spatial relationships ofGeometry
s. -
-
Uses of Node in org.locationtech.jts.geomgraph
Fields in org.locationtech.jts.geomgraph declared as Node Modifier and Type Field Description private Node
EdgeEnd. node
Methods in org.locationtech.jts.geomgraph that return Node Modifier and Type Method Description Node
NodeMap. addNode(Coordinate coord)
This method expects that a node has a coordinate value.Node
NodeMap. addNode(Node n)
Node
PlanarGraph. addNode(Coordinate coord)
Node
PlanarGraph. addNode(Node node)
Node
NodeFactory. createNode(Coordinate coord)
The basic node constructor does not allow for incident edgesNode
NodeMap. find(Coordinate coord)
Node
PlanarGraph. find(Coordinate coord)
Node
EdgeEnd. getNode()
Methods in org.locationtech.jts.geomgraph with parameters of type Node Modifier and Type Method Description Node
NodeMap. addNode(Node n)
Node
PlanarGraph. addNode(Node node)
void
Node. mergeLabel(Node n)
void
EdgeEnd. setNode(Node node)
-
Uses of Node in org.locationtech.jts.operation.buffer
Methods in org.locationtech.jts.operation.buffer with parameters of type Node Modifier and Type Method Description private void
BufferSubgraph. add(Node node, java.util.Stack nodeStack)
Adds the argument node and all its out edges to the subgraphprivate void
BufferSubgraph. addReachable(Node startNode)
Adds all nodes and edges reachable from this node to the subgraph.private void
BufferSubgraph. computeNodeDepth(Node n)
void
BufferSubgraph. create(Node node)
Creates the subgraph consisting of all edges reachable from this node. -
Uses of Node in org.locationtech.jts.operation.overlay
Methods in org.locationtech.jts.operation.overlay that return Node Modifier and Type Method Description Node
OverlayNodeFactory. createNode(Coordinate coord)
Methods in org.locationtech.jts.operation.overlay with parameters of type Node Modifier and Type Method Description private void
PointBuilder. filterCoveredNodeToPoint(Node n)
Converts non-covered nodes to Point objects and adds them to the result.private void
OverlayOp. labelIncompleteNode(Node n, int targetIndex)
Label an isolated node with its relationship to the target geometry. -
Uses of Node in org.locationtech.jts.operation.relate
Subclasses of Node in org.locationtech.jts.operation.relate Modifier and Type Class Description class
RelateNode
Represents a node in the topological graph used to compute spatial relationships.Methods in org.locationtech.jts.operation.relate that return Node Modifier and Type Method Description Node
RelateNodeFactory. createNode(Coordinate coord)
Methods in org.locationtech.jts.operation.relate with parameters of type Node Modifier and Type Method Description private void
RelateComputer. labelIsolatedNode(Node n, int targetIndex)
Label an isolated node with its relationship to the target geometry.
-