hi all,
I modified the table matrix interface.
In the previous code, it is only support the 100 coordinate calculate.
I modified it is to 1000.
Part of the code :
Plugins/DistanceTablePlugin.hpp
line 94 : unsigned max_locations =
std::min(100u, static_cast(raw_route.raw_via_node_coordinates.size()));
PhantomNodeArray phantom_node_vector(max_locations);
to
unsigned max_locations =
std::min(1000u, static_cast(raw_route.raw_via_node_coordinates.size()));
PhantomNodeArray phantom_node_vector(max_locations);
I have verified the results.
Whether can submit?
hi all,
I modified the table matrix interface.
In the previous code, it is only support the 100 coordinate calculate.
I modified it is to 1000.
Part of the code :
Plugins/DistanceTablePlugin.hpp
line 94 : unsigned max_locations =
std::min(100u, static_cast(raw_route.raw_via_node_coordinates.size()));
PhantomNodeArray phantom_node_vector(max_locations);
to
unsigned max_locations =
std::min(1000u, static_cast(raw_route.raw_via_node_coordinates.size()));
PhantomNodeArray phantom_node_vector(max_locations);
I have verified the results.
Whether can submit?