You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mona...@googlegroups.com
Hi. I try to write simple programm to building graph for monav (like osmimport does). I start with 10 GPSCoordinates of one single edge.
int pointsCount = 10; GPSCoordinate points[] = { ... };
I try to build graph with one edge started at points[0] ended with points[pointCount -1] and path points[ 1 .. pointsCount - 2]. My code is: bool GeoImporter::GetRoutingEdges(std::vector<RoutingEdge>* data) { RoutingEdge edge;
But when i build this graph monav can`t find any way beetwen start and end point. When i change this code and rebuild graph as sequenceof edges (one edge for 2 points) then monav start finding way but i need one ege. Also i don`t understand what edgeIDAtSource/Target means.
Александр Гурьянов
unread,
Jun 6, 2014, 12:02:19 AM6/6/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mona...@googlegroups.com
When i mark edge as bidirectional then monav finds way throught this edge. May be there are bug with finding way if it starts and ends on a single edge.