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;
        pickUp: boolean;
        rt?: string;
        stop: string;
    }
    Index

    Properties

    arrivalTime: number
    departureTime: number
    dropOff: boolean

    Whether passengers can alight from the vehicle here.

    heursticCost?: number

    Optional pre-calculated cost for routing heuristics.

    pickUp: boolean

    Whether passengers can board the vehicle here.

    rt?: string

    Real-time status string (if available).

    stop: string

    The ID of the stop.