VehicleRoutingProblemResult

Résumé

An object containing the results of a vehicle routing problem analysis that can be used to access outputs and solver messages.

Discussion

Instances of this class cannot be created directly. Instead, they are returned by the solve method of the VehicleRoutingProblem class.

Propriétés

PropriétéExplicationType de données
isPartialSolution
(Lecture seule)

Returns True if the solver produced a partial solution, meaning that not all inputs were included in the results. This can occur if one of the inputs is unlocated and the solver class's ignoreInvalidLocations property is set to True.

Boolean
solveSucceeded
(Lecture seule)

Returns True if the solve was successful.

Boolean

Vue d’ensemble des méthodes

MéthodeExplication
count (output_type)

Returns the number of rows for an output type.

export (output_type, output_features)

Exports the analysis results to a feature class or table.

If the VehicleRoutingProblem object's returnStopShapes property is set to False, the exported output of VehicleRoutingProblemOutputDataType.Stops and VehicleRoutingProblemOutputDataType.UnassignedStops will be tables. If returnStopShapes is set to True, the exported output will be feature classes with geometry.

fieldNames (output_type)

Returns a list of field names supported by a specified output type.

saveAsLayerFile (file_name)

Saves the analysis result and settings to a layer file. The layer file can be opened in ArcGIS Desktop as a record of the analysis settings or to visualize the results. Layers produced from vehicle routing problem analyses cannot be opened in ArcGIS Pro.

saveRouteData (file_name)

Save the outputs from the analysis to a .zip file. The .zip file can be used to share the routes from the analysis as route layer items in ArcGIS Online or ArcGIS Enterprise using the Share As Route Layers tool.

Un élément de couche d’itinéraire peut être utilisé par diverses applications. Dans ArcGIS Navigator, par exemple, il permet de guider les équipes dépêchées sur le terrain, via la fenêtre Directions (Feuille de route) du module Map Viewer afin de personnaliser davantage l’itinéraire figurant dans la couche d’itinéraire ou via ArcGIS Pro pour créer une couche d’analyse d’itinéraires à partir d’une couche d’itinéraire.

The output features will be created in the spatial reference of the network dataset used for analysis. If the arcpy.env.outputCoordinateSystem environment has been set, the output will be created in that spatial reference instead.

If the solve fails, saveRouteData returns a RuntimeError exception.

The method returns a RuntimeError exception if the allowSaveRouteData property on the solver object is set to False.

searchCursor (output_type, field_names, {where_clause})

Establishes a search cursor on the specified output type. This cursor can be used to read rows directly from the output.

solverMessages (severity)

Get error, warning, and informational messages returned by the solver.

Méthodes

count (output_type)
ParamètreExplicationType de données
output_type

The type of output features to count.

The parameter should be set using the VehicleRoutingProblemOutputDataType enumeration.

Object
Valeur renvoyée
Type de donnéesExplication
Integer

The number of rows.

Raises no exception.

export (output_type, output_features)
ParamètreExplicationType de données
output_type

The type of output to export.

The parameter should be set using the VehicleRoutingProblemOutputDataType enumeration.

Object
output_features

The catalog path to the output feature class or table that will contain the exported features.

String
fieldNames (output_type)
ParamètreExplicationType de données
output_type

The type of output for which to return a list of field names.

The parameter should be set using the VehicleRoutingProblemOutputDataType enumeration.

Object
Valeur renvoyée
Type de donnéesExplication
String

A list of field names supported by the specified output type.

saveAsLayerFile (file_name)
ParamètreExplicationType de données
file_name

The catalog path of the output layer file (.lyr) to write.

String
saveRouteData (file_name)
ParamètreExplicationType de données
file_name

The full path of the output .zip file.

String
searchCursor (output_type, field_names, {where_clause})
ParamètreExplicationType de données
output_type

The type of output to read.

The parameter should be set using the VehicleRoutingProblemOutputDataType enumeration.

Object
field_names
[field_names,...]

A list of field names of the output type whose values the cursor will return. You can get the names of the fields that are supported by an output type using the fieldNames method. In addition to regular fields, you can also access the geometry of the output using one of the following geometry tokens:

  • SHAPE@XYTuple des coordonnées x,y du centroïde de l'entité.
  • SHAPE@XYZTuple des coordonnées x,y,z du centroïde de l’entité. Ce jeton est pris en charge uniquement lorsque la géométrie est de type z.
  • SHAPE@JSON Chaîne JSON d’Esri représentant la géométrie.
  • SHAPE@WKBReprésentation binaire connue (WKB) de la géométrie de l'OGC. Cette représentation constitue une représentation portable d'une valeur de géométrie sous la forme d'un flux contigu d'octets.
  • SHAPE@WKTReprésentation textuelle connue (WKT) de la géométrie de l'OGC. Cette représentation constitue une représentation portable d'une valeur de géométrie sous la forme d'une chaîne de texte.
  • SHAPE@Objet géométrie de l'entité.

The SHAPE@XY and SHAPE@XYZ tokens are only supported for point-based output types.

String
where_clause

Expression optionnelle qui limite les enregistrements retournés. Pour en savoir plus sur les clauses WHERE et les instructions SQL, consultez Référence SQL pour les éléments utilisés dans les expressions de la requête.

(La valeur par défaut est None)

String
Valeur renvoyée
Type de donnéesExplication
Object

A SolverResultSearchCursor object that reads rows from the output.

solverMessages (severity)
ParamètreExplicationType de données
severity

The type of messages to be returned.

The parameter should be specified using the MessageSeverity enumeration.

Object
Valeur renvoyée
Type de donnéesExplication
List

The messages are returned as a list of lists. The inner list contains two values; the first is a number representing the message code, and the second value is the message text.

An example of a list of messages returned from a failed origin destination cost matrix analysis.

[[-2147200995, '0 location(s) in "Destinations" are valid.  Need at least 1 valid location(s).'],
 [30024, 'Solve returned a failure.'],
 [-2147200995, 'Insufficient number of valid locations in "Origins" or "Destinations".']]