From f21b972ec1c2d2156bac8677055a4b43d0c670ac Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Sun, 25 Jun 2023 18:48:18 +0300 Subject: [PATCH] [classif] Remove railway-rail-motor_vehicle and associated routing code Signed-off-by: Konstantin Pastbin --- data/mapcss-mapping.csv | 5 ++-- data/strings/types_strings.txt | 24 +------------------ generator/generator_tests/osm_type_test.cpp | 15 ------------ indexer/ftypes_matcher.cpp | 6 +---- indexer/ftypes_matcher.hpp | 2 -- routing/geometry.cpp | 2 +- routing/index_graph_starter.cpp | 2 +- routing_common/car_model.cpp | 1 - routing_common/car_model_coefs.hpp | 2 -- .../vehicle_model_test.cpp | 4 ++-- routing_common/vehicle_model.cpp | 18 ++++---------- routing_common/vehicle_model.hpp | 5 ++-- 12 files changed, 14 insertions(+), 72 deletions(-) diff --git a/data/mapcss-mapping.csv b/data/mapcss-mapping.csv index 082598f5eb..f9ed781155 100644 --- a/data/mapcss-mapping.csv +++ b/data/mapcss-mapping.csv @@ -1064,9 +1064,8 @@ junction|roundabout;990; highway|speed_camera;991; shop|beauty;992; shop|sports;993; -route|ferry|motor_vehicle;[route=ferry][motor_vehicle];x;name;int_name;994;route|ferry -# For railways that carry vehicles, used for routing similar to ferries: -railway|rail|motor_vehicle;[railway=rail][motor_vehicle];;name;int_name;995; +deprecated:route|ferry|motor_vehicle:09.2021;[route=ferry][motor_vehicle];x;name;int_name;994;route|ferry +deprecated:railway|rail|motor_vehicle:06.2023;[railway=rail][motor_vehicle];x;name;int_name;995;railway|rail hwtag|nofoot;996; place|city|capital|2;[place=city][capital=2],[place=city][capital?][admin_level=2];;name;int_name;997; place|city|capital|3;[place=city][capital=3],[place=city][capital?][admin_level=3];;name;int_name;998; diff --git a/data/strings/types_strings.txt b/data/strings/types_strings.txt index 1a6c148904..8c22559ed5 100644 --- a/data/strings/types_strings.txt +++ b/data/strings/types_strings.txt @@ -18944,21 +18944,6 @@ [type.railway.rail.service.bridge] ref = type.railway.rail.bridge - [type.railway.rail.motor_vehicle] - en = Railway - de = Eisenbahn - et = Raudtee - ja = 鉄道 - mr = रेल्वे - nl = Spoorweg - pt = Ferrovia - pt-BR = Ferrovia - ru = Железная дорога - tr = Demiryolu - uk = Залізниця - zh-Hans = 铁路轨道 - zh-Hant = 鐵路軌道 - [type.railway.rail.tunnel] en = Railway Tunnel de = Eisenbahntunnel @@ -19942,14 +19927,7 @@ zh-Hans = 航线 [type.route.shuttle_train] - en = Shuttle Train - de = Shuttlezug - et = Kiirrong - nl = Shuttle-trein - pt = Rota de comboio vaivem - pt-BR = Rota de trem vaivém - ru = Челночная линия - tr = Servis Treni + en = route-shuttle_train [type.shop] en = Shop diff --git a/generator/generator_tests/osm_type_test.cpp b/generator/generator_tests/osm_type_test.cpp index ff0f770e38..22d5d6eb69 100644 --- a/generator/generator_tests/osm_type_test.cpp +++ b/generator/generator_tests/osm_type_test.cpp @@ -647,21 +647,6 @@ UNIT_CLASS_TEST(TestWithClassificator, OsmType_Ferry) TEST(params.IsTypeExist(GetType({"hwtag", "nocar"})), ()); } - { - Tags const tags = { - { "railway", "rail" }, - { "motor_vehicle", "yes" }, - }; - - auto const params = GetFeatureBuilderParams(tags); - - TEST_EQUAL(params.m_types.size(), 2, (params)); - uint32_t const type = GetType({"railway", "rail", "motor_vehicle"}); - TEST(params.IsTypeExist(type), (params)); - TEST(routing::CarModel::AllLimitsInstance().IsRoadType(type), ()); - TEST(params.IsTypeExist(GetType({"railway", "rail", "branch"})), ()); - } - { Tags const tags = { { "route", "shuttle_train" }, diff --git a/indexer/ftypes_matcher.cpp b/indexer/ftypes_matcher.cpp index ecf1926bb2..c0fc972f22 100644 --- a/indexer/ftypes_matcher.cpp +++ b/indexer/ftypes_matcher.cpp @@ -31,9 +31,6 @@ public: auto const & c = classif(); m_map[c.GetTypeByPath({"route", "ferry"})] = ftypes::HighwayClass::Transported; m_map[c.GetTypeByPath({"route", "shuttle_train"})] = ftypes::HighwayClass::Transported; - /// @todo Wow, actual highway type is railway-rail-motor_vehicle. - /// Should be carefull with GetHighwayClass function. - m_map[c.GetTypeByPath({"railway", "rail"})] = ftypes::HighwayClass::Transported; m_map[c.GetTypeByPath({"highway", "motorway"})] = ftypes::HighwayClass::Trunk; m_map[c.GetTypeByPath({"highway", "motorway_link"})] = ftypes::HighwayClass::Trunk; @@ -772,10 +769,9 @@ IsMotorwayJunctionChecker::IsMotorwayJunctionChecker() m_types.push_back(c.GetTypeByPath({"highway", "motorway_junction"})); } -IsWayWithDurationChecker::IsWayWithDurationChecker() : BaseChecker(3 /* level */) +IsWayWithDurationChecker::IsWayWithDurationChecker() { base::StringIL const types[] = {{"route", "ferry"}, - {"railway", "rail", "motor_vehicle"}, {"route", "shuttle_train"}}; Classificator const & c = classif(); for (auto const & e : types) diff --git a/indexer/ftypes_matcher.hpp b/indexer/ftypes_matcher.hpp index c4611a541b..8c7e6ab00e 100644 --- a/indexer/ftypes_matcher.hpp +++ b/indexer/ftypes_matcher.hpp @@ -501,8 +501,6 @@ class IsWayWithDurationChecker : public BaseChecker IsWayWithDurationChecker(); public: DECLARE_CHECKER_INSTANCE(IsWayWithDurationChecker); - - uint32_t GetMotorVehicleRailway() const { return m_types[1]; } }; /// Type of locality (do not change values and order - they have detalization order) diff --git a/routing/geometry.cpp b/routing/geometry.cpp index 090f0e8b44..1f294c53da 100644 --- a/routing/geometry.cpp +++ b/routing/geometry.cpp @@ -218,7 +218,7 @@ void RoadGeometry::Load(VehicleModelInterface const & vehicleModel, FeatureType m_distances.resize(count - 1, -1); /// @todo Take out this logic into VehicleModel::GetSpeed to include - /// RouteShuttleTrain and RailwayRailMotorVehicle for bicycle and pedestrian. + /// RouteShuttleTrain for bicycle and pedestrian. if (m_routingOptions.Has(RoutingOptions::Road::Ferry)) { /// @todo Also process "interval" OSM tag (without additional boarding penalties). diff --git a/routing/index_graph_starter.cpp b/routing/index_graph_starter.cpp index 8167c20b99..d9974c33a6 100644 --- a/routing/index_graph_starter.cpp +++ b/routing/index_graph_starter.cpp @@ -540,7 +540,7 @@ HighwayCategory IndexGraphStarter::GetHighwayCategory(Segment seg) const case HighwayType::HighwaySecondary: case HighwayType::HighwaySecondaryLink: case HighwayType::HighwayTertiary: case HighwayType::HighwayTertiaryLink: return HighwayCategory::Usual; - case HighwayType::RouteFerry: case HighwayType::RailwayRailMotorVehicle: case HighwayType::RouteShuttleTrain: + case HighwayType::RouteFerry: case HighwayType::RouteShuttleTrain: return HighwayCategory::Transit; default: return HighwayCategory::Minor; diff --git a/routing_common/car_model.cpp b/routing_common/car_model.cpp index 36fe66df97..b38001ee76 100644 --- a/routing_common/car_model.cpp +++ b/routing_common/car_model.cpp @@ -39,7 +39,6 @@ VehicleModel::LimitsInitList const kDefaultOptions = { {HighwayType::HighwayLivingStreet, true}, {HighwayType::HighwayRoad, true}, {HighwayType::HighwayTrack, true}, - {HighwayType::RailwayRailMotorVehicle, true}, {HighwayType::RouteShuttleTrain, true}, {HighwayType::RouteFerry, true}, {HighwayType::ManMadePier, true} diff --git a/routing_common/car_model_coefs.hpp b/routing_common/car_model_coefs.hpp index 04b85014e6..18484f37bc 100644 --- a/routing_common/car_model_coefs.hpp +++ b/routing_common/car_model_coefs.hpp @@ -40,7 +40,6 @@ HighwayBasedFactors const kHighwayBasedFactors = { {HighwayType::HighwayTrack, InOutCityFactor(1.0)}, {HighwayType::ManMadePier, InOutCityFactor(0.90)}, - {HighwayType::RailwayRailMotorVehicle, InOutCityFactor(0.90)}, {HighwayType::RouteFerry, InOutCityFactor(0.90)}, {HighwayType::RouteShuttleTrain, InOutCityFactor(0.90)}, }; @@ -75,7 +74,6 @@ HighwayBasedSpeeds const kHighwayBasedSpeeds = { {HighwayType::HighwayTrack, InOutCitySpeedKMpH(5.00 /* in city */, 5.00 /* out city */)}, {HighwayType::ManMadePier, InOutCitySpeedKMpH({17.00, 10.00} /* in city */, {17.00, 10.00} /* out city */)}, - {HighwayType::RailwayRailMotorVehicle, InOutCitySpeedKMpH(10.00 /* in city */, 10.00 /* out city */)}, {HighwayType::RouteFerry, InOutCitySpeedKMpH(10.00 /* in city */, 10.00 /* out city */)}, {HighwayType::RouteShuttleTrain, InOutCitySpeedKMpH(25.00 /* in city */, 25.00 /* out city */)}, }; diff --git a/routing_common/routing_common_tests/vehicle_model_test.cpp b/routing_common/routing_common_tests/vehicle_model_test.cpp index 9bc0dfb9dc..45000db588 100644 --- a/routing_common/routing_common_tests/vehicle_model_test.cpp +++ b/routing_common/routing_common_tests/vehicle_model_test.cpp @@ -374,8 +374,8 @@ UNIT_TEST(VehicleModel_CarModelValidation) HighwayType::HighwayTertiary, HighwayType::HighwayTertiaryLink, HighwayType::HighwayTrack, HighwayType::HighwayTrunk, HighwayType::HighwayTrunkLink, HighwayType::HighwayUnclassified, - HighwayType::ManMadePier, HighwayType::RailwayRailMotorVehicle, - HighwayType::RouteFerry, HighwayType::RouteShuttleTrain, + HighwayType::ManMadePier, HighwayType::RouteShuttleTrain, + HighwayType::RouteFerry, }; for (auto const hwType : carRoadTypes) diff --git a/routing_common/vehicle_model.cpp b/routing_common/vehicle_model.cpp index f2f7fe795a..685c85c183 100644 --- a/routing_common/vehicle_model.cpp +++ b/routing_common/vehicle_model.cpp @@ -31,7 +31,6 @@ VehicleModel::VehicleModel(Classificator const & classif, LimitsInitList const & SurfaceInitList const & featureTypeSurface, HighwayBasedInfo const & info) : m_highwayBasedInfo(info) , m_onewayType(ftypes::IsOneWayChecker::Instance().GetType()) -, m_railwayVehicleType(ftypes::IsWayWithDurationChecker::Instance().GetMotorVehicleRailway()) { m_roadTypes.Reserve(featureTypeLimits.size()); for (auto const & v : featureTypeLimits) @@ -70,20 +69,12 @@ void VehicleModel::AddAdditionalRoadTypes(Classificator const & classif, Additio } } -uint32_t VehicleModel::PrepareToMatchType(uint32_t type) const -{ - // The only exception, 3-arity type now. - if (type != m_railwayVehicleType) - ftype::TruncValue(type, 2); - return type; -} - std::optional VehicleModel::GetHighwayType(FeatureType & f) const { feature::TypesHolder const types(f); for (uint32_t t : types) { - t = PrepareToMatchType(t); + ftype::TruncValue(t, 2); auto const ret = GetHighwayType(t); if (ret) @@ -140,7 +131,7 @@ SpeedKMpH VehicleModel::GetTypeSpeedImpl(feature::TypesHolder const & types, Spe optional additionalRoadSpeed; for (uint32_t t : types) { - t = PrepareToMatchType(t); + ftype::TruncValue(t, 2); if (!hwType) hwType = GetHighwayType(t); @@ -228,7 +219,7 @@ bool VehicleModel::HasPassThroughType(feature::TypesHolder const & types) const { for (uint32_t t : types) { - t = PrepareToMatchType(t); + ftype::TruncValue(t, 2); // Additional types (like ferry) are always pass-through now. if (m_addRoadTypes.Find(t)) @@ -244,7 +235,7 @@ bool VehicleModel::HasPassThroughType(feature::TypesHolder const & types) const bool VehicleModel::IsRoadType(uint32_t type) const { - type = PrepareToMatchType(type); + ftype::TruncValue(type, 2); return m_addRoadTypes.Find(type) || m_roadTypes.Find(type); } @@ -391,7 +382,6 @@ string DebugPrint(HighwayType type) case HighwayType::RouteFerry: return "route-ferry"; case HighwayType::HighwayTertiaryLink: return "highway-tertiary_link"; case HighwayType::HighwayBusway: return "highway-busway"; - case HighwayType::RailwayRailMotorVehicle: return "railway-rail-motor_vehicle"; case HighwayType::RouteShuttleTrain: return "route-shuttle_train"; } diff --git a/routing_common/vehicle_model.hpp b/routing_common/vehicle_model.hpp index 33ab35a295..758f73b17f 100644 --- a/routing_common/vehicle_model.hpp +++ b/routing_common/vehicle_model.hpp @@ -26,7 +26,8 @@ double constexpr kNotUsed = std::numeric_limits::max(); struct InOutCityFactor; struct InOutCitySpeedKMpH; -// Each value is equal to the corresponding type index from types.txt. +// Each value is equal to the corresponding 0-based type index from types.txt +// (an ID from mapcss-mapping.csv minus 1). // The ascending order is strict. Check for static_cast in vehicle_model.cpp enum class HighwayType : uint16_t { @@ -55,7 +56,6 @@ enum class HighwayType : uint16_t RouteFerry = 259, HighwayTertiaryLink = 272, HighwayBusway = 858, // reserve type here, but this type is not used for any routing by default - RailwayRailMotorVehicle = 994, RouteShuttleTrain = 1054, }; @@ -345,7 +345,6 @@ private: // HW type -> speed and factor. HighwayBasedInfo m_highwayBasedInfo; uint32_t m_onewayType; - uint32_t m_railwayVehicleType; ///< The only 3-arity type // HW type -> allow pass through. base::SmallMap m_roadTypes;