mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
138 lines
5.1 KiB
Python
138 lines
5.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
from PyQt4.QtCore import *
|
|
from PyQt4.QtGui import *
|
|
from qgis.core import *
|
|
from qgis.gui import *
|
|
from osgeo import ogr
|
|
|
|
from ui_widgetRasterize import Ui_GdalToolsWidget as Ui_Widget
|
|
from widgetPluginBase import GdalToolsBasePluginWidget as BasePluginWidget
|
|
import GdalTools_utils as Utils
|
|
|
|
class GdalToolsDialog(QWidget, Ui_Widget, BasePluginWidget):
|
|
|
|
def __init__(self, iface):
|
|
QWidget.__init__(self)
|
|
self.iface = iface
|
|
|
|
self.setupUi(self)
|
|
BasePluginWidget.__init__(self, self.iface, "gdal_rasterize")
|
|
|
|
# set the default QSpinBoxes and QProgressBar value
|
|
self.widthSpin.setValue(3000)
|
|
self.heightSpin.setValue(3000)
|
|
|
|
self.lastEncoding = Utils.getLastUsedEncoding()
|
|
|
|
self.setParamsStatus(
|
|
[
|
|
(self.inputLayerCombo, [SIGNAL("currentIndexChanged(int)"), SIGNAL("editTextChanged(const QString &)")] ),
|
|
(self.outputFileEdit, SIGNAL("textChanged(const QString &)")),
|
|
(self.attributeComboBox, SIGNAL("currentIndexChanged(int)")),
|
|
( [self.widthSpin, self.heightSpin], SIGNAL( "valueChanged(int)" ), self.resizeGroupBox, "1.8.0" ),
|
|
]
|
|
)
|
|
|
|
self.connect(self.selectInputFileButton, SIGNAL("clicked()"), self.fillInputFileEdit)
|
|
self.connect(self.selectOutputFileButton, SIGNAL("clicked()"), self.fillOutputFileEdit)
|
|
self.connect(self.inputLayerCombo, SIGNAL("currentIndexChanged(int)"), self.fillFieldsCombo)
|
|
|
|
def onLayersChanged(self):
|
|
self.fillInputLayerCombo()
|
|
|
|
def fillInputLayerCombo( self ):
|
|
self.inputLayerCombo.clear()
|
|
( self.layers, names ) = Utils.LayerRegistry.instance().getVectorLayers()
|
|
self.inputLayerCombo.addItems( names )
|
|
|
|
def fillFieldsCombo(self):
|
|
index = self.inputLayerCombo.currentIndex()
|
|
if index < 0:
|
|
return
|
|
|
|
self.lastEncoding = self.layers[index].dataProvider().encoding()
|
|
self.loadFields( self.getInputFileName() )
|
|
|
|
def fillInputFileEdit(self):
|
|
lastUsedFilter = Utils.FileFilter.lastUsedVectorFilter()
|
|
inputFile, encoding = Utils.FileDialog.getOpenFileName(self, self.tr( "Select the input file for Rasterize" ), Utils.FileFilter.allVectorsFilter(), lastUsedFilter, True)
|
|
if inputFile.isEmpty():
|
|
return
|
|
Utils.FileFilter.setLastUsedVectorFilter(lastUsedFilter)
|
|
|
|
self.inputLayerCombo.setCurrentIndex(-1)
|
|
self.inputLayerCombo.setEditText(inputFile)
|
|
self.lastEncoding = encoding
|
|
|
|
self.loadFields( inputFile )
|
|
|
|
def fillOutputFileEdit(self):
|
|
lastUsedFilter = Utils.FileFilter.lastUsedRasterFilter()
|
|
|
|
# rasterize supports output file creation for GDAL 1.8
|
|
gdalVersion = Utils.GdalConfig.version()
|
|
fileDialogFunc = Utils.FileDialog.getSaveFileName
|
|
if gdalVersion < "1.8.0":
|
|
fileDialogFunc = Utils.FileDialog.getOpenFileName
|
|
outputFile = fileDialogFunc(self, self.tr( "Select the raster file to save the results to" ), Utils.FileFilter.allRastersFilter(), lastUsedFilter)
|
|
if outputFile.isEmpty():
|
|
return
|
|
Utils.FileFilter.setLastUsedRasterFilter(lastUsedFilter)
|
|
|
|
self.outputFileEdit.setText(outputFile)
|
|
|
|
# required either -ts or -tr to create the output file
|
|
if gdalVersion >= "1.8.0":
|
|
if not QFileInfo(outputFile).exists():
|
|
QMessageBox.information( self, self.tr( "Output size required" ), self.tr( "The output file doesn't exist. You must set up the output size to create it." ) )
|
|
self.resizeGroupBox.setChecked(True)
|
|
|
|
def getArguments(self):
|
|
arguments = QStringList()
|
|
if self.attributeComboBox.currentIndex() >= 0:
|
|
arguments << "-a"
|
|
arguments << self.attributeComboBox.currentText()
|
|
if self.resizeGroupBox.isChecked():
|
|
arguments << "-ts"
|
|
arguments << str( self.widthSpin.value() )
|
|
arguments << str( self.heightSpin.value() )
|
|
if self.inputLayerCombo.currentIndex() >= 0:
|
|
arguments << "-l"
|
|
arguments << QFileInfo(self.layers[ self.inputLayerCombo.currentIndex() ].source()).baseName()
|
|
elif not self.inputLayerCombo.currentText().isEmpty():
|
|
arguments << "-l"
|
|
arguments << QFileInfo(self.inputLayerCombo.currentText()).baseName()
|
|
arguments << self.getInputFileName()
|
|
arguments << self.outputFileEdit.text()
|
|
return arguments
|
|
|
|
def getInputFileName(self):
|
|
if self.inputLayerCombo.currentIndex() >= 0:
|
|
return self.layers[self.inputLayerCombo.currentIndex()].source()
|
|
return self.inputLayerCombo.currentText()
|
|
|
|
def getOutputFileName(self):
|
|
return self.outputFileEdit.text()
|
|
|
|
def addLayerIntoCanvas(self, fileInfo):
|
|
self.iface.addRasterLayer(fileInfo.filePath())
|
|
|
|
def loadFields(self, vectorFile):
|
|
self.attributeComboBox.clear()
|
|
|
|
if vectorFile.isEmpty():
|
|
return
|
|
|
|
try:
|
|
(fields, names) = Utils.getVectorFields(vectorFile)
|
|
except Utils.UnsupportedOGRFormat, e:
|
|
QErrorMessage(self).showMessage( e.args[0] )
|
|
|
|
self.inputLayerCombo.clearEditText()
|
|
self.inputLayerCombo.setCurrentIndex(-1)
|
|
return
|
|
|
|
ncodec = QTextCodec.codecForName(self.lastEncoding)
|
|
for name in names:
|
|
self.attributeComboBox.addItem( ncodec.toUnicode(name) )
|