fixes the ogr2ogr based geoprocessing tools

This commit is contained in:
Giovanni Manghi 2018-10-04 14:34:02 +01:00 committed by Nyall Dawson
parent 7bd0285dfd
commit fbb916d908
5 changed files with 5 additions and 5 deletions

View File

@ -125,7 +125,7 @@ class Buffer(GdalAlgorithm):
other_fields.append(f.name())
if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''

View File

@ -135,7 +135,7 @@ class Dissolve(GdalAlgorithm):
other_fields.append(f.name())
if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''

View File

@ -107,7 +107,7 @@ class OffsetCurve(GdalAlgorithm):
other_fields.append(f.name())
if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''

View File

@ -136,7 +136,7 @@ class OneSideBuffer(GdalAlgorithm):
other_fields.append(f.name())
if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''

View File

@ -111,7 +111,7 @@ class PointsAlongLines(GdalAlgorithm):
other_fields.append(f.name())
if other_fields:
other_fields = ', {}'.format(','.join(other_fields))
other_fields = ',*'
else:
other_fields = ''