72 lines
3.5 KiB
Python
72 lines
3.5 KiB
Python
from typing import List, Union
|
|
from pyrmv.classes.Stop import Stop
|
|
from pyrmv.raw.stop_by_name import stop_by_name as raw_stop_by_name
|
|
|
|
try:
|
|
from typing import Literal
|
|
except ImportError:
|
|
from typing_extensions import Literal
|
|
|
|
def stop_by_name(
|
|
|
|
access_id: str,
|
|
query: str,
|
|
|
|
lang: Literal["de", "da", "en", "es", "fr", "hu", "it", "nl", "no", "pl", "sv", "tr"] = "en",
|
|
max_number: int = 10,
|
|
stop_type: Literal["A", "ALL", "AP", "P", "S", "SA", "SP"] = "ALL",
|
|
selection_mode: Literal["SLCT_N", "SLCT_A"] = None, # type: ignore
|
|
coord_lat: Union[str, float] = None, # type: ignore
|
|
coord_lon: Union[str, float] = None, # type: ignore
|
|
radius: Union[int, float] = 1000,
|
|
refine_id: str = None, # type: ignore
|
|
stations: Union[str, list] = None, # type: ignore
|
|
filter_mode: Literal["DIST_PERI", "EXCL_PERI", "SLCT_PERI"] = "DIST_PERI"
|
|
) -> List[Stop]:
|
|
"""Method can be used to perform a pattern matching of a user input and to retrieve a list
|
|
of possible matches in the journey planner database. Possible matches might be stops/stations,
|
|
points of interest and addresses.
|
|
|
|
More detailed request is available as raw.stop_by_name(), however returns dict instead of List[Stop].
|
|
|
|
### Args:
|
|
* access_id (str): Access ID for identifying the requesting client. Get your key on [RMV website](https://opendata.rmv.de/site/start.html).
|
|
* query (str): Search for that token.
|
|
* lang (Literal["de","da","en","es","fr","hu","it","nl","no","pl","sv","tr"], optional): The language of response. Defaults to "en".
|
|
* max_number (int, optional): Maximum number of returned stops. In range 1-1000. Defaults to 10.
|
|
* stop_type (Literal["A", "ALL", "AP", "P", "S", "SA", "SP"], optional): Type filter for location types. Defaults to "ALL".
|
|
* selection_mode (str, optional): Selection mode for locations. "SLCT_N": Not selectable, "SLCT_A": Selectable. Defaults to None.
|
|
* coord_lat (Union[str, float], optional): Latitude of centre coordinate. Defaults to None.
|
|
* coord_lon (Union[str, float], optional): Longitude of centre coordinate. Defaults to None.
|
|
* radius (Union[int, float], optional): Search radius in meter around the given coordinate if any. Defaults to 1000.
|
|
* refine_id (str, optional): In case of an refinable location, this value takes the ID of the refinable one of a previous result. Defaults to None.
|
|
* stations (Union[str, list], optional): Filter for stations. Matches if the given value is prefix of any station in the itinerary. As a list or as a string separated by comma. Defaults to None.
|
|
* filter_mode (Literal["DIST_PERI", "EXCL_PERI", "SLCT_PERI"], optional): Filter modes for nearby searches. Defaults to "DIST_PERI".
|
|
|
|
### Returns:
|
|
* dict: Output from RMV. Dict will contain "errorCode" and "errorText" if exception occurs.
|
|
"""
|
|
|
|
stops = []
|
|
stops_raw = raw_stop_by_name(
|
|
accessId=access_id,
|
|
inputString=query,
|
|
lang=lang,
|
|
maxNo=max_number,
|
|
stopType=stop_type,
|
|
locationSelectionMode=selection_mode,
|
|
coordLat=coord_lat,
|
|
coordLong=coord_lon,
|
|
radius=radius,
|
|
refineId=refine_id,
|
|
stations=stations,
|
|
filterMode=filter_mode
|
|
)
|
|
|
|
for stop in stops_raw["stopLocationOrCoordLocation"]:
|
|
if "StopLocation" in stop:
|
|
stops.append(Stop(stop["StopLocation"]))
|
|
elif "CoordLocation" in stop:
|
|
stops.append(Stop(stop["CoordLocation"]))
|
|
|
|
return stops |