@@ -2234,12 +2234,12 @@ def proximity_computation_cli(
2234
2234
output_raster : OUTPUT_FILE_OPTION ,
2235
2235
max_distance : float = typer .Option (),
2236
2236
max_distance_value : float = 0.0 ,
2237
- anomaly_value : float = 1.0 ,
2237
+ geometries_value : float = 1.0 ,
2238
2238
base_raster : INPUT_FILE_OPTION = None ,
2239
2239
pixel_size : float = None ,
2240
2240
extent : Tuple [float , float , float , float ] = (None , None , None , None ),
2241
2241
):
2242
- """Calculate distance from raster cell to nearest geometry."""
2242
+ """Calculate proximity from raster cell to nearest geometry."""
2243
2243
from eis_toolkit .exceptions import InvalidParameterValueException
2244
2244
from eis_toolkit .utilities .raster import profile_from_extent_and_pixel_size
2245
2245
from eis_toolkit .vector_processing .proximity_computation import proximity_computation
@@ -2267,7 +2267,7 @@ def proximity_computation_cli(
2267
2267
geodataframe = geodataframe ,
2268
2268
raster_profile = profile ,
2269
2269
maximum_distance = max_distance ,
2270
- scale_range = (anomaly_value , max_distance_value ),
2270
+ scale_range = (geometries_value , max_distance_value ),
2271
2271
)
2272
2272
profile ["count" ] = 1
2273
2273
typer .echo ("Progress: 75%" )
0 commit comments