Skip to content

Commit 5b4a06e

Browse files
Yuta SatoYuta Sato
Yuta Sato
authored and
Yuta Sato
committed
delete fulfill and make it as a default behaviour
1 parent 551871d commit 5b4a06e

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

momepy/functional/_elements.py

+1-8
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ def enclosed_tessellation(
136136
use_ca: bool = False,
137137
cell_size: float = 1.0,
138138
neighbor_mode: str = "moore",
139-
fulfill: bool = False,
140139
barriers_for_inner: GeoSeries | GeoDataFrame = None,
141140
) -> GeoDataFrame:
142141
"""Generate enclosed tessellation
@@ -283,7 +282,6 @@ def enclosed_tessellation(
283282
use_ca,
284283
cell_size,
285284
neighbor_mode,
286-
fulfill,
287285
barriers_for_inner,
288286
)
289287
for t in tuples
@@ -329,7 +327,6 @@ def _tess(
329327
use_ca,
330328
cell_size,
331329
neighbor_mode,
332-
fulfill,
333330
barriers_for_inner,
334331
):
335332
"""Generate tessellation for a single enclosure. Helper for enclosed_tessellation"""
@@ -366,7 +363,6 @@ def _tess(
366363
barrier_geoms=poly,
367364
cell_size=cell_size,
368365
neighbor_mode=neighbor_mode,
369-
fulfill=fulfill,
370366
barriers_for_inner=barriers_for_inner,
371367
)
372368
tess[enclosure_id] = ix
@@ -391,7 +387,6 @@ def _voronoi_by_ca(
391387
barrier_geoms: GeoSeries | GeoDataFrame,
392388
cell_size: float = 1.0,
393389
neighbor_mode: str = "moore",
394-
fulfill: bool = True,
395390
barriers_for_inner: GeoSeries | GeoDataFrame = None,
396391
) -> GeoDataFrame:
397392
"""
@@ -414,7 +409,6 @@ def _voronoi_by_ca(
414409
barrier_geoms: GeoDataFrame containing barrier features or a shapely Polygon.
415410
cell_size: Grid cell size. By default it is 1.0.
416411
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.
418412
barriers_for_inner: GeoDataFrame containing inner barriers to be included. By default it is None.
419413
420414
Returns:
@@ -525,8 +519,7 @@ def _voronoi_by_ca(
525519
)
526520

527521
# 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)
530523

531524
# Create grid cell polygons and build a GeoDataFrame.
532525
xs, ys = np.meshgrid(np.arange(grid_width), np.arange(grid_height))

0 commit comments

Comments
 (0)