Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Converts the string representation H3 cell ID to its big integer representation. Supports Spark Connect.
For the corresponding Databricks SQL function, see h3_stringtoh3 function.
Syntax
from pyspark.databricks.sql import functions as dbf
dbf.h3_stringtoh3(col=<col>)
Parameters
| Parameter | Type | Description |
|---|---|---|
col |
pyspark.sql.Column or str |
An H3 cell ID represented as a string. |
Examples
from pyspark.databricks.sql import functions as dbf
df = spark.createDataFrame([('85283473fffffff',)], ['h3s'])
df.select(dbf.h3_stringtoh3('h3s').alias('result')).collect()
[Row(result=599686042433355775)]