49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
#ifndef MATCH_HPP
|
|
#define MATCH_HPP
|
|
|
|
#include "engine/api/match_parameters.hpp"
|
|
#include "engine/plugins/plugin_base.hpp"
|
|
|
|
#include "engine/map_matching/bayes_classifier.hpp"
|
|
#include "engine/routing_algorithms/map_matching.hpp"
|
|
#include "engine/routing_algorithms/shortest_path.hpp"
|
|
#include "util/json_util.hpp"
|
|
|
|
#include <vector>
|
|
|
|
namespace osrm
|
|
{
|
|
namespace engine
|
|
{
|
|
namespace plugins
|
|
{
|
|
|
|
class MatchPlugin : public BasePlugin
|
|
{
|
|
public:
|
|
using SubMatching = map_matching::SubMatching;
|
|
using SubMatchingList = routing_algorithms::SubMatchingList;
|
|
using CandidateLists = routing_algorithms::CandidateLists;
|
|
static const constexpr double DEFAULT_GPS_PRECISION = 5;
|
|
static const constexpr double RADIUS_MULTIPLIER = 3;
|
|
|
|
MatchPlugin(datafacade::BaseDataFacade &facade_, const int max_locations_map_matching)
|
|
: BasePlugin(facade_), map_matching(&facade_, heaps, DEFAULT_GPS_PRECISION),
|
|
shortest_path(&facade_, heaps), max_locations_map_matching(max_locations_map_matching)
|
|
{
|
|
}
|
|
|
|
Status HandleRequest(const api::MatchParameters ¶meters, util::json::Object &json_result);
|
|
|
|
private:
|
|
SearchEngineData heaps;
|
|
routing_algorithms::MapMatching<datafacade::BaseDataFacade> map_matching;
|
|
routing_algorithms::ShortestPathRouting<datafacade::BaseDataFacade> shortest_path;
|
|
int max_locations_map_matching;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif // MATCH_HPP
|