Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ or **time-distance matrices**.

- `Mapbox, OSRM`_
- `Openrouteservice`_
- `Here Maps`_
- `Google Maps`_
- `Graphhopper`_
- `OpenTripPlannerV2`_
Expand Down Expand Up @@ -305,7 +304,6 @@ All these parameters, and more, can optionally be **globally set** for all route

.. _Mapbox, OSRM: https://docs.mapbox.com/api/navigation
.. _Openrouteservice: https://openrouteservice.org/dev/#/api-docs
.. _Here Maps: https://developer.here.com/documentation
.. _Google Maps: https://developers.google.com/maps/documentation
.. _Graphhopper: https://graphhopper.com/api/1/docs
.. _OpenTripPlannerV2: https://docs.opentripplanner.org/en/latest/
Expand Down
8 changes: 0 additions & 8 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,6 @@ Graphhopper

.. automethod:: __init__

HereMaps
--------

.. autoclass:: routingpy.routers.HereMaps
:members:

.. automethod:: __init__

MapboxOSRM
----------

Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ keywords = [
"google-maps",
"google-maps-api",
"google-maps-directions-api",
"here-routing-api",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
5 changes: 1 addition & 4 deletions routingpy/routers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
from ..exceptions import RouterNotFound
from .google import Google
from .graphhopper import Graphhopper
from .heremaps import HereMaps
from .mapbox_osrm import MapboxOSRM
from .openrouteservice import ORS
from .opentripplanner_v2 import OpenTripPlannerV2
Expand All @@ -29,8 +28,6 @@
_SERVICE_TO_ROUTER = {
"google": Google,
"graphhopper": Graphhopper,
"here": HereMaps,
"heremaps": HereMaps,
"mapbox_osrm": MapboxOSRM,
"mapbox-osrm": MapboxOSRM,
"mapbox": MapboxOSRM,
Expand Down Expand Up @@ -62,7 +59,7 @@ def get_router_by_name(router_name):
:param router_name: Name of the router as string.
:type router_name: str

:rtype: Union[:class:`routingpy.routers.google.Google`, :class:`routingpy.routers.graphhopper.Graphhopper`, :class:`routingpy.routers.heremaps.HereMaps`, :class:`routingpy.routers.mapbox_osrm.MapBoxOSRM`, :class:`routingpy.routers.openrouteservice.ORS`, :class:`routingpy.routers.osrm.OSRM`, :class:`routingpy.routers.otp_v2.OpenTripPlannerV2`, :class:`routingpy.routers.valhalla.Valhalla`]
:rtype: Union[:class:`routingpy.routers.google.Google`, :class:`routingpy.routers.graphhopper.Graphhopper`, :class:`routingpy.routers.mapbox_osrm.MapBoxOSRM`, :class:`routingpy.routers.openrouteservice.ORS`, :class:`routingpy.routers.osrm.OSRM`, :class:`routingpy.routers.otp_v2.OpenTripPlannerV2`, :class:`routingpy.routers.valhalla.Valhalla`]

"""
try:
Expand Down
Loading