Uses of Class
org.openstreetmap.josm.data.osm.NodeGraph
-
Packages that use NodeGraph Package Description org.openstreetmap.josm.data.algorithms General purpose algorithm classes for OSM data validation.org.openstreetmap.josm.data.osm Provides the classes for OSM data:Primitives:Node,Way,RelationUsersTagsChangesetsUtilities classes -
-
Uses of NodeGraph in org.openstreetmap.josm.data.algorithms
Constructors in org.openstreetmap.josm.data.algorithms with parameters of type NodeGraph Constructor Description Tarjan(NodeGraph graph)Initialize the Tarjan's algorithm. -
Uses of NodeGraph in org.openstreetmap.josm.data.osm
Methods in org.openstreetmap.josm.data.osm that return NodeGraph Modifier and Type Method Description static NodeGraphNodeGraph. createDirectedGraphFromNodePairs(java.util.List<NodePair> pairs)Create a directed graph from the given node pairs.static NodeGraphNodeGraph. createDirectedGraphFromWays(java.util.Collection<Way> ways)Create a directed graph from the given ways.static NodeGraphNodeGraph. createNearlyUndirectedGraphFromNodeWays(java.util.Collection<Way> ways)Create a nearly undirected graph from the given ways, but prevent reversing of all non-new ways by fixing one direction.static NodeGraphNodeGraph. createUndirectedGraphFromNodeList(java.util.List<NodePair> pairs)Create an undirected graph from the given node pairs.static NodeGraphNodeGraph. createUndirectedGraphFromNodeWays(java.util.Collection<Way> ways)Create an undirected graph from the given ways, but prevent reversing of all non-new ways by fixing one direction.
-