dtoolkit.geoaccessor.series.H3.is_pentagon#

property H3.is_pentagon: Series#

Identify if H3 cell is a pentagon.

Returns:
Series(bool)

With H3 cell as the its index. Its values indicating whether the H3 cell is a pentagon.

Examples

>>> import dtoolkit.geoaccessor
>>> import pandas as pd
>>> s = pd.Series(['a', 'b'], index=[612845052823076863, 614269156845420543])
>>> s
612845052823076863    a
614269156845420543    b
dtype: object
>>> s.h3.is_pentagon
612845052823076863    False
614269156845420543    False
dtype: bool