Files
comaps/libs/routing/road_index.cpp
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

21 lines
536 B
C++

#include "routing/road_index.hpp"
#include "routing/routing_exceptions.hpp"
namespace routing
{
void RoadIndex::Import(std::vector<Joint> const & joints)
{
for (Joint::Id jointId = 0; jointId < joints.size(); ++jointId)
{
Joint const & joint = joints[jointId];
for (uint32_t i = 0; i < joint.GetSize(); ++i)
{
RoadPoint const & entry = joint.GetEntry(i);
RoadJointIds & roadJoints = m_roads[entry.GetFeatureId()];
roadJoints.AddJoint(entry.GetPointId(), jointId);
}
}
}
} // namespace routing