Pathway
data class Pathway( val pathwayId: String, val fromStopId: String, val toStopId: String, val pathwayMode: Int, val isBidirectional: Boolean, val length: Double? = null, val traversalTime: Duration? = null, val stairCount: Int? = null, val maxSlope: Double? = null, val minWidth: Double? = null, val signpostedAs: String? = null, val reversedSignpostedAs: String? = null)
See https://developers.google.com/transit/gtfs/reference#pathwaystxt
Constructors
Link copied to clipboard
constructor( pathwayId: String, fromStopId: String, toStopId: String, pathwayMode: Int, isBidirectional: Boolean, length: Double? = null, traversalTime: Duration? = null, stairCount: Int? = null, maxSlope: Double? = null, minWidth: Double? = null, signpostedAs: String? = null, reversedSignpostedAs: String? = null)