fromWKB (Geometry)
Constructs a Geometry object from WKB.
Syntax
Geometry.fromWKB(wkb: bytes, srid: int)
Parameters
Parameter | Type | Description |
|---|---|---|
| bytes | The bytes representing the WKB of the Geometry. |
| int | The integer value representing the SRID of the Geometry. |
Returns
Geometry
Examples
Python
from pyspark.sql.types import Geometry
wkb = bytes.fromhex('010100000000000000000031400000000000001c40')
g = Geometry.fromWKB(wkb, 0)