หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
Returns True if the input H3 cell ID represents a pentagon. Supports Spark Connect.
For the corresponding Databricks SQL function, see h3_ispentagon function.
Syntax
from pyspark.databricks.sql import functions as dbf
dbf.h3_ispentagon(col=<col>)
Parameters
| Parameter | Type | Description |
|---|---|---|
col |
pyspark.sql.Column or str |
An H3 cell ID, represented as int or str |
Examples
from pyspark.databricks.sql import functions as dbf
df = spark.createDataFrame([(590112357393367039,)], ['h3l'])
df.select(dbf.h3_ispentagon('h3l').alias('result')).collect()
[Row(result=True)]