mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
[needs-docs]Set the service area algorithms speed to 50km/h
using the same value as the "Shortest Path" algorithms
This commit is contained in:
parent
983b5f6068
commit
58cc42a747
@ -143,7 +143,7 @@ class ServiceAreaFromLayer(QgisAlgorithm):
|
||||
params.append(QgsProcessingParameterNumber(self.DEFAULT_SPEED,
|
||||
self.tr('Default speed (km/h)'),
|
||||
QgsProcessingParameterNumber.Double,
|
||||
5.0, False, 0))
|
||||
50.0, False, 0))
|
||||
params.append(QgsProcessingParameterDistance(self.TOLERANCE,
|
||||
self.tr('Topology tolerance'),
|
||||
0.0, self.INPUT, False, 0))
|
||||
|
@ -140,7 +140,7 @@ class ServiceAreaFromPoint(QgisAlgorithm):
|
||||
params.append(QgsProcessingParameterNumber(self.DEFAULT_SPEED,
|
||||
self.tr('Default speed (km/h)'),
|
||||
QgsProcessingParameterNumber.Double,
|
||||
5.0, False, 0))
|
||||
50.0, False, 0))
|
||||
params.append(QgsProcessingParameterDistance(self.TOLERANCE,
|
||||
self.tr('Topology tolerance'),
|
||||
0.0, self.INPUT, False, 0))
|
||||
|
Loading…
x
Reference in New Issue
Block a user