forked from NationalSecurityAgency/qgis-latlontools-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtomgrs.py
130 lines (110 loc) · 4.47 KB
/
tomgrs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import os
from qgis.PyQt.QtCore import QVariant, QUrl
from qgis.PyQt.QtGui import QIcon
from qgis.core import QgsFields, QgsField, QgsFeature, QgsCoordinateReferenceSystem, QgsCoordinateTransform, QgsProject
from qgis.core import (
QgsProcessing,
QgsProcessingException,
QgsProcessingAlgorithm,
QgsProcessingParameterString,
QgsProcessingParameterNumber,
QgsProcessingParameterFeatureSource,
QgsProcessingParameterFeatureSink)
from . import mgrs
from .util import tr
class ToMGRSAlgorithm(QgsProcessingAlgorithm):
"""
Algorithm to convert a point layer to a MGRS field.
"""
# Constants used to refer to parameters and outputs. They will be
# used when calling the algorithm from another algorithm, or when
# calling from the QGIS console.
PrmInputLayer = 'InputLayer'
PrmMgrsFieldName = 'MgrsFieldName'
PrmMgrsPrecision = 'MgrsPrecision'
PrmOutputLayer = 'OutputLayer'
def initAlgorithm(self, config):
self.addParameter(
QgsProcessingParameterFeatureSource(
self.PrmInputLayer,
tr('Input point vector layer'),
[QgsProcessing.TypeVectorPoint])
)
self.addParameter(
QgsProcessingParameterString(
self.PrmMgrsFieldName,
tr('Output MGRS field name'),
defaultValue='mgrs')
)
self.addParameter(
QgsProcessingParameterNumber(
self.PrmMgrsPrecision,
tr('MGRS Precision'),
type=QgsProcessingParameterNumber.Integer,
defaultValue=5,
optional=False,
minValue=0,
maxValue=5)
)
self.addParameter(
QgsProcessingParameterFeatureSink(
self.PrmOutputLayer,
tr('Output layer'))
)
def processAlgorithm(self, parameters, context, feedback):
source = self.parameterAsSource(parameters, self.PrmInputLayer, context)
mgrs_name = self.parameterAsString(parameters, self.PrmMgrsFieldName, context).strip()
precision = self.parameterAsInt(parameters, self.PrmMgrsPrecision, context)
fieldsout = QgsFields(source.fields())
if fieldsout.append(QgsField(mgrs_name, QVariant.String)) is False:
msg = "{} '{}'".format(tr('MGRS Field Name must be unique. There is already a field named'), mgrs_name)
feedback.reportError(msg)
raise QgsProcessingException(msg)
layerCRS = source.sourceCrs()
(sink, dest_id) = self.parameterAsSink(
parameters, self.PrmOutputLayer,
context, fieldsout, source.wkbType(), layerCRS)
# The input to the mgrs conversions requires latitudes and longitudes
# If the layer is not EPSG:4326 we need to convert it.
epsg4326 = QgsCoordinateReferenceSystem('EPSG:4326')
if layerCRS != epsg4326:
transform = QgsCoordinateTransform(layerCRS, epsg4326, QgsProject.instance())
total = 100.0 / source.featureCount() if source.featureCount() else 0
iterator = source.getFeatures()
for cnt, feature in enumerate(iterator):
if feedback.isCanceled():
break
pt = feature.geometry().asPoint()
if layerCRS != epsg4326:
pt = transform.transform(pt)
try:
msg = mgrs.toMgrs(pt.y(), pt.x(), precision)
except Exception:
msg = ''
f = QgsFeature()
f.setGeometry(feature.geometry())
f.setAttributes(feature.attributes() + [msg])
sink.addFeature(f)
if cnt % 100 == 0:
feedback.setProgress(int(cnt * total))
return {self.PrmOutputLayer: dest_id}
def name(self):
return 'point2mgrs'
def icon(self):
return QIcon(os.path.dirname(__file__) + '/images/point2mgrs.svg')
def displayName(self):
return tr('Point layer to MGRS')
def helpUrl(self):
file = os.path.dirname(__file__) + '/index.html'
if not os.path.exists(file):
return ''
return QUrl.fromLocalFile(file).toString(QUrl.FullyEncoded)
def shortHelpString(self):
file = os.path.dirname(__file__) + '/doc/geom2mgrs.help'
if not os.path.exists(file):
return ''
with open(file) as helpf:
help = helpf.read()
return help
def createInstance(self):
return ToMGRSAlgorithm()