@@ -136,7 +136,6 @@ def enclosed_tessellation(
136
136
use_ca : bool = False ,
137
137
cell_size : float = 1.0 ,
138
138
neighbor_mode : str = "moore" ,
139
- fulfill : bool = False ,
140
139
barriers_for_inner : GeoSeries | GeoDataFrame = None ,
141
140
) -> GeoDataFrame :
142
141
"""Generate enclosed tessellation
@@ -283,7 +282,6 @@ def enclosed_tessellation(
283
282
use_ca ,
284
283
cell_size ,
285
284
neighbor_mode ,
286
- fulfill ,
287
285
barriers_for_inner ,
288
286
)
289
287
for t in tuples
@@ -329,7 +327,6 @@ def _tess(
329
327
use_ca ,
330
328
cell_size ,
331
329
neighbor_mode ,
332
- fulfill ,
333
330
barriers_for_inner ,
334
331
):
335
332
"""Generate tessellation for a single enclosure. Helper for enclosed_tessellation"""
@@ -366,7 +363,6 @@ def _tess(
366
363
barrier_geoms = poly ,
367
364
cell_size = cell_size ,
368
365
neighbor_mode = neighbor_mode ,
369
- fulfill = fulfill ,
370
366
barriers_for_inner = barriers_for_inner ,
371
367
)
372
368
tess [enclosure_id ] = ix
@@ -391,7 +387,6 @@ def _voronoi_by_ca(
391
387
barrier_geoms : GeoSeries | GeoDataFrame ,
392
388
cell_size : float = 1.0 ,
393
389
neighbor_mode : str = "moore" ,
394
- fulfill : bool = True ,
395
390
barriers_for_inner : GeoSeries | GeoDataFrame = None ,
396
391
) -> GeoDataFrame :
397
392
"""
@@ -414,7 +409,6 @@ def _voronoi_by_ca(
414
409
barrier_geoms: GeoDataFrame containing barrier features or a shapely Polygon.
415
410
cell_size: Grid cell size. By default it is 1.0.
416
411
neighbor_mode: Choice of neighbor connectivity ('moore' or 'neumann'). By default it is 'moore'.
417
- fulfill: Whether to assign adjacent seed cells to the same seed id. By default it is True.
418
412
barriers_for_inner: GeoDataFrame containing inner barriers to be included. By default it is None.
419
413
420
414
Returns:
@@ -525,8 +519,7 @@ def _voronoi_by_ca(
525
519
)
526
520
527
521
# Post-process barrier and boundary cells using a voting mechanism.
528
- if fulfill :
529
- states = _assign_adjacent_seed_cells (states , neighbor_mode )
522
+ states = _assign_adjacent_seed_cells (states , neighbor_mode )
530
523
531
524
# Create grid cell polygons and build a GeoDataFrame.
532
525
xs , ys = np .meshgrid (np .arange (grid_width ), np .arange (grid_height ))
0 commit comments