taxicab icon indicating copy to clipboard operation
taxicab copied to clipboard

Accurate routing for OpenStreetMap/OSMnx

Results 8 taxicab issues
Sort by recently updated
recently updated
newest added

Running the module now triggers the following warning: UserWarning: The `get_route_edge_attributes` function has been deprecated and will be removed in a future release. Use the `route_to_gdf` function instead. Would it...

The orig and dest partial edges don't seem to respect road directions. Code to reproduce the error below: ``` import osmnx as ox import taxicab as tc orig = (1.43789201937501,...

The shortest path algorithm is removing nodes from nx_route if edge is overlapping. In case of two edges overlapping with 3 nodes, no route edge is available anymore, thus giving...

I am having an exceptional case. My nx_shortest path is giving me 2 nodes. The taxicab algorithm then solves two partial edges. However in the code, my route is set...

Hi, When I'm running taxicab it's telling me there's no attribute 'distance' on the Model. AttributeError: module 'taxicab' has no attribute 'distance' I did install taxicab through pip install and...

the order of the coordinates in the generated Linestring for two partial edges represented by route[2] or route[3] is not in an chronological order which represents the flow from orig...

Instead of only given a start and end coordinate it would be great if there was a possibility to also add optional via coordinates to the path.