mbus-backend
    Preparing search index...

    Interface StopTime

    Represents a scheduled stop event within a trip (GTFS StopTime).

    interface StopTime {
        arrivalTime: number;
        departureTime: number;
        dropOff: boolean;
        heursticCost?: number;
        isExtrapolated?: boolean;
        pickUp: boolean;
        rt?: string;
        stop: string;
    }
    Index
    arrivalTime: number
    departureTime: number
    dropOff: boolean

    Whether passengers can alight from the vehicle here.

    heursticCost?: number

    Optional pre-calculated cost for routing heuristics.

    isExtrapolated?: boolean

    If the stop is predicted or not.

    pickUp: boolean

    Whether passengers can board the vehicle here.

    rt?: string

    Real-time status string (if available).

    stop: string

    The ID of the stop.