H3Neighbourhood
Bases: Neighbourhood[str]
H3 Neighbourhood.
This class allows to get the neighbours of an H3 region.
Source code in srai/neighbourhoods/h3_neighbourhood.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
__init__
Initializes the H3Neighbourhood.
If a regions GeoDataFrame is provided, only the neighbours that are in the regions GeoDataFrame will be returned by the methods of this instance.
If a region is a part of the k-th ring of a region
and is included in the GeoDataFrame, it will be returned by get_neighbours_at_distance method with distance k even when there is no path of length k between the two regions.
PARAMETER | DESCRIPTION |
---|---|
regions_gdf |
The regions that are being analyzed. The H3Neighbourhood will only look for neighbours among these regions. Defaults to None.
TYPE:
|
include_center |
Whether to include the region itself in the neighbours.
TYPE:
|
Source code in srai/neighbourhoods/h3_neighbourhood.py
get_neighbours
Get the direct neighbours of an H3 region using its index.
PARAMETER | DESCRIPTION |
---|---|
index |
H3 index of the region.
TYPE:
|
include_center |
Whether to include the region itself in the neighbours.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Set[str]
|
Set[str]: Indexes of the neighbours. |
Source code in srai/neighbourhoods/h3_neighbourhood.py
get_neighbours_at_distance
get_neighbours_at_distance(index: str, distance: int, include_center: Optional[bool] = None) -> Set[str]
Get the neighbours of an H3 region at a certain distance.
PARAMETER | DESCRIPTION |
---|---|
index |
H3 index of the region.
TYPE:
|
distance |
Distance to the neighbours.
TYPE:
|
include_center |
Whether to include the region itself in the neighbours.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Set[str]
|
Set[str]: Indexes of the neighbours at the given distance. |
Source code in srai/neighbourhoods/h3_neighbourhood.py
get_neighbours_up_to_distance
get_neighbours_up_to_distance(index: str, distance: int, include_center: Optional[bool] = None) -> Set[str]
Get the neighbours of an H3 region up to a certain distance.
PARAMETER | DESCRIPTION |
---|---|
index |
H3 index of the region.
TYPE:
|
distance |
Distance to the neighbours.
TYPE:
|
include_center |
Whether to include the region itself in the neighbours.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Set[str]
|
Set[str]: Indexes of the neighbours up to the given distance. |