is_station_in_line ================== .. py:function:: pride.utils.is_station_in_line(station_name: str, line: str) -> bool Check if a line of a data file corresponds to a station Since station names are not unique, checking if a line of a data file contains information about a station requires certain logic. This function takes a station name, retrieves a list of possible names from an internal catalog, and checks if any of them is present in the line. The function splits the line into words to prevent returning True when the station name is part of some word. For example, if station name is HART, the function should return False for a line containing HARTAO :param station_name: Name of the station as specified in the internal catalog :param line: Line of the data file :return: True if the line corresponds to the station, False otherwise