PMCmdItineraryReport

data class PMCmdItineraryReport(val numSkipped: Int = 0, val numVisited: Int = 0, val numUnvisited: Int = 0, val numPredictedLateArrivals: Int = 0, val numPredictedEarlyArrivals: Int = 0, val timeRemaining: Int = 0, val timeRemainingUnit: PMCmdTimeUnit, val distanceRemaining: Int = 0, val distancePassed: Int = 0, val distanceUnit: PMCmdDistanceUnit)

Status report for whole itinerary or part of itinerary.

Constructors

Link copied to clipboard
fun PMCmdItineraryReport(numSkipped: Int = 0, numVisited: Int = 0, numUnvisited: Int = 0, numPredictedLateArrivals: Int = 0, numPredictedEarlyArrivals: Int = 0, timeRemaining: Int = 0, timeRemainingUnit: PMCmdTimeUnit, distanceRemaining: Int = 0, distancePassed: Int = 0, distanceUnit: PMCmdDistanceUnit)

Properties

Link copied to clipboard

distance in meters passed from start of itinerary / itinerary part

Link copied to clipboard

distance estimated to reach the finish of itinerary / itinerary part

Link copied to clipboard

used distance unit
Default value is PMCmdDistanceUnit.Meter

Link copied to clipboard

number of waypoints predicted to have early arrivals

Link copied to clipboard

number of waypoints predicted to have late arrivals

Link copied to clipboard
val numSkipped: Int = 0

number of skipped waypoints.

Link copied to clipboard
val numUnvisited: Int = 0

number of waypoints not yet visited

Link copied to clipboard
val numVisited: Int = 0

number of waypoints already visited. The start waypoint is counted too.

Link copied to clipboard

time estimated to reach the finish ( itinerary or part )

Link copied to clipboard

used time unit
Default value is PMCmdTimeUnit.Second