Skip to main content

fromWKB (Geography)

Constructs a Geography object from WKB.

Syntax

Geography.fromWKB(wkb: bytes, srid: int)

Parameters

Parameter

Type

Description

wkb

bytes

The bytes representing the WKB of the Geography.

srid

int

The integer value representing the SRID of the Geography.

Returns

Geography

Examples

Python
from pyspark.sql.types import Geography
wkb = bytes.fromhex('010100000000000000000031400000000000001c40')
g = Geography.fromWKB(wkb, 4326)