OriginDestinationCostMatrixResult

Zusammenfassung

An object containing the results of an origin destination cost matrix analysis that can be used to access outputs and solver messages.

Diskussion

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

Learn more about how to use the result object to access and work with the analysis outputs

Eigenschaften

EigenschaftErläuterungDatentyp
isPartialSolution
(Schreibgeschützt)

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
(Schreibgeschützt)

Returns True if the solve was successful.

Boolean
spatialReference
(Schreibgeschützt)

Returns the spatial reference of the output features. For example, feature classes created using the export method and geometry objects retrieved from the searchCursor method will have this spatial reference. The spatialReference value is typically the spatial reference of the network dataset or service used in the analysis.

SpatialReference

Methodenübersicht

MethodeErläuterung
count (output_type)

Returns the number of rows for an output type.

export (output_type, output_features)

The output features will be created in the spatial reference of the network dataset used for the analysis. If the arcpy.env.outputCoordinateSystem environment is set, the output features will be created with the specified coordinate system instead.

Exports the analysis results to a feature class or table.

extent ({output_type})

Returns the extent of the analysis output.

The method returns a RuntimeError exception if the analysis solve failed.

fieldNames (output_type)

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

saveAsLayerFile (file_name)

Save the analysis result and settings to a layer file or layer package. The layer file or package can be opened in ArcGIS Pro as a record of the analysis settings or to visualize the results. A layer file can also be opened in ArcGIS Desktop.

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

Vorversion:

Routing services based on portals running versions of ArcGIS Enterprise older than 10.9 do not support saving layer packages. The method returns a RuntimeError exception if this is the case.

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.

toArrowTable (output_type, field_names, {file_name}, {max_batch_size})

Returns the OD Cost Matrix result in Apache Arrow format.

Hinweis:

Arrow output is not available if the solver object uses a service URL as its network data source. The method returns a RuntimeError exception in this case.

Methoden

count (output_type)
ParameterErläuterungDatentyp
output_type

The type of output features to count.

The parameter should be set using the OriginDestinationCostMatrixOutputDataType enumeration.

Object
Rückgabewert
DatentypErläuterung
Integer

The number of rows.

Raises no exception.

export (output_type, output_features)
ParameterErläuterungDatentyp
output_type

The type of output to export.

The parameter should be set using the OriginDestinationCostMatrixOutputDataType enumeration.

See descriptions of the fields included in each output type

Object
output_features

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

String
extent ({output_type})
ParameterErläuterungDatentyp
output_type

The type of output features for which to get the extent.

The parameter should be set using the OriginDestinationCostMatrixOutputDataType enumeration.

If you do not specify a value, or you specify a value of None, the extent for the combined analysis outputs is returned.

Object
Rückgabewert
DatentypErläuterung
Extent

An arcpy.Extent object indicating the extent of the designated output type.

fieldNames (output_type)
ParameterErläuterungDatentyp
output_type

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

The parameter should be set using the OriginDestinationCostMatrixOutputDataType enumeration.

See descriptions of the fields included in each output type

Object
Rückgabewert
DatentypErläuterung
String

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

saveAsLayerFile (file_name)
ParameterErläuterungDatentyp
file_name

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

Vorsicht:

Layer files with an .lyr extension cannot be saved if the solver object uses a service URL as its network data source. The method returns a RuntimeError exception in this case.

String
searchCursor (output_type, field_names, {where_clause})
ParameterErläuterungDatentyp
output_type

The type of output to read.

The parameter should be set using the OriginDestinationCostMatrixOutputDataType 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.

See descriptions of the fields included in each output type

In addition to regular fields, you can also access the geometry of the output using one of the following geometry tokens:

  • SHAPE@XYA tuple of the feature's centroid's x- and y-coordinates.
  • SHAPE@XYZA tuple of the feature's centroid's x-, y-, and z-coordinates.
  • SHAPE@JSON The Esri JSON string representing the geometry.
  • SHAPE@WKBThe well-known binary (WKB) representation for OGC geometry. It provides a portable representation of a geometry value as a contiguous stream of bytes.
  • SHAPE@WKTThe well-known text (WKT) representation for OGC geometry. It provides a portable representation of a geometry value as a text string.
  • SHAPE@A geometry object for the feature.

The SHAPE@XY and SHAPE@XYZ tokens are only supported for point-based output types. The x-, y-, and z-values returned when using the SHAPE@XY and SHAPE@XYZ tokens are in the spatial reference reported by the solver result object's spatialReference property, and this is typically the same as the spatial reference of the network data source used for the analysis.

Tipp:

Retrieving geometry for the Lines output type can be slow. For best performance, do not request geometry using any of the geometry tokens.

String
where_clause

An optional expression that limits the records returned. For more information on WHERE clauses and SQL statements, see SQL reference for query expressions used in ArcGIS.

(Der Standardwert ist None)

String
Rückgabewert
DatentypErläuterung
Object

A SolverResultSearchCursor object that reads rows from the output.

solverMessages (severity)
ParameterErläuterungDatentyp
severity

The type of messages to be returned.

The parameter should be specified using the MessageSeverity enumeration.

Object
Rückgabewert
DatentypErläuterung
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".']]

toArrowTable (output_type, field_names, {file_name}, {max_batch_size})
ParameterErläuterungDatentyp
output_type

The type of output to read.

The parameter should be set using the OriginDestinationCostMatrixOutputDataType enumeration.

Vorsicht:

Only the Lines output type is currently supported. The method returns a RuntimeError exception if a different output type is specified.

Object
field_names
[field_names,...]

A list of field names of the output type to include in the Arrow table.

See descriptions of the fields included in each output type

Vorsicht:

For the Lines output type, the Shape, OriginName, and DestinationName fields are not supported.

String
file_name

The file path to use to save the analysis results permanently. The file will contain one or more Arrow record batches and can be opened in any package or library that supports the Arrow format.

This parameter is optional. If it is not specified, the Arrow table returned by the method can be used within the current Python operation but will not be stored permanently.

String
max_batch_size

The maximum number of records to include in a single record batch in the output Arrow table. When no value or None is specified, a value of 2,147,483,647 is used. If the total number of records is smaller than the specified max_batch_size, the output Arrow table and file will contain only one record batch.

For very large analyses, writing the output in batches prevents out-of-memory errors. The method always returns a single Arrow table and output file (if the file_name parameter is specified), but the presence of multiple record batches in the output may influence how you handle it in subsequent code. When an Arrow table or file containing multiple record batches is converted to another format, such as a Pandas DataFrame, you may not be able to do a zero-copy read of the entire table or file. In a zero-copy read, the data can be accessed without additional serialization overhead to load it in RAM. To achieve this zero-copy read behavior, your code may need to handle one record batch at a time.

For the Lines output type, for most applications, it is important to keep all records associated with the same origin together in the same batch. This ensures that you can do a zero-copy read of all records for that origin for post-processing or further analysis. If the number of records associated with a given origin exceeds the specified max_batch_size, the method will override the max_batch_size value, and the resulting record batches will increase to the minimum size needed to store all records associated with the origin.

The value for max_batch_size cannot exceed 2,147,483,647.

Integer
Rückgabewert
DatentypErläuterung
Object

An Apache Arrow Table Python object representing the desired output type with the specified fields.