libosmscout
0.1
|
#include <RoutePostprocessor.h>
Classes | |
class | CrossingWaysPostprocessor |
class | DestinationPostprocessor |
class | DirectionPostprocessor |
class | DistanceAndTimePostprocessor |
class | InstructionPostprocessor |
class | LanesPostprocessor |
class | MaxSpeedPostprocessor |
class | MotorwayJunctionPostprocessor |
class | POIsPostprocessor |
class | Postprocessor |
class | SectionsPostprocessor |
class | StartPostprocessor |
class | SuggestedLanesPostprocessor |
class | TargetPostprocessor |
class | WayNamePostprocessor |
class | WayTypePostprocessor |
Public Types | |
using | InstructionPostprocessorRef = std::shared_ptr< InstructionPostprocessor > |
using | LanesPostprocessorRef = std::shared_ptr< LanesPostprocessor > |
using | POIsPostprocessorRef = std::shared_ptr< POIsPostprocessor > |
using | PostprocessorRef = std::shared_ptr< Postprocessor > |
using | SuggestedLanesPostprocessorRef = std::shared_ptr< SuggestedLanesPostprocessor > |
Public Member Functions | |
bool | PostprocessRouteDescription (RouteDescription &description, const std::vector< RoutingProfileRef > &profiles, const std::vector< DatabaseRef > &databases, const std::list< PostprocessorRef > &processors, const std::set< std::string, std::less<>> &motorwayTypeNames=std::set< std::string, std::less<>>(), const std::set< std::string, std::less<>> &motorwayLinkTypeNames=std::set< std::string, std::less<>>(), const std::set< std::string, std::less<>> &junctionTypeNames=std::set< std::string, std::less<>>(), const std::string &miniRoundaboutTypeName="highway_mini_roundabout") |
![]() | |
virtual RouteDescription::LaneDescription | GetLanes (const DatabaseId &dbId, const WayRef &way, bool forward) const |
virtual RouteDescription::LaneDescriptionRef | GetLanes (const RouteDescription::Node &node) const |
virtual Id | GetNodeId (const RouteDescription::Node &node) const |
RouteProcessor allows to enhance the raw routing information from the routing algorithm with additional information like way names, turns and similar by traversing the route and its objects.
The processor is plugable in the sense that it can get enhanced by classes deriving from the Processor base class allowing to write traversial code for a specific aim. The complete routing description is the result of the sum of all information collected by the individual processors.
using osmscout::RoutePostprocessor::InstructionPostprocessorRef = std::shared_ptr<InstructionPostprocessor> |
using osmscout::RoutePostprocessor::LanesPostprocessorRef = std::shared_ptr<LanesPostprocessor> |
using osmscout::RoutePostprocessor::POIsPostprocessorRef = std::shared_ptr<POIsPostprocessor> |
using osmscout::RoutePostprocessor::PostprocessorRef = std::shared_ptr<Postprocessor> |
using osmscout::RoutePostprocessor::SuggestedLanesPostprocessorRef = std::shared_ptr<SuggestedLanesPostprocessor> |
bool osmscout::RoutePostprocessor::PostprocessRouteDescription | ( | RouteDescription & | description, |
const std::vector< RoutingProfileRef > & | profiles, | ||
const std::vector< DatabaseRef > & | databases, | ||
const std::list< PostprocessorRef > & | processors, | ||
const std::set< std::string, std::less<>> & | motorwayTypeNames = std::set<std::string,std::less<>>() , |
||
const std::set< std::string, std::less<>> & | motorwayLinkTypeNames = std::set<std::string,std::less<>>() , |
||
const std::set< std::string, std::less<>> & | junctionTypeNames = std::set<std::string,std::less<>>() , |
||
const std::string & | miniRoundaboutTypeName = "highway_mini_roundabout" |
||
) |
References osmscout::Log::Error(), and osmscout::log.
Referenced by osmscout::MultiDBRoutingService::PostProcessRouteDescription().