OSMNetworkType

Bases: str, Enum

Type of the street network.

See [1] for more details.

References
  1. https://osmnx.readthedocs.io/en/stable/osmnx.html#osmnx.graph.graph_from_place
Source code in srai/loaders/osm_way_loader/osm_way_loader.py
class OSMNetworkType(str, Enum):
    """
    Type of the street network.

    See [1] for more details.

    References:
        1. https://osmnx.readthedocs.io/en/stable/osmnx.html#osmnx.graph.graph_from_place
    """

    ALL_PRIVATE = "all_private"
    ALL = "all"
    BIKE = "bike"
    DRIVE = "drive"
    DRIVE_SERVICE = "drive_service"
    WALK = "walk"