Skip to content

Commit 47a7d62

Browse files
committed
v4.24.0
1 parent 4ab16cd commit 47a7d62

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cityseer"
3-
version = '4.24.0b4'
3+
version = '4.24.0'
44
description = "Computational tools for network-based pedestrian-scale urban analysis"
55
readme = "README.md"
66
requires-python = ">=3.10, <3.14" # pending fiona support for 3.14

qgis_plugin/cityseer_qgis/algorithms/centrality.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,8 @@ def initAlgorithm(self, config=None):
197197
self.TOLERANCE,
198198
self.tr(
199199
"Shortest-path betweenness tolerance % (0 = exact shortest paths only). "
200-
"Spreads betweenness across near-shortest routes. Keep below 1% "
201-
"— higher values increasingly diffuse route concentration, "
202-
"especially at larger distance thresholds."
200+
"Spreads betweenness across near-shortest routes. "
201+
"Recommend staying below 2%."
203202
),
204203
type=QgsProcessingParameterNumber.Type.Double,
205204
defaultValue=0.0,
@@ -213,9 +212,8 @@ def initAlgorithm(self, config=None):
213212
self.tr(
214213
"Simplest-path tolerance % of angular route cost "
215214
"(0 = no added tolerance beyond the internal float-stability epsilon). "
216-
"Spreads betweenness across near-simplest routes. Keep below 1% "
217-
"— higher values increasingly diffuse route concentration, "
218-
"especially at larger distance thresholds."
215+
"Spreads betweenness across near-simplest routes. "
216+
"Recommend staying below 20%."
219217
),
220218
type=QgsProcessingParameterNumber.Type.Double,
221219
defaultValue=0.0,

0 commit comments

Comments
 (0)