mirror of
https://github.com/qgis/QGIS.git
synced 2025-05-03 00:03:15 -04:00
Algorithms and other processing code should use this method (instead of dataobjects.getLayerFromString) to retrieve layers from a string, as it considers the processing context and allows resolving strings to temporarily stored layers. This permits processing models to function correctly when intermediate results are stored as memory layers. Subsequent model algorithms can then access these temporary layers as inputs. All temporary layers will be removed when the context object is destroyed after the model algorithm is run.
195 lines
7.3 KiB
Python
195 lines
7.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
***************************************************************************
|
|
nviz7.py
|
|
---------------------
|
|
Date : August 2012
|
|
Copyright : (C) 2012 by Victor Olaya
|
|
Email : volayaf 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. *
|
|
* *
|
|
***************************************************************************
|
|
"""
|
|
from future import standard_library
|
|
standard_library.install_aliases()
|
|
from builtins import str
|
|
|
|
__author__ = 'Victor Olaya'
|
|
__date__ = 'August 2012'
|
|
__copyright__ = '(C) 2012, Victor Olaya'
|
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
import os
|
|
import time
|
|
|
|
from qgis.PyQt.QtGui import QIcon
|
|
from qgis.core import (QgsProcessingAlgorithm,
|
|
QgsRasterLayer)
|
|
|
|
from processing.core.GeoAlgorithm import GeoAlgorithm
|
|
from processing.core.parameters import ParameterMultipleInput
|
|
from processing.core.parameters import ParameterExtent
|
|
from processing.core.parameters import ParameterNumber
|
|
from processing.core.parameters import ParameterRaster
|
|
from .Grass7Utils import Grass7Utils
|
|
from processing.tools.system import getNumExportedLayers
|
|
from processing.tools import dataobjects
|
|
|
|
pluginPath = os.path.normpath(os.path.join(
|
|
os.path.split(os.path.dirname(__file__))[0], os.pardir))
|
|
|
|
|
|
class nviz7(GeoAlgorithm):
|
|
|
|
ELEVATION = 'ELEVATION'
|
|
VECTOR = 'VECTOR'
|
|
COLOR = 'COLOR'
|
|
GRASS_REGION_EXTENT_PARAMETER = 'GRASS_REGION_PARAMETER'
|
|
GRASS_REGION_CELLSIZE_PARAMETER = 'GRASS_REGION_CELLSIZE_PARAMETER'
|
|
|
|
def icon(self):
|
|
return QIcon(os.path.join(pluginPath, 'images', 'grass.png'))
|
|
|
|
def flags(self):
|
|
return QgsProcessingAlgorithm.FlagHideFromModeler
|
|
|
|
def name(self):
|
|
return 'nviz7'
|
|
|
|
def displayName(self):
|
|
return self.tr('nviz7')
|
|
|
|
def group(self):
|
|
return self.tr('Visualization(NVIZ)')
|
|
|
|
def defineCharacteristics(self):
|
|
self.addParameter(ParameterMultipleInput(
|
|
nviz7.ELEVATION,
|
|
self.tr('Raster file(s) for elevation'),
|
|
dataobjects.TYPE_RASTER, True))
|
|
self.addParameter(ParameterMultipleInput(
|
|
nviz7.VECTOR,
|
|
self.tr('Vector lines/areas overlay file(s)'),
|
|
dataobjects.TYPE_VECTOR_ANY, True))
|
|
self.addParameter(ParameterMultipleInput(
|
|
nviz7.COLOR,
|
|
self.tr('Raster file(s) for color'),
|
|
dataobjects.TYPE_RASTER, True))
|
|
self.addParameter(ParameterExtent(
|
|
nviz7.GRASS_REGION_EXTENT_PARAMETER,
|
|
self.tr('GRASS region extent')))
|
|
self.addParameter(ParameterNumber(
|
|
self.GRASS_REGION_CELLSIZE_PARAMETER,
|
|
self.tr('GRASS region cellsize (leave 0 for default)'),
|
|
0, None, 0.0))
|
|
|
|
def processAlgorithm(self, context, feedback):
|
|
commands = []
|
|
vector = self.getParameterValue(self.VECTOR)
|
|
elevation = self.getParameterValue(self.ELEVATION)
|
|
color = self.getParameterValue(self.COLOR)
|
|
|
|
region = \
|
|
str(self.getParameterValue(self.GRASS_REGION_EXTENT_PARAMETER))
|
|
regionCoords = region.split(',')
|
|
command = 'g.region '
|
|
command += 'n=' + str(regionCoords[3])
|
|
command += ' s=' + str(regionCoords[2])
|
|
command += ' e=' + str(regionCoords[1])
|
|
command += ' w=' + str(regionCoords[0])
|
|
cellsize = self.getParameterValue(self.GRASS_REGION_CELLSIZE_PARAMETER)
|
|
if cellsize:
|
|
command += ' res=' + str(cellsize)
|
|
else:
|
|
command += ' res=' + str(self.getDefaultCellsize())
|
|
commands.append(command)
|
|
|
|
command = 'nviz7'
|
|
if vector:
|
|
layers = vector.split(';')
|
|
for layer in layers:
|
|
(cmd, newfilename) = self.exportVectorLayer(layer)
|
|
commands.append(cmd)
|
|
vector = vector.replace(layer, newfilename)
|
|
command += ' vector=' + vector.replace(';', ',')
|
|
if color:
|
|
layers = color.split(';')
|
|
for layer in layers:
|
|
(cmd, newfilename) = self.exportRasterLayer(layer)
|
|
commands.append(cmd)
|
|
color = color.replace(layer, newfilename)
|
|
command += ' color=' + color.replace(';', ',')
|
|
if elevation:
|
|
layers = elevation.split(';')
|
|
for layer in layers:
|
|
(cmd, newfilename) = self.exportRasterLayer(layer)
|
|
commands.append(cmd)
|
|
elevation = elevation.replace(layer, newfilename)
|
|
command += ' elevation=' + elevation.replace(';', ',')
|
|
if elevation is None and vector is None:
|
|
command += ' -q'
|
|
commands.append(command)
|
|
Grass7Utils.createTempMapset()
|
|
Grass7Utils.executeGrass7(commands, feedback)
|
|
|
|
def getTempFilename(self):
|
|
filename = 'tmp' + str(time.time()).replace('.', '') \
|
|
+ str(getNumExportedLayers())
|
|
return filename
|
|
|
|
def exportVectorLayer(self, layer):
|
|
destFilename = self.getTempFilename()
|
|
command = 'v.in.ogr'
|
|
command += ' min_area=-1'
|
|
command += ' input="' + os.path.dirname(layer) + '"'
|
|
command += ' layer=' + os.path.basename(layer)[:-4]
|
|
command += ' output=' + destFilename
|
|
command += ' --overwrite -o'
|
|
return (command, destFilename)
|
|
|
|
def exportRasterLayer(self, layer):
|
|
destFilename = self.getTempFilename()
|
|
command = 'r.in.gdal'
|
|
command += ' input="' + layer + '"'
|
|
command += ' band=1'
|
|
command += ' out=' + destFilename
|
|
command += ' --overwrite -o'
|
|
return (command, destFilename)
|
|
|
|
def getDefaultCellsize(self):
|
|
cellsize = 0
|
|
context = dataobjects.createContext()
|
|
for param in self.parameters:
|
|
if param.value:
|
|
if isinstance(param, ParameterRaster):
|
|
if isinstance(param.value, QgsRasterLayer):
|
|
layer = param.value
|
|
else:
|
|
layer = dataobjects.QgsProcessingUtils.mapLayerFromString(param.value, context)
|
|
cellsize = max(cellsize, (layer.extent().xMaximum() -
|
|
layer.extent().xMinimum()) /
|
|
layer.width())
|
|
elif isinstance(param, ParameterMultipleInput):
|
|
|
|
layers = param.value.split(';')
|
|
for layername in layers:
|
|
layer = dataobjects.QgsProcessingUtils.mapLayerFromString(layername, context)
|
|
if isinstance(layer, QgsRasterLayer):
|
|
cellsize = max(cellsize, (
|
|
layer.extent().xMaximum() -
|
|
layer.extent().xMinimum()) /
|
|
layer.width())
|
|
|
|
if cellsize == 0:
|
|
cellsize = 1
|
|
return cellsize
|