libosmscout
0.1
|
#include <RoutingProfile.h>
Public Member Functions | |
virtual bool | CanUse (const Area &area) const =0 |
virtual bool | CanUse (const RouteNode ¤tNode, const std::vector< ObjectVariantData > &objectVariantData, size_t pathIndex) const =0 |
virtual bool | CanUse (const Way &way) const =0 |
virtual bool | CanUseBackward (const Way &way) const =0 |
virtual bool | CanUseForward (const Way &way) const =0 |
virtual Distance | GetCostLimitDistance () const =0 |
virtual double | GetCostLimitFactor () const =0 |
virtual double | GetCosts (const Area &area, const Distance &distance) const =0 |
Estimated cost for specific area with given distance. More... | |
virtual double | GetCosts (const Distance &distance) const =0 |
Estimated cost for distance when are no limitations (max. More... | |
virtual double | GetCosts (const RouteNode ¤tNode, const std::vector< ObjectVariantData > &objectVariantData, size_t inPathIndex, size_t outPathIndex) const =0 |
Estimated cost for outgoing path (outPathIndex) from currentNode when currentNode is entered from inPathIndex. More... | |
virtual double | GetCosts (const Way &way, const Distance &distance) const =0 |
Estimated cost for specific way with given distance. More... | |
virtual std::string | GetCostString (double cost) const =0 |
Textual representation of cost. More... | |
virtual Duration | GetTime (const Area &area, const Distance &distance) const =0 |
virtual Duration | GetTime (const Way &way, const Distance &distance) const =0 |
virtual double | GetUTurnCost () const =0 |
virtual Vehicle | GetVehicle () const =0 |
virtual | ~RoutingProfile ()=default |
Abstract interface for a routing profile. A routing profile decides about the costs of taking a certain way. It thus may hold information about how fast ways can be used, maximum speed of the traveling device etc...
|
virtualdefault |
|
pure virtual |
Implemented in osmscout::AbstractRoutingProfile.
|
pure virtual |
|
pure virtual |
Implemented in osmscout::AbstractRoutingProfile.
|
pure virtual |
Implemented in osmscout::AbstractRoutingProfile.
Referenced by osmscout::SimpleRoutingService::CanUseBackward().
|
pure virtual |
Implemented in osmscout::AbstractRoutingProfile.
Referenced by osmscout::SimpleRoutingService::CanUseForward().
|
pure virtual |
Implemented in osmscout::AbstractRoutingProfile.
Referenced by osmscout::SimpleRoutingService::GetCostLimit().
|
pure virtual |
Implemented in osmscout::AbstractRoutingProfile.
Referenced by osmscout::SimpleRoutingService::GetCostLimit().
|
pure virtual |
Estimated cost for specific area with given distance.
Implemented in osmscout::FastestPathRoutingProfile, and osmscout::ShortestPathRoutingProfile.
|
pure virtual |
Estimated cost for distance when are no limitations (max.
speed on the way)
Implemented in osmscout::FastestPathRoutingProfile, and osmscout::ShortestPathRoutingProfile.
|
pure virtual |
Estimated cost for outgoing path (outPathIndex) from currentNode when currentNode is entered from inPathIndex.
Implemented in osmscout::FastestPathRoutingProfile, and osmscout::ShortestPathRoutingProfile.
Referenced by osmscout::SimpleRoutingService::GetCostLimit(), osmscout::SimpleRoutingService::GetCosts(), and osmscout::SimpleRoutingService::GetEstimateCosts().
|
pure virtual |
Estimated cost for specific way with given distance.
Implemented in osmscout::FastestPathRoutingProfile, and osmscout::ShortestPathRoutingProfile.
|
pure virtual |
Textual representation of cost.
Implemented in osmscout::FastestPathRoutingProfile, osmscout::ShortestPathRoutingProfile, and osmscout::AbstractRoutingProfile.
Referenced by osmscout::SimpleRoutingService::GetCostString().
|
pure virtual |
Implemented in osmscout::AbstractRoutingProfile.
|
pure virtual |
Implemented in osmscout::AbstractRoutingProfile.
|
pure virtual |
Implemented in osmscout::FastestPathRoutingProfile, and osmscout::AbstractRoutingProfile.
Referenced by osmscout::SimpleRoutingService::GetUTurnCost().
|
pure virtual |
Implemented in osmscout::AbstractRoutingProfile.
Referenced by osmscout::SimpleRoutingService::GetClosestRoutableNode(), and osmscout::SimpleRoutingService::GetVehicle().