Condividi tramite


getBytes (geography)

Restituisce il WKB di Geography.

Sintassi

getBytes()

Restituzioni

bytes

Examples

from pyspark.databricks.sql import functions as dbf
df = spark.createDataFrame([ {'geogwkt': '''POINT(17 7)'''} ])
g = df.select(dbf.st_geogfromwkt(df.geogwkt).alias("geog")).head().geog
g.getBytes().hex()
# '010100000000000000000031400000000000001c40'