ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS for Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

Help

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • More...

FromWKB

  • Summary
  • Syntax
  • Code sample

Summary

Create a new Geometry object from a well-known binary (WKB) string stored in a Python bytearray.

Syntax

FromWKB (byte_array)
ParameterExplanationData Type
byte_array

A WKB string stored in a Python bytearray.

Bytearray

Return Value

Data TypeExplanation
Geometry

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

Code sample

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)

Related topics

  • FromWKT
  • AsShape

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS Platform

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

  • About Us
  • Careers
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2019 Esri. | Privacy | Legal