dtoolkit.geoaccessor.dataframe.H3.area#

property H3.area: Series#

Compute the spherical surface area of a specific H3 cell.

Returns:
Series(float64)

With H3 cell as the its index. Its values are the spherical surface area of the H3 cell and unit is m2.

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.area
612845052823076863    710781.770906
614269156845420543    852134.191671
dtype: float64