H3
Utility H3 related functions.
Functions
get_local_ij_index
Calculate the local H3 ij index based on provided origin index.
Wraps H3's cell_to_local_ij function and centers returned coordinates around provided origin cell.
PARAMETER | DESCRIPTION |
---|---|
origin_index |
H3 index of the origin region.
TYPE:
|
h3_index |
H3 index of the second region or list of regions.
TYPE:
|
return_as_numpy |
Flag whether to return calculated indexes as a Numpy array or a list of tuples.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Union[Tuple[int, int], List[Tuple[int, int]], npt.NDArray[np.int8]]
|
Union[Tuple[int, int], List[Tuple[int, int]], npt.NDArray[np.int8]]: The local ij index of the second region (or regions) with respect to the first one. |
Source code in srai/h3.py
h3_to_geoseries
Convert H3 index to GeoPandas GeoSeries.
PARAMETER | DESCRIPTION |
---|---|
h3_index |
H3 index (or list of indexes) to be converted.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
GeoSeries
|
Geometries as GeoSeries with default CRS applied.
TYPE:
|
Source code in srai/h3.py
shapely_geometry_to_h3
Convert Shapely geometry to H3 indexes.
PARAMETER | DESCRIPTION |
---|---|
geometry |
Shapely geometry to be converted.
TYPE:
|
h3_resolution |
H3 resolution of the cells. See [1] for a full comparison.
TYPE:
|
buffer |
Whether to fully cover the geometries with H3 Cells (visible on the borders). Defaults to True.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
List[str]
|
List[str]: List of H3 indexes that cover a given geometry. |
RAISES | DESCRIPTION |
---|---|
ValueError
|
If resolution is not between 0 and 15. |
Source code in srai/h3.py
h3_to_shapely_geometry
Convert H3 index to Shapely polygon.
PARAMETER | DESCRIPTION |
---|---|
h3_index |
H3 index (or list of indexes) to be converted.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Union[Polygon, List[Polygon]]
|
Union[Polygon, List[Polygon]]: Converted polygon (or list of polygons). |