Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Constructs a Geometry object from WKB.
Syntax
Geometry.fromWKB(wkb: bytes, srid: int)
Parameters
| Parameter | Type | Description |
|---|---|---|
wkb |
bytes | The bytes representing the WKB of the Geometry. |
srid |
int | The integer value representing the SRID of the Geometry. |
Returns
Geometry
Examples
from pyspark.sql.types import Geometry
wkb = bytes.fromhex('010100000000000000000031400000000000001c40')
g = Geometry.fromWKB(wkb, 0)