2012-10-05 23:28:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
CrsSelectionPanel.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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = 'Victor Olaya'
|
|
|
|
__date__ = 'August 2012'
|
|
|
|
__copyright__ = '(C) 2012, Victor Olaya'
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-05 23:28:47 +02:00
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-05 23:28:47 +02:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
2015-05-18 21:04:20 +03:00
|
|
|
import os
|
|
|
|
|
2016-04-29 11:39:26 +02:00
|
|
|
from qgis.PyQt import uic
|
2015-05-18 21:04:20 +03:00
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
from qgis.core import QgsCoordinateReferenceSystem
|
|
|
|
from qgis.gui import QgsGenericProjectionSelector
|
2014-10-04 16:02:28 +03:00
|
|
|
|
2015-05-18 21:04:20 +03:00
|
|
|
pluginPath = os.path.split(os.path.dirname(__file__))[0]
|
|
|
|
WIDGET, BASE = uic.loadUiType(
|
|
|
|
os.path.join(pluginPath, 'ui', 'widgetBaseSelector.ui'))
|
|
|
|
|
2014-10-04 16:02:28 +03:00
|
|
|
|
2015-05-18 21:04:20 +03:00
|
|
|
class CrsSelectionPanel(BASE, WIDGET):
|
2012-09-15 18:25:25 +03:00
|
|
|
|
|
|
|
def __init__(self, default):
|
2015-05-18 21:04:20 +03:00
|
|
|
super(CrsSelectionPanel, self).__init__(None)
|
2014-10-04 16:02:28 +03:00
|
|
|
self.setupUi(self)
|
|
|
|
|
2014-11-06 11:32:44 +02:00
|
|
|
self.leText.setEnabled(False)
|
|
|
|
|
2014-11-08 18:16:12 +02:00
|
|
|
self.btnSelect.clicked.connect(self.browseCRS)
|
2015-01-22 14:38:47 +01:00
|
|
|
self.crs = QgsCoordinateReferenceSystem(default).authid()
|
2014-10-04 16:02:28 +03:00
|
|
|
self.updateText()
|
2013-02-28 22:08:32 +01:00
|
|
|
|
2014-10-04 16:02:28 +03:00
|
|
|
def setAuthId(self, authid):
|
2015-01-22 14:38:47 +01:00
|
|
|
self.crs = authid
|
2014-10-04 16:02:28 +03:00
|
|
|
self.updateText()
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2014-10-04 16:02:28 +03:00
|
|
|
def browseCRS(self):
|
|
|
|
selector = QgsGenericProjectionSelector()
|
2015-01-22 14:38:47 +01:00
|
|
|
selector.setSelectedAuthId(self.crs)
|
2014-10-04 16:02:28 +03:00
|
|
|
if selector.exec_():
|
2015-01-22 14:38:47 +01:00
|
|
|
authId = selector.selectedAuthId()
|
|
|
|
if authId.upper().startswith("EPSG:"):
|
|
|
|
self.crs = authId
|
|
|
|
else:
|
|
|
|
proj = QgsCoordinateReferenceSystem()
|
|
|
|
proj.createFromSrsId(selector.selectedCrsId())
|
|
|
|
self.crs = proj.toProj4()
|
2014-10-04 16:02:28 +03:00
|
|
|
self.updateText()
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2014-10-04 16:02:28 +03:00
|
|
|
def updateText(self):
|
2015-01-22 14:38:47 +01:00
|
|
|
if self.crs is not None:
|
|
|
|
self.leText.setText(self.crs)
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
def getValue(self):
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
return self.crs
|