dtoolkit.geoaccessor.index.H3.resolution#

property H3.resolution: Series#

Return the resolution of H3 cell.

Returns:
Series(int64)

With H3 cell as the its index. Its values are the resolution of the H3 cell.

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.resolution
612845052823076863    8
614269156845420543    8
dtype: int64