mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-30 00:07:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			165 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			165 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| """
 | |
| ***************************************************************************
 | |
|     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.                                   *
 | |
| *                                                                         *
 | |
| ***************************************************************************
 | |
| """
 | |
| from builtins import str
 | |
| 
 | |
| __author__ = 'Victor Olaya'
 | |
| __date__ = 'November 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
 | |
| 
 | |
| from processing.core.parameters import ParameterVector
 | |
| from processing.core.parameters import ParameterString
 | |
| from processing.core.parameters import ParameterSelection
 | |
| from processing.core.outputs import OutputVector
 | |
| 
 | |
| from processing.algs.gdal.GdalAlgorithm import GdalAlgorithm
 | |
| from processing.algs.gdal.GdalUtils import GdalUtils
 | |
| 
 | |
| from processing.tools.system import isWindows
 | |
| from processing.tools.vector import ogrConnectionString, ogrLayerName
 | |
| 
 | |
| 
 | |
| FORMATS = [
 | |
|     'ESRI Shapefile',
 | |
|     'GeoJSON',
 | |
|     'GeoRSS',
 | |
|     'SQLite',
 | |
|     'GMT',
 | |
|     'MapInfo File',
 | |
|     'INTERLIS 1',
 | |
|     'INTERLIS 2',
 | |
|     'GML',
 | |
|     'Geoconcept',
 | |
|     'DXF',
 | |
|     'DGN',
 | |
|     'CSV',
 | |
|     'BNA',
 | |
|     'S57',
 | |
|     'KML',
 | |
|     'GPX',
 | |
|     'PGDump',
 | |
|     'GPSTrackMaker',
 | |
|     'ODS',
 | |
|     'XLSX',
 | |
|     'PDF',
 | |
|     'GPKG',
 | |
| ]
 | |
| 
 | |
| EXTS = [
 | |
|     '.shp',
 | |
|     '.geojson',
 | |
|     '.xml',
 | |
|     '.sqlite',
 | |
|     '.gmt',
 | |
|     '.tab',
 | |
|     '.ili',
 | |
|     '.ili',
 | |
|     '.gml',
 | |
|     '.txt',
 | |
|     '.dxf',
 | |
|     '.dgn',
 | |
|     '.csv',
 | |
|     '.bna',
 | |
|     '.000',
 | |
|     '.kml',
 | |
|     '.gpx',
 | |
|     '.pgdump',
 | |
|     '.gtm',
 | |
|     '.ods',
 | |
|     '.xlsx',
 | |
|     '.pdf',
 | |
|     '.gpkg',
 | |
| ]
 | |
| 
 | |
| 
 | |
| class Ogr2Ogr(GdalAlgorithm):
 | |
| 
 | |
|     OUTPUT_LAYER = 'OUTPUT_LAYER'
 | |
|     INPUT_LAYER = 'INPUT_LAYER'
 | |
|     FORMAT = 'FORMAT'
 | |
|     OPTIONS = 'OPTIONS'
 | |
| 
 | |
|     def __init__(self):
 | |
|         super().__init__()
 | |
|         self.addParameter(ParameterVector(self.INPUT_LAYER,
 | |
|                                           self.tr('Input layer')))
 | |
|         self.addParameter(ParameterSelection(self.FORMAT,
 | |
|                                              self.tr('Destination Format'), FORMATS))
 | |
|         self.addParameter(ParameterString(self.OPTIONS,
 | |
|                                           self.tr('Creation options'), '', optional=True))
 | |
| 
 | |
|         self.addOutput(OutputVector(self.OUTPUT_LAYER, self.tr('Converted')))
 | |
| 
 | |
|     def name(self):
 | |
|         return 'convertformat'
 | |
| 
 | |
|     def displayName(self):
 | |
|         return self.tr('Convert format')
 | |
| 
 | |
|     def group(self):
 | |
|         return self.tr('Vector conversion')
 | |
| 
 | |
|     def getConsoleCommands(self, parameters):
 | |
|         inLayer = self.getParameterValue(self.INPUT_LAYER)
 | |
|         ogrLayer = ogrConnectionString(inLayer)[1:-1]
 | |
| 
 | |
|         output = self.getOutputFromName(self.OUTPUT_LAYER)
 | |
|         outFile = output.value
 | |
| 
 | |
|         formatIdx = self.getParameterValue(self.FORMAT)
 | |
|         outFormat = FORMATS[formatIdx]
 | |
|         ext = EXTS[formatIdx]
 | |
|         if not outFile.endswith(ext):
 | |
|             outFile += ext
 | |
|             output.value = outFile
 | |
| 
 | |
|         output = ogrConnectionString(outFile)
 | |
|         options = str(self.getParameterValue(self.OPTIONS))
 | |
| 
 | |
|         if outFormat == 'SQLite' and os.path.isfile(output):
 | |
|             os.remove(output)
 | |
| 
 | |
|         arguments = []
 | |
|         arguments.append('-f')
 | |
|         arguments.append(outFormat)
 | |
| 
 | |
|         if options is not None and len(options.strip()) > 0:
 | |
|             arguments.append(options)
 | |
| 
 | |
|         arguments.append(output)
 | |
|         arguments.append(ogrLayer)
 | |
|         arguments.append(ogrLayerName(inLayer))
 | |
| 
 | |
|         commands = []
 | |
|         if isWindows():
 | |
|             commands = ['cmd.exe', '/C ', 'ogr2ogr.exe',
 | |
|                         GdalUtils.escapeAndJoin(arguments)]
 | |
|         else:
 | |
|             commands = ['ogr2ogr', GdalUtils.escapeAndJoin(arguments)]
 | |
| 
 | |
|         return commands
 | |
| 
 | |
|     def commandName(self):
 | |
|         return "ogr2ogr"
 |