Neighbourhood
Bases: ABC
, Generic[IndexType]
Neighbourhood interface.
This class abstracts away getting the neighbours of a region. It allows to get the neighbours at a certain distance or up to a certain distance. It is worth noting, that the distance here is not a metric distance, but a number of hops. This definition makes most sense semantically for grid systems such as H3 or S2 but should work for arbitrary neighbourhoods as well.
The subclasses only need to implement the get_neighbours
method, but can also override the
get_neighbours_up_to_distance
and get_neighbours_at_distance
methods for performance
reasons. See the H3Neighbourhood
class for an example. The class also provides a
_handle_center
method, which can be used to handle including/excluding the center region.
Source code in srai/neighbourhoods/_base.py
12 13 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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
|
__init__
Initializes the Neighbourhood.
PARAMETER | DESCRIPTION |
---|---|
include_center |
Whether to include the region itself in the neighbours.
TYPE:
|
Source code in srai/neighbourhoods/_base.py
get_neighbours
abstractmethod
Get the direct neighbours of a region using its index.
PARAMETER | DESCRIPTION |
---|---|
index |
Unique identifier of the region. Dependant on the implementation.
TYPE:
|
include_center |
Whether to include the region itself in the neighbours.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Set[IndexType]
|
Set[IndexType]: Indexes of the neighbours. |
Source code in srai/neighbourhoods/_base.py
get_neighbours_at_distance
get_neighbours_at_distance(index: IndexType, distance: int, include_center: Optional[bool] = None) -> Set[IndexType]
Get the neighbours of a region at a certain distance.
PARAMETER | DESCRIPTION |
---|---|
index |
Unique identifier of the region. Dependant on the implementation.
TYPE:
|
distance |
Distance to the neighbours.
TYPE:
|
include_center |
Whether to include the region itself in the neighbours.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Set[IndexType]
|
Set[IndexType]: Indexes of the neighbours. |
Source code in srai/neighbourhoods/_base.py
get_neighbours_up_to_distance
get_neighbours_up_to_distance(index: IndexType, distance: int, include_center: Optional[bool] = None) -> Set[IndexType]
Get the neighbours of a region up to a certain distance.
PARAMETER | DESCRIPTION |
---|---|
index |
Unique identifier of the region. Dependant on the implementation.
TYPE:
|
distance |
Maximum distance to the neighbours.
TYPE:
|
include_center |
Whether to include the region itself in the neighbours.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Set[IndexType]
|
Set[IndexType]: Indexes of the neighbours. |