StopTime

data class StopTime(val tripId: String, val arrivalTime: Int? = null, val departureTime: Int? = null, val stopId: String, val stopSequence: Int, val stopHeadsign: String? = null, val pickupType: Int? = null, val dropOffType: Int? = null, val continuousPickup: Int? = null, val continuousDropOff: Int? = null, val shapeDistTraveled: Double? = null, val timepoint: Boolean? = null) : Comparable<StopTime>

See https://developers.google.com/transit/gtfs/reference#stop_timestxt

Constructors

Link copied to clipboard
constructor(tripId: String, arrivalTime: Int? = null, departureTime: Int? = null, stopId: String, stopSequence: Int, stopHeadsign: String? = null, pickupType: Int? = null, dropOffType: Int? = null, continuousPickup: Int? = null, continuousDropOff: Int? = null, shapeDistTraveled: Double? = null, timepoint: Boolean? = null)

Functions

Link copied to clipboard
open operator override fun compareTo(other: StopTime): Int

Compares this stop time to the other.

Properties

Link copied to clipboard
val arrivalTime: Int? = null
Link copied to clipboard
val continuousDropOff: Int? = null
Link copied to clipboard
val continuousPickup: Int? = null
Link copied to clipboard
val departureTime: Int? = null
Link copied to clipboard
val dropOffType: Int? = null
Link copied to clipboard
val pickupType: Int? = null
Link copied to clipboard
Link copied to clipboard
val stopHeadsign: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val timepoint: Boolean? = null
Link copied to clipboard