Skip to content

Commit 559c2d9

Browse files
committedOct 6, 2014
[processing] enabled more gdal output extensions
1 parent 66b1f53 commit 559c2d9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎python/plugins/processing/algs/gdal/GdalUtils.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,11 @@ def getSupportedRasters():
105105
continue
106106
shortName = driver.ShortName
107107
metadata = driver.GetMetadata()
108-
if gdal.DCAP_CREATE not in metadata \
109-
or metadata[gdal.DCAP_CREATE] != 'YES':
110-
continue
108+
#===================================================================
109+
# if gdal.DCAP_CREATE not in metadata \
110+
# or metadata[gdal.DCAP_CREATE] != 'YES':
111+
# continue
112+
#===================================================================
111113
if gdal.DMD_EXTENSION in metadata:
112114
extensions = metadata[gdal.DMD_EXTENSION].split('/')
113115
if extensions:

0 commit comments

Comments
 (0)