| 129 | } |
| 130 | |
| 131 | string 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 | |
| 142 | std::string Edge::PrintLatLon() const |
| 143 | { |
no test coverage detected