We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 1395dc0 commit f85a3d6Copy full SHA for f85a3d6
python/plugins/processing/algs/saga/SagaAlgorithmProvider.py
100644
100755
@@ -123,13 +123,16 @@ def id(self):
123
return 'saga'
124
125
def defaultVectorFileExtension(self, hasGeometry=True):
126
- return 'shp'
+ return 'shp' if hasGeometry else 'dbf'
127
128
def defaultRasterFileExtension(self):
129
return 'sdat'
130
131
- def supportedOutputTableExtensions(self):
132
- return ['dbf']
+ def supportedOutputRasterLayerExtensions(self):
+ return ['sdat']
133
+
134
+ def supportedOutputVectorLayerExtensions(self):
135
+ return ['shp', 'dbf']
136
137
def supportsNonFileBasedOutput(self):
138
"""
0 commit comments