Skip to content

Commit

Permalink
Some more indentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
havatv committed Nov 1, 2018
1 parent 681f73a commit 1fc2f7a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions python/plugins/processing/algs/gdal/extractprojection.py
Expand Up @@ -72,7 +72,7 @@ def displayName(self):

def icon(self):
return QIcon(os.path.join(pluginPath, 'images', 'gdaltools',
'projection-export.png'))
'projection-export.png'))

def group(self):
return self.tr('Raster projections')
Expand Down Expand Up @@ -125,12 +125,12 @@ def processAlgorithm(self, parameters, context, feedback):
wld.write('%0.8f\n' % geotransform[4])
wld.write('%0.8f\n' % geotransform[2])
wld.write('%0.8f\n' % geotransform[5])
wld.write('%0.8f\n' % (geotransform[0] +
0.5 * geotransform[1] +
0.5 * geotransform[2]))
wld.write('%0.8f\n' % (geotransform[3] +
0.5 * geotransform[4] +
0.5 * geotransform[5]))
wld.write('%0.8f\n' % (geotransform[0]
+ 0.5 * geotransform[1]
+ 0.5 * geotransform[2]))
wld.write('%0.8f\n' % (geotransform[3]
+ 0.5 * geotransform[4]
+ 0.5 * geotransform[5]))
results[self.WORLD_FILE] = outFileName + '.wld'

return results

0 comments on commit 1fc2f7a

Please sign in to comment.