Files
2024-11-03 15:19:53 -05:00

20 lines
526 B
JavaScript

import { importGtfs, STREETCAR, SUBWAY } from "./import.js";
await importGtfs("Boston", {
allowedRouteTypes: [STREETCAR, SUBWAY],
sourceFeed: "gtfs/mbta.zip",
outputFile: "cities/boston.json",
serviceId: "canonical",
});
// await importGtfs("Chicago", {
// allowedRouteTypes: [SUBWAY],
// sourceFeed: "gtfs/cta.zip",
// outputFile: "cities/chicago.json",
// processStationNames: (name) =>
// name.replace(
// /\s*\((Red|Purple|Yellow|Blue|Pink|Green|Orange|Brown)\)$/,
// ""
// ),
// });