i'm seeing this with MEP runs. i have some hex that's in northeast alaska. i have the edge_rtree accepting only road classes [4,5,6,7] within 1 kilometer (can you see the problem already? i didn't 😸 ).
...
...
...
...
...
ok, here's what happens:
no links are found within 1 kilometer that have [4,5,6,7] road class
every link outside 1 kilometer is outside 1 kilometer (yay, a tautology)
result: plugin iterates over every edge in in the graph and returns an error not found.
the solution is a re-write to the search method in edge_rtree_input_plugin.rs.
i'm seeing this with MEP runs. i have some hex that's in northeast alaska. i have the edge_rtree accepting only road classes [4,5,6,7] within 1 kilometer (can you see the problem already? i didn't 😸 ).
... ... ... ... ...
ok, here's what happens:
result: plugin iterates over every edge in in the graph and returns an error not found.
the solution is a re-write to the
search
method in edge_rtree_input_plugin.rs.