Implement filtering of shuttles by proximity to the closest route polyline coordinate

This commit is contained in:
2025-09-26 15:40:58 -07:00
parent 9268ad5181
commit 7ed780a459
2 changed files with 50 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ import { RepositoryLoader } from "../RepositoryLoader";
export interface ShuttleRepositoryLoader extends RepositoryLoader {
updateRouteDataForSystem(): Promise<void>;
updateStopAndPolylineDataForRoutesInSystem(): Promise<void>;
updateShuttleDataForSystem(): Promise<void>;
updateShuttleDataForSystemBasedOnProximityToRoutes(): Promise<void>;
updateEtaDataForExistingStopsForSystem(): Promise<void>;
updateEtaDataForStopId(stopId: string): Promise<void>;
}