14 #ifndef TRAFFIC_SIMULATOR__LANELET_LOADER_HPP_
15 #define TRAFFIC_SIMULATOR__LANELET_LOADER_HPP_
17 #include <lanelet2_io/Io.h>
23 namespace lanelet_wrapper
28 static auto load(
const std::filesystem::path & lanelet_map_path) -> lanelet::LaneletMapPtr;
31 static auto overwriteLaneletsCenterline(lanelet::LaneletMapPtr) -> void;
32 static auto resamplePoints(
33 const lanelet::ConstLineString3d & line_string,
const std::int32_t num_segments)
34 -> lanelet::BasicPoints3d;
35 static auto calculateAccumulatedLengths(
const lanelet::ConstLineString3d & line_string)
36 -> std::vector<double>;
Definition: lanelet_loader.hpp:26
static auto load(const std::filesystem::path &lanelet_map_path) -> lanelet::LaneletMapPtr
Definition: lanelet_loader.cpp:26