MCPcopy Create free account
hub / github.com/comaps/comaps / DebugPrint

Function DebugPrint

libs/routing/road_graph.cpp:131–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129}
130
131string DebugPrint(Edge const & r)
132{
133 ostringstream ss;
134 ss << boolalpha << "Edge "
135 << "{ featureId: " << DebugPrint(r.GetFeatureId()) << ", isForward: " << r.IsForward()
136 << ", partOfReal: " << r.HasRealPart() << ", segId: " << r.m_segId
137 << ", startJunction: " << DebugPrint(r.m_startJunction) << ", endJunction: " << DebugPrint(r.m_endJunction)
138 << " }";
139 return ss.str();
140}
141
142std::string Edge::PrintLatLon() const
143{

Callers 1

PrintLatLonMethod · 0.70

Calls 3

HasRealPartMethod · 0.80
GetFeatureIdMethod · 0.45
IsForwardMethod · 0.45

Tested by

no test coverage detected