Skip to content

Commit

Permalink
[processing] enabled more gdal output extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 6, 2014
1 parent 66b1f53 commit 559c2d9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions python/plugins/processing/algs/gdal/GdalUtils.py
Expand Up @@ -105,9 +105,11 @@ def getSupportedRasters():
continue
shortName = driver.ShortName
metadata = driver.GetMetadata()
if gdal.DCAP_CREATE not in metadata \
or metadata[gdal.DCAP_CREATE] != 'YES':
continue
#===================================================================
# if gdal.DCAP_CREATE not in metadata \
# or metadata[gdal.DCAP_CREATE] != 'YES':
# continue
#===================================================================
if gdal.DMD_EXTENSION in metadata:
extensions = metadata[gdal.DMD_EXTENSION].split('/')
if extensions:
Expand Down

0 comments on commit 559c2d9

Please sign in to comment.