forked from organicmaps/organicmaps
[pedestrian,routing] use proper distance function
This commit is contained in:
parent
7871b033ea
commit
e631e75971
1 changed files with 2 additions and 8 deletions
|
@ -87,20 +87,14 @@ double AStarRouter::HeuristicCostEstimate(AStarRouter::ShortestPath const * s1,
|
|||
m2::PointD const & b = (*goals.begin()).GetSegEndpoint();
|
||||
m2::PointD const & e = s1->GetPos().GetSegEndpoint();
|
||||
|
||||
return ms::DistanceOnEarth(MercatorBounds::YToLat(b.y),
|
||||
MercatorBounds::XToLon(b.x),
|
||||
MercatorBounds::YToLat(e.y),
|
||||
MercatorBounds::XToLon(e.x)) / MAX_SPEED;
|
||||
return MercatorBounds::DistanceOnEarth(b, e) / MAX_SPEED;
|
||||
}
|
||||
|
||||
double AStarRouter::DistanceBetween(ShortestPath const * p1, ShortestPath const * p2)
|
||||
{
|
||||
m2::PointD const & b = p1->GetPos().GetSegEndpoint();
|
||||
m2::PointD const & e = p2->GetPos().GetSegEndpoint();
|
||||
return ms::DistanceOnEarth(MercatorBounds::YToLat(b.y),
|
||||
MercatorBounds::XToLon(b.x),
|
||||
MercatorBounds::YToLat(e.y),
|
||||
MercatorBounds::XToLon(e.x));
|
||||
return MercatorBounds::DistanceOnEarth(b, e);
|
||||
}
|
||||
|
||||
void AStarRouter::ReconstructRoute(ShortestPath const * path, vector<RoadPos> & route) const
|
||||
|
|
Loading…
Add table
Reference in a new issue