Uses of Class
eu.europa.ec.eurostat.jgiscotools.graph.base.structure.Node
-
Packages that use Node Package Description eu.europa.ec.eurostat.jgiscotools.graph.algo Various algorithms on graphs.eu.europa.ec.eurostat.jgiscotools.graph.algo.stroke Stroke analysis on graphs.eu.europa.ec.eurostat.jgiscotools.graph.base Basic manipulation of graphs.eu.europa.ec.eurostat.jgiscotools.graph.base.structure Graph structure. -
-
Uses of Node in eu.europa.ec.eurostat.jgiscotools.graph.algo
Methods in eu.europa.ec.eurostat.jgiscotools.graph.algo that return Node Modifier and Type Method Description static Node
GraphUtils. areConnected(Edge e1, Edge e2)
Check if two edges are connected.Methods in eu.europa.ec.eurostat.jgiscotools.graph.algo that return types with arguments of type Node Modifier and Type Method Description static Set<Node>
GraphUtils. getNodes(Collection<Edge> edges)
Methods in eu.europa.ec.eurostat.jgiscotools.graph.algo with parameters of type Node Modifier and Type Method Description static Edge
NodeReduction. ensure(Node n)
static Edge
NodeReduction. ensure(Node n, NodeReduction.NodeReductionCriteria nrc)
boolean
NodeReduction.NodeReductionCriteria. isReducable(Node n)
static void
EdgeMerging. merge(Graph g, Edge e1, Node n, Edge e2)
static void
NodeDisplacement. moveTo(Node n, double x, double y)
Method parameters in eu.europa.ec.eurostat.jgiscotools.graph.algo with type arguments of type Node Modifier and Type Method Description static Collection<Edge>
NodeReduction. ensure(Collection<Node> ns)
static Collection<Edge>
NodeReduction. ensure(Collection<Node> ns, NodeReduction.NodeReductionCriteria nrc)
-
Uses of Node in eu.europa.ec.eurostat.jgiscotools.graph.algo.stroke
Methods in eu.europa.ec.eurostat.jgiscotools.graph.algo.stroke with parameters of type Node Modifier and Type Method Description protected org.locationtech.jts.geom.Coordinate
StrokeConnectionSalienceComputation. getCoordinateForDeflation(Edge e, Node n)
-
Uses of Node in eu.europa.ec.eurostat.jgiscotools.graph.base
Methods in eu.europa.ec.eurostat.jgiscotools.graph.base with parameters of type Node Modifier and Type Method Description static Feature
GraphToFeature. asFeature(Node n)
static String
TopologyAnalysis. getTopologicalType(Node n)
static boolean
TopologyAnalysis. isCoastal(Node n)
static boolean
TopologyAnalysis. isDangle(Node n)
static boolean
TopologyAnalysis. isSingle(Node n)
-
Uses of Node in eu.europa.ec.eurostat.jgiscotools.graph.base.structure
Methods in eu.europa.ec.eurostat.jgiscotools.graph.base.structure that return Node Modifier and Type Method Description Node
Graph. buildNode(org.locationtech.jts.geom.Coordinate c)
Node
Graph. getCreateNodeAt(org.locationtech.jts.geom.Coordinate c)
Node
Edge. getN1()
Node
Edge. getN2()
Node
Graph. getNode(String id)
Node
Graph. getNodeAt(org.locationtech.jts.geom.Coordinate c)
Methods in eu.europa.ec.eurostat.jgiscotools.graph.base.structure that return types with arguments of type Node Modifier and Type Method Description Set<Node>
Face. getNodes()
Set<Node>
Graph. getNodes()
Collection<Node>
Graph. getNodesAt(org.locationtech.jts.geom.Envelope env)
Methods in eu.europa.ec.eurostat.jgiscotools.graph.base.structure with parameters of type Node Modifier and Type Method Description Edge
Graph. buildEdge(Node n1, Node n2)
Edge
Graph. buildEdge(Node n1, Node n2, org.locationtech.jts.geom.Coordinate[] coords)
Set<Edge>
Graph. getEdge(Node n1, Node n2)
void
Graph. insertInSpatialIndex(Node n)
void
Graph. remove(Node n)
boolean
Graph. removeFromSpatialIndex(Node n)
void
Edge. setN1(Node n)
void
Edge. setN2(Node n)
-