AI-generated Key Takeaways
-
Aggregated metrics provide an overview of
ShipmentRoute
andOptimizeToursResponse
elements likeTransition
andVisit
, where the JSON format is used. -
performedShipmentCount
represents the total number of shipments completed, counting each pickup and delivery pair as a single shipment. -
Duration metrics, including
travelDuration
,waitDuration
,delayDuration
,breakDuration
,visitDuration
, andtotalDuration
, are provided in a standardized format with up to nine fractional digits, ending in 's', usingstring
format. -
travelDistanceMeters
gives the overall travel distance for a route or a solution using anumber
type. -
maxLoads
details the maximum load for each quantity on a route, with the formatmap (key: string, value: object)
.
Aggregated metrics for ShipmentRoute
(resp. for OptimizeToursResponse
over all Transition
and/or Visit
(resp. over all ShipmentRoute
) elements.
JSON representation |
---|
{
"performedShipmentCount": integer,
"travelDuration": string,
"waitDuration": string,
"delayDuration": string,
"breakDuration": string,
"visitDuration": string,
"totalDuration": string,
"travelDistanceMeters": number,
"maxLoads": {
string: {
object ( |
Fields | |
---|---|
performedShipmentCount |
Number of shipments performed. Note that a pickup and delivery pair only counts once. |
travelDuration |
Total travel duration for a route or a solution. A duration in seconds with up to nine fractional digits, ending with ' |
waitDuration |
Total wait duration for a route or a solution. A duration in seconds with up to nine fractional digits, ending with ' |
delayDuration |
Total delay duration for a route or a solution. A duration in seconds with up to nine fractional digits, ending with ' |
breakDuration |
Total break duration for a route or a solution. A duration in seconds with up to nine fractional digits, ending with ' |
visitDuration |
Total visit duration for a route or a solution. A duration in seconds with up to nine fractional digits, ending with ' |
totalDuration |
The total duration should be equal to the sum of all durations above. For routes, it also corresponds to:
A duration in seconds with up to nine fractional digits, ending with ' |
travelDistanceMeters |
Total travel distance for a route or a solution. |
maxLoads |
Maximum load achieved over the entire route (resp. solution), for each of the quantities on this route (resp. solution), computed as the maximum over all An object containing a list of |