FromWKB (arcpy)
サマリ
Create a new Geometry object from a well-known binary (WKB) string stored in a Python bytearray.
構文
FromWKB (byte_array)
パラメータ | 説明 | データ タイプ |
byte_array |
A WKB string stored in a Python bytearray. | Bytearray |
データ タイプ | 説明 |
Geometry |
FromWKB returns a geometry object (PointGeometry, Multipoint, Polyline, or Polygon) based on the input bytearray. |
コードのサンプル
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)
関連トピック
9/14/2013