FromWKB

Résumé

Creates a geometry object from a well-known binary (WKB) string stored as a bytearray or bytes object.

Syntaxe

FromWKB (byte_array)
ParamètreExplicationType de données
byte_array

A WKB string stored in a bytearray or bytes object.

Bytearray
Valeur renvoyée
Type de donnéesExplication
Geometry

Returns a geometry object (PointGeometry, Multipoint, Polyline, or Polygon) based on the input bytearray or bytes object.

Exemple de code

FromWKB example

This example illustrates the use of converting a WKB to a geometry object.

import arcpy

fc = "c:/base/gdb.gdb/counties"

rows = arcpy.da.SearchCursor(fc, ['SHAPE@'])
studyarea = rows.next()[0]

# Create geometry to WKB
polyWKB = studyarea.WKB

# Convert WKB back to a geometry
polyGeom = arcpy.FromWKB(polyWKB)

Rubriques connexes


Dans cette rubrique