UNPKG

raptor-journey-planner

Version:

Implementation of the Round bAsed Public Transit Optimized Router (Raptor) journey planning algorithm.

9 lines (8 loc) 292 B
import type { StopID } from "../gtfs/GTFS"; import type { StopTimes } from "./RaptorAlgorithm"; import { ScanResults } from "./ScanResults"; export declare class ScanResultsFactory { private readonly stops; constructor(stops: StopID[]); create(origins: StopTimes): ScanResults; }