Questions tagged [nodes]
The nodes tag has no summary.
81 questions
1 vote
1 answer
111 views
Remove duplicate vertices of a line Part 2
Part 1 of the question is available here: Remove duplicate vertices of a line Part 2: I'm working with a new batch of lines coming from a Service Area processing in Qgis and again I a need to remove ...
4 votes
2 answers
326 views
Removing duplicate vertices of line in QGIS
I have a large linear shape coming from a batch service area elaboration that I need to "clean" to extract real start and end vertices in a new shape. When I try to extract specified ...
0 votes
0 answers
93 views
V.Net.Salesman Unreachable Nodes at Intersections
I'm designing a network that has a layer of locations and a layer of street segments. I need to design a route to connect these locations along the street segments using the shortest route possible. ...
1 vote
1 answer
167 views
Counting outgoing links connected to a node [closed]
I've a large linear shape and I need to find all nodes with class >=3 connected to at least two outgoing links. It's actually a sewage graph, I'm trying to identify sewer dividers. I have read ...
2 votes
2 answers
113 views
Direction arrows (or lines) at node
I've got a set of lines "passing through" a node. The passing links are directional (not all possible combinations) I want to make arrows (line with marker) for each node to display what is ...
0 votes
0 answers
66 views
No path found between two points
I'm trying to find a path between different pairs of points, But within the thousands of pairs tried only a few actually result in a path. I find this odd but maybe it's normal. (note that when I'm ...
4 votes
1 answer
988 views
Retrieve map matched ways (and not just nodes) using OSRM and Overpass API
For my question I have prepared a jsFiddle demo requiring you to click at the map 5 times: If I understand this correctly, the OSRM does not care about ways. It only cares about nodes and their ...
1 vote
1 answer
1k views
Overpass API query to retrieve way ids given a list of node ids
Given a list of node ids returned by an OSRM map matching query I am trying to find a list of corresponding way ids: {"nodes":[384845483,3831831361,2628299968,502266756,346268605,373873712,...
2 votes
1 answer
215 views
Nodes returned by OSRM map match service not found in the PostGIS database
The call to OSRM map matching returns a list of nodes: {"code":"Ok","matchings":[{"confidence":0.000854076,"geometry":{"coordinates":[[8....
0 votes
0 answers
120 views
Issue with xml.etree.ElementTree while writing GeoPandas nodes data into OSM format
I have sample nodes data like below. I am writing geopandas into osm data using xml.etree.ElementTree but the end output is not matching the nodes format that is described in osm data. Actually at ...
1 vote
1 answer
59 views
Name arcs and nodes of a network of roads using only roads names
I have a network of roads composed of arcs (segment of road connecting two intersections) and nodes (intersection of two or more roads). Each road, which is composed of one or more arcs has a name (e....
0 votes
0 answers
32 views
Converting shapefile to digraph [duplicate]
I have used '''nx.read_shp''' for converting shapefile to network, but the result I am getting is quite different from how the actual shapefile looked like.
1 vote
0 answers
73 views
Removing nodes of polygon inside other polygons in QGIS
I have a shapefile with numerous errors of this type (see img. 1), i.e. polygons inside other polygons consisting of a few nodes. I have tried repairing the geometries with the tool and it doesn't ...
2 votes
1 answer
972 views
Counting nodes and edges in road network
I have a road network 'TR_ROAD' with EPSG:4283 crs and 1219 features. Based on geospatial theory, the road network is combination of nodes and edges. I am trying to count the number of nodes and ...
0 votes
1 answer
2k views
Seeing which node has given node ID in osmnx [closed]
I have been reading the documentation on OSMnx and I am trying to use the command osmnx.shortest_path(G, orig, dest, weight = "length") on a graph of a city. I know which nodes I want to ...