123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- """
- ***************************************************************************
- ogr2ogr.py
- ---------------------
- Date : November 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. *
- * *
- ***************************************************************************
- """
- __author__ = 'Victor Olaya'
- __date__ = 'November 2012'
- __copyright__ = '(C) 2012, Victor Olaya'
- import os
- from PyQt5.QtGui import QIcon
- from qgis.core import (QgsProcessing,
- QgsProcessingException,
- QgsProcessingParameterBoolean,
- QgsProcessingParameterDefinition,
- QgsProcessingParameterFeatureSource,
- QgsProcessingParameterString,
- QgsProcessingParameterVectorDestination)
- from processing.algs.gdal.GdalAlgorithm import GdalAlgorithm
- from processing.algs.gdal.GdalUtils import GdalUtils
- pluginPath = os.path.split(os.path.split(os.path.dirname(__file__))[0])[0]
- class ogr2ogr(GdalAlgorithm):
- INPUT = 'INPUT'
- CONVERT_ALL_LAYERS = 'CONVERT_ALL_LAYERS'
- OPTIONS = 'OPTIONS'
- OUTPUT = 'OUTPUT'
- def __init__(self):
- super().__init__()
- def initAlgorithm(self, config=None):
- self.addParameter(QgsProcessingParameterFeatureSource(self.INPUT,
- self.tr('Input layer'),
- types=[QgsProcessing.TypeVector]))
- convert_all_layers_param = QgsProcessingParameterBoolean(self.CONVERT_ALL_LAYERS,
- self.tr('Convert all layers from dataset'), defaultValue=False)
- convert_all_layers_param.setHelp(self.tr("Use convert all layers to convert a whole dataset. "
- "Supported output formats for this option are GPKG and GML."))
- self.addParameter(convert_all_layers_param)
- options_param = QgsProcessingParameterString(self.OPTIONS,
- self.tr('Additional creation options'),
- defaultValue='',
- optional=True)
- options_param.setFlags(options_param.flags() | QgsProcessingParameterDefinition.FlagAdvanced)
- self.addParameter(options_param)
- self.addParameter(QgsProcessingParameterVectorDestination(self.OUTPUT,
- self.tr('Converted')))
- def name(self):
- return 'convertformat'
- def displayName(self):
- return self.tr('矢量数据格式转换')
- def group(self):
- return self.tr('数据处理')
- def groupId(self):
- return 'datahandle'
- def icon(self):
- return QIcon(os.path.join(pluginPath, 'images', 'dbms', 'translate.png'))
- def commandName(self):
- return 'ogr2ogr'
- def getConsoleCommands(self, parameters, context, feedback, executing=True):
- ogrLayer, layerName = self.getOgrCompatibleSource(self.INPUT, parameters, context, feedback, executing)
- convertAllLayers = self.parameterAsBoolean(parameters, self.CONVERT_ALL_LAYERS, context)
- options = self.parameterAsString(parameters, self.OPTIONS, context)
- outFile = self.parameterAsOutputLayer(parameters, self.OUTPUT, context)
- self.setOutputValue(self.OUTPUT, outFile)
- output, outputFormat = GdalUtils.ogrConnectionStringAndFormat(outFile, context)
- if outputFormat in ('SQLite', 'GPKG') and os.path.isfile(output):
- raise QgsProcessingException(self.tr('Output file "{}" already exists.').format(output))
- arguments = []
- if outputFormat:
- arguments.append(f'-f {outputFormat}')
- if options:
- arguments.append(options)
- arguments.append(output)
- arguments.append(ogrLayer)
- if not convertAllLayers:
- arguments.append(layerName)
- return ['ogr2ogr', GdalUtils.escapeAndJoin(arguments)]
- def shortHelpString(self):
- return self.tr("The algorithm converts simple features data between file formats.\n\n"
- "Use convert all layers to convert a whole dataset.\n"
- "Supported output formats for this option are:\n"
- "- GPKG\n"
- "- GML"
- )
|