@golemio/pid
Version:
Golemio PID Module
17 lines • 1.14 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GtfsStopLocationType = void 0;
var GtfsStopLocationType;
(function (GtfsStopLocationType) {
/** A location where passengers board or disembark from a transit vehicle */
GtfsStopLocationType[GtfsStopLocationType["StopOrPlatform"] = 0] = "StopOrPlatform";
/** A physical structure or area that contains one or more platform */
GtfsStopLocationType[GtfsStopLocationType["Station"] = 1] = "Station";
/** A location where passengers can enter or exit a station from the street */
GtfsStopLocationType[GtfsStopLocationType["EntranceOrExit"] = 2] = "EntranceOrExit";
/** A location within a station, not matching any other location_type */
GtfsStopLocationType[GtfsStopLocationType["GenericNode"] = 3] = "GenericNode";
/** A specific location on a platform, where passengers can board and/or alight vehicles */
GtfsStopLocationType[GtfsStopLocationType["BoardingArea"] = 4] = "BoardingArea";
})(GtfsStopLocationType || (exports.GtfsStopLocationType = GtfsStopLocationType = {}));
//# sourceMappingURL=StopEnums.js.map