2013-09-14 18:24:39 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
rasterize.py
|
|
|
|
---------------------
|
|
|
|
Date : September 2013
|
|
|
|
Copyright : (C) 2013 by Alexander Bruy
|
|
|
|
Email : alexander dot bruy at gmail dot com
|
|
|
|
***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = 'Alexander Bruy'
|
|
|
|
__date__ = 'September 2013'
|
|
|
|
__copyright__ = '(C) 2013, Alexander Bruy'
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2013-09-14 18:24:39 +03:00
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2013-09-14 18:24:39 +03:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
2014-06-02 00:35:49 +02:00
|
|
|
from processing.algs.gdal.GdalAlgorithm import GdalAlgorithm
|
2013-09-14 18:24:39 +03:00
|
|
|
from processing.tools.system import *
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.parameters import ParameterVector
|
|
|
|
from processing.core.parameters import ParameterTableField
|
|
|
|
from processing.core.parameters import ParameterSelection
|
|
|
|
from processing.core.parameters import ParameterNumber
|
2014-10-21 22:21:52 +01:00
|
|
|
from processing.core.parameters import ParameterBoolean
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.outputs import OutputRaster
|
2014-04-17 01:41:25 +02:00
|
|
|
from processing.algs.gdal.GdalUtils import GdalUtils
|
2013-09-14 18:24:39 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2014-06-02 00:35:49 +02:00
|
|
|
class rasterize(GdalAlgorithm):
|
2013-09-14 18:24:39 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
INPUT = 'INPUT'
|
|
|
|
FIELD = 'FIELD'
|
|
|
|
DIMENSIONS = 'DIMENSIONS'
|
|
|
|
WIDTH = 'WIDTH'
|
|
|
|
HEIGHT = 'HEIGHT'
|
2014-11-13 23:13:13 +01:00
|
|
|
WRITEOVER = 'WRITEOVER'
|
2014-10-19 23:24:06 +01:00
|
|
|
RTYPE = 'RTYPE'
|
2013-10-01 20:52:22 +03:00
|
|
|
OUTPUT = 'OUTPUT'
|
2014-11-13 23:13:13 +01:00
|
|
|
|
2014-10-19 23:24:06 +01:00
|
|
|
TYPE = ['Byte','Int16','UInt16','UInt32','Int32','Float32','Float64','CInt16','CInt32','CFloat32','CFloat64']
|
2013-09-14 18:24:39 +03:00
|
|
|
|
2013-10-06 13:25:01 +02:00
|
|
|
def commandLineName(self):
|
|
|
|
return "gdalogr:rasterize"
|
2013-09-14 18:24:39 +03:00
|
|
|
|
|
|
|
def defineCharacteristics(self):
|
2013-10-01 20:52:22 +03:00
|
|
|
self.name = 'Rasterize (vector to raster)'
|
|
|
|
self.group = '[GDAL] Conversion'
|
|
|
|
self.addParameter(ParameterVector(self.INPUT, 'Input layer'))
|
|
|
|
self.addParameter(ParameterTableField(self.FIELD, 'Attribute field',
|
|
|
|
self.INPUT))
|
2014-10-21 22:21:52 +01:00
|
|
|
self.addParameter(ParameterBoolean(self.WRITEOVER,
|
|
|
|
'Write values inside an existing raster layer(*)', False))
|
2013-10-01 20:52:22 +03:00
|
|
|
self.addParameter(ParameterSelection(self.DIMENSIONS,
|
2014-10-21 22:21:52 +01:00
|
|
|
'Set output raster size (ignored if above option is checked)', ['Output size in pixels',
|
2014-10-19 22:33:54 +01:00
|
|
|
'Output resolution in map units per pixel'], 1))
|
2013-10-01 20:52:22 +03:00
|
|
|
self.addParameter(ParameterNumber(self.WIDTH, 'Horizontal', 0.0,
|
2014-10-19 22:33:54 +01:00
|
|
|
99999999.999999, 100.0))
|
2013-10-01 20:52:22 +03:00
|
|
|
self.addParameter(ParameterNumber(self.HEIGHT, 'Vertical', 0.0,
|
2014-10-19 22:33:54 +01:00
|
|
|
99999999.999999, 100.0))
|
2014-10-19 23:24:06 +01:00
|
|
|
self.addParameter(ParameterSelection(self.RTYPE, 'Raster type',
|
|
|
|
self.TYPE, 0))
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2014-10-21 22:27:18 +01:00
|
|
|
self.addOutput(OutputRaster(self.OUTPUT, 'Output layer: mandatory to choose an existing raster layer if the (*) option is selected'))
|
2013-09-14 18:24:39 +03:00
|
|
|
|
|
|
|
def processAlgorithm(self, progress):
|
2014-10-21 22:21:52 +01:00
|
|
|
writeOver = self.getParameterValue(self.WRITEOVER)
|
2014-11-13 23:13:13 +01:00
|
|
|
|
2013-09-14 18:24:39 +03:00
|
|
|
arguments = []
|
2013-10-01 20:52:22 +03:00
|
|
|
arguments.append('-a')
|
2013-09-14 18:24:39 +03:00
|
|
|
arguments.append(str(self.getParameterValue(self.FIELD)))
|
2014-10-21 22:21:52 +01:00
|
|
|
|
|
|
|
if not writeOver:
|
|
|
|
arguments.append('-ot')
|
2014-11-13 23:13:13 +01:00
|
|
|
arguments.append(self.TYPE[self.getParameterValue(self.RTYPE)])
|
2014-10-21 22:21:52 +01:00
|
|
|
dimType = self.getParameterValue(self.DIMENSIONS)
|
|
|
|
if dimType == 0:
|
|
|
|
# size in pixels
|
|
|
|
arguments.append('-ts')
|
|
|
|
else:
|
|
|
|
# resolution in map units per pixel
|
|
|
|
arguments.append('-tr')
|
|
|
|
arguments.append(str(self.getParameterValue(self.WIDTH)))
|
|
|
|
arguments.append(str(self.getParameterValue(self.HEIGHT)))
|
2013-09-14 18:24:39 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
arguments.append('-l')
|
|
|
|
arguments.append(
|
|
|
|
os.path.basename(os.path.splitext(
|
|
|
|
unicode(self.getParameterValue(self.INPUT)))[0]))
|
2013-09-14 18:24:39 +03:00
|
|
|
arguments.append(unicode(self.getParameterValue(self.INPUT)))
|
|
|
|
|
|
|
|
arguments.append(unicode(self.getOutputValue(self.OUTPUT)))
|
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
GdalUtils.runGdal(['gdal_rasterize',
|
|
|
|
GdalUtils.escapeAndJoin(arguments)], progress)
|