Get desktop application:
View/edit binary Protocol Buffers messages
Used in: ,
Used in: , , ,
semantically valid only for TransportationType.DRIVING_AND_PUBLIC_TRANSPORT
Used in:
limits the possible duration of walking paths walkingTimeToStation limit is of low precedence and will not override the global travel time limit walkingTimeToStation must be > 0 and <= 1800 if walkingTimeToStation is not set: use service default if walkingTimeToStation > 0: limit the walking path to at most this value
limits the possible duration of driving paths drivingTimeToStation limit is of low precedence and will not override the global travel time limit drivingTimeToStation must be > 0 and <= 1800 if drivingTimeToStation is not set: use service default if drivingTimeToStation > 0: limit the path to at most this value
constant penalty to apply to simulate the difficulty of finding a parking spot if parkingTime < 0: use service default (300s) if parkingTime >= 0: apply the parking penalty when searching for possible paths NOTE: parkingTime penalty cannot be greater than the global travel time limit
Used in:
Used in:
represents an optional non negative (greater or equal than 0) uint32 parameter the non negative requirement cannot be checked at the protocol level and will only be verified by the server
Used in:
represents an optional positive (strictly greater than 0) uint32 parameter the positive requirement cannot be checked at the protocol level and will only be verified by the server
Used in: ,
semantically valid only for TransportationType.PUBLIC_TRANSPORT
Used in:
limits the possible duration of walking paths walkingTimeToStation limit is of low precedence and will not override the global travel time limit walkingTimeToStation must be 0 > and <= 1800 if walkingTimeToStation is not set: use service default if walkingTimeToStation > 0: limit the path to at most this value
Used in:
We encode arrival locations as deltas (relative to the source) using a fixedpoint encoding i.e deltaLat = round((lat - sourceLat) * 10^5).toInt deltaLon = round((lon - sourceLon) * 10^5).toInt The deltas should be interleaved in the `locationDeltas` field i.e locationDeltas[0] should be the first lat locationDeltas[1] should be the first lon locationDeltas[2] should be the second lat ... etc
Used in:
We encode arrival locations as deltas (relative to the source) using a fixedpoint encoding i.e deltaLat = round((lat - sourceLat) * 10^5).toInt deltaLon = round((lon - sourceLon) * 10^5).toInt The deltas should be interleaved in the `locationDeltas` field i.e locationDeltas[0] should be the first lat locationDeltas[1] should be the first lon locationDeltas[2] should be the second lat ... etc
Used in: ,
Used in: , , ,
Used in: , , ,
override defaults for some of the transportation modes
Used in:
Considers all paths found by the following steps: * up to 30 minutes of walking (always included even if no stops found) * all connections in the 30 minute walking range from public transport stops to other public transport stops in travel_time_limit, AND * up to 30 minutes of walking from public transport stops that were visited by public transport (IOW a path [origin]--walking->[stop]--walking-->[destination] is not possible but [origin]--walking->[stop]--public_transport-->[stop]--walking--> is.
Considers all paths found traveling by car from origin(s) to destination(s) within the travel_time_limit
Considers all paths found by the following steps: * up to 30 minutes of driving (always included even no stops found) * all connections in the 30 minute driving range from public transport stops to other public transport stops in travel_time_limit, AND * up to 30 minutes of walking from public transport stops that were visited by public transport (IOW a path [origin]--driving->[stop]--walking-->[destination] is not possible but [origin]--driving->[stop]--public_transport-->[stop]--walking--> is. AND/OR * up to 30 minutes of walking
Considers all paths found travelling by car from origin(s) to destination(s) including all paths that are traversable by ferries that take cars within the travel_time_limit.
Considers all paths found travelling by foot from origin(s) to destination(s) within the travel_time_limit
Considers all paths found travelling by foot from origin(s) to destination(s) including all paths that are traversable by ferries that take passengers within the travel_time_limit
Considers all paths found travelling by bike from origin(s) to destination(s) within the travel_time_limit
Considers all paths found travelling by bike from origin(s) to destination(s) including all paths that are traversable by ferries that take bikes within the travel_time_limit