pipeline GtfsPipeline {
GTFSSampleFeedExtractor
-> AgencyInterpreter
-> AgencyLoader;
GTFSSampleFeedExtractor
-> CalendarDatesInterpreter
-> CalendarDatesLoader;
GTFSSampleFeedExtractor
-> CalendarInterpreter
-> CalendarLoader;
GTFSSampleFeedExtractor
-> FareAttributesInterpreter
-> FareAttributesLoader;
GTFSSampleFeedExtractor
-> FareRulesInterpreter
-> FareRulesLoader;
GTFSSampleFeedExtractor
-> FrequenciesInterpreter
-> FrequenciesLoader;
GTFSSampleFeedExtractor
-> RoutesInterpreter
-> RoutesLoader;
GTFSSampleFeedExtractor
-> ShapesInterpreter
-> ShapesLoader;
GTFSSampleFeedExtractor
-> StopTimesInterpreter
-> StopTimesLoader;
GTFSSampleFeedExtractor
-> StopsInterpreter
-> StopsLoader;
GTFSSampleFeedExtractor
-> TripsInterpreter
-> TripsLoader;
block GTFSSampleFeedExtractor oftype GTFSExtractor {
url: "https://developers.google.com/static/transit/gtfs/examples/sample-feed.zip";
}
block AgencyInterpreter oftype GTFSAgencyInterpreter { }
block CalendarDatesInterpreter oftype GTFSCalendarDatesInterpreter { }
block CalendarInterpreter oftype GTFSCalendarInterpreter { }
block FareAttributesInterpreter oftype GTFSFareAttributesInterpreter { }
block FareRulesInterpreter oftype GTFSFareRulesInterpreter { }
block FrequenciesInterpreter oftype GTFSFrequenciesInterpreter { }
block RoutesInterpreter oftype GTFSRoutesInterpreter { }
block ShapesInterpreter oftype GTFSShapesInterpreter { }
block StopTimesInterpreter oftype GTFSStopTimesInterpreter { }
block StopsInterpreter oftype GTFSStopsInterpreter { }
block TripsInterpreter oftype GTFSTripsInterpreter { }
block AgencyLoader oftype SQLiteLoader {
table: "agency";
file: "./gtfs.sqlite";
}
block CalendarDatesLoader oftype SQLiteLoader {
table: "calendar_dates";
file: "./gtfs.sqlite";
}
block CalendarLoader oftype SQLiteLoader {
table: "calendar";
file: "./gtfs.sqlite";
}
block FareAttributesLoader oftype SQLiteLoader {
table: "fare_attributes";
file: "./gtfs.sqlite";
}
block FareRulesLoader oftype SQLiteLoader {
table: "fare_rules";
file: "./gtfs.sqlite";
}
block FrequenciesLoader oftype SQLiteLoader {
table: "frequencies";
file: "./gtfs.sqlite";
}
block RoutesLoader oftype SQLiteLoader {
table: "routes";
file: "./gtfs.sqlite";
}
block ShapesLoader oftype SQLiteLoader {
table: "shapes";
file: "./gtfs.sqlite";
}
block StopTimesLoader oftype SQLiteLoader {
table: "stop_times";
file: "./gtfs.sqlite";
}
block StopsLoader oftype SQLiteLoader {
table: "stops";
file: "./gtfs.sqlite";
}
block TripsLoader oftype SQLiteLoader {
table: "trips";
file: "./gtfs.sqlite";
}
}