forked from organicmaps/organicmaps
[routing] add altitude for transit in RIT
This commit is contained in:
parent
cabbc20ee4
commit
645deebd5f
2 changed files with 3 additions and 4 deletions
|
@ -115,8 +115,7 @@ unique_ptr<IndexRouter> CreateVehicleRouter(DataSource & dataSource,
|
|||
auto countryParentGetter = std::make_unique<storage::CountryParentGetter>();
|
||||
CHECK(countryParentGetter, ());
|
||||
|
||||
bool const loadAltitudes =
|
||||
vehicleType == VehicleType::Pedestrian || vehicleType == VehicleType::Bicycle;
|
||||
bool const loadAltitudes = vehicleType != VehicleType::Car;
|
||||
auto indexRouter = make_unique<IndexRouter>(vehicleType, loadAltitudes,
|
||||
*countryParentGetter, countryFileGetter,
|
||||
getMwmRectByName, numMwmIds,
|
||||
|
|
|
@ -44,7 +44,7 @@ UNIT_TEST(Moscow_NoSubwayTest)
|
|||
MercatorBounds::FromLatLon(55.73470, 37.62617));
|
||||
TEST_EQUAL(routeResult.second, RouterResultCode::NoError, ());
|
||||
|
||||
integration::TestRouteLength(*routeResult.first, 604.847);
|
||||
integration::TestRouteLength(*routeResult.first, 612.664);
|
||||
|
||||
CHECK(routeResult.first, ());
|
||||
integration::CheckSubwayAbsent(*routeResult.first);
|
||||
|
@ -139,7 +139,7 @@ UNIT_TEST(Vashington_FoggyToShaw)
|
|||
|
||||
TEST_EQUAL(routeResult.second, RouterResultCode::NoError, ());
|
||||
|
||||
integration::TestRouteLength(*routeResult.first, 6102.92);
|
||||
integration::TestRouteLength(*routeResult.first, 6318.54);
|
||||
|
||||
CHECK(routeResult.first, ());
|
||||
integration::CheckSubwayExistence(*routeResult.first);
|
||||
|
|
Loading…
Add table
Reference in a new issue