[needs-docs][processing] add help and clarity to the define current projection algorithm

This commit is contained in:
Mathieu Pellerin 2018-05-01 10:14:08 +07:00 committed by GitHub
parent 3228654e5b
commit 39c6e23c08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 9 deletions

View File

@ -550,3 +550,9 @@ qgis:voronoipolygons: >
qgis:zonalstatistics:
qgis:definecurrentprojection: >
This algorithm sets an existing layer's projection to the provided CRS. Contrary to the "Assign projection" algorithm, it will not output a new layer.
For shapefile datasets, the .prj and .qpj files will be overwritten - or created if missing - to match the provided CRS.

View File

@ -56,7 +56,7 @@ class DefineProjection(QgisAlgorithm):
def initAlgorithm(self, config=None):
self.addParameter(QgsProcessingParameterVectorLayer(self.INPUT,
self.tr('Input Layer'), types=[QgsProcessing.TypeVectorAnyGeometry]))
self.addParameter(QgsProcessingParameterCrs(self.CRS, 'Output CRS'))
self.addParameter(QgsProcessingParameterCrs(self.CRS, 'CRS'))
self.addOutput(QgsProcessingOutputVectorLayer(self.INPUT,
self.tr('Layer with projection')))
@ -64,7 +64,7 @@ class DefineProjection(QgisAlgorithm):
return 'definecurrentprojection'
def displayName(self):
return self.tr('Define current projection')
return self.tr('Define layer projection')
def flags(self):
return super().flags() | QgsProcessingAlgorithm.FlagNoThreading
@ -81,15 +81,17 @@ class DefineProjection(QgisAlgorithm):
if dsPath.lower().endswith('.shp'):
dsPath = dsPath[:-4]
wkt = crs.toWkt()
with open(dsPath + '.prj', 'w') as f:
f.write(wkt)
qpjFile = dsPath + '.qpj'
if os.path.exists(qpjFile):
with open(qpjFile, 'w') as f:
wkt = crs.toWkt()
with open(dsPath + '.prj', 'w') as f:
f.write(wkt)
qpjFile = dsPath + '.qpj'
if os.path.exists(qpjFile):
with open(qpjFile, 'w') as f:
f.write(wkt)
else:
feedback.pushConsoleInfo(tr("Data source isn't a shapefile, skipping .prj/.qpj creation"))
layer.setCrs(crs)
layer.triggerRepaint()