VoronoiRegionalizer
Bases: Regionalizer
VoronoiRegionalizer.
Voronoi [1] regionalizer allows the given geometries to be divided into Thiessen polygons using geometries that are the seeds. To minimize distortions tessellation will be performed on a sphere using SphericalVoronoi [2] function from scipy library.
References
Source code in srai/regionalizers/voronoi_regionalizer.py
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 |
|
__init__
__init__(seeds: gpd.GeoDataFrame, max_meters_between_points: int = 10000, num_of_multiprocessing_workers: int = -1, multiprocessing_activation_threshold: Optional[int] = None) -> None
Init VoronoiRegionalizer.
All (multi)polygons from seeds GeoDataFrame will be transformed to their centroids, because scipy function requires only points as an input.
PARAMETER | DESCRIPTION |
---|---|
seeds |
GeoDataFrame with seeds for creating a tessellation. Minimum 4 seeds are required. Seeds cannot lie on a single arc. Empty seeds will be removed.
TYPE:
|
max_meters_between_points |
Maximal distance in meters between two points in a resulting polygon. Higher number results lower resolution of a polygon.
TYPE:
|
num_of_multiprocessing_workers |
Number of workers used for
multiprocessing. Defaults to
TYPE:
|
multiprocessing_activation_threshold |
Number of seeds required to start processing on multiple processes. Activating multiprocessing for a small amount of points might not be feasible. Defaults to 100.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
ValueError
|
If any seed is duplicated. |
ValueError
|
If less than 4 seeds are provided. |
ValueError
|
If provided seeds geodataframe has no crs defined. |
Source code in srai/regionalizers/voronoi_regionalizer.py
transform
Regionalize a given GeoDataFrame.
Returns a list of disjointed regions consisting of Thiessen cells generated using a Voronoi diagram on the sphere.
PARAMETER | DESCRIPTION |
---|---|
gdf |
GeoDataFrame to be regionalized. Will use this list of geometries to crop resulting regions. If None, a boundary box with bounds (-180, -90, 180, 90) is used to return regions covering whole Earth. Defaults to None.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
gpd.GeoDataFrame
|
gpd.GeoDataFrame: GeoDataFrame with the regionalized data cropped using input GeoDataFrame. |
RAISES | DESCRIPTION |
---|---|
ValueError
|
If provided geodataframe has no crs defined. |
ValueError
|
If seeds are laying on a single arc. |