-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo_to_xyz_dialog.py
55 lines (45 loc) · 2.2 KB
/
go_to_xyz_dialog.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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
GoToXYZDialog
A QGIS plugin
Create a polygon on XYZ bbox
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2020-04-02
git sha : $Format:%H$
copyright : (C) 2020 by Guillaume Hormière
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
"""
import os
from qgis.PyQt import uic
from qgis.PyQt import QtWidgets, QtGui
FORM_CLASS, _ = uic.loadUiType(os.path.join(
os.path.dirname(__file__), 'go_to_xyz_dialog_base.ui'))
class GoToXYZDialog(QtWidgets.QDialog, FORM_CLASS):
def __init__(self, parent=None):
"""Constructor."""
super(GoToXYZDialog, self).__init__(parent)
self.setupUi(self)
self.z_lineEdit.setValidator(QtGui.QIntValidator(self.z_lineEdit))
self.x_lineEdit.setValidator(QtGui.QIntValidator(self.x_lineEdit))
self.y_lineEdit.setValidator(QtGui.QIntValidator(self.y_lineEdit))
self.XYZ_radiobutton.clicked.connect(self.checked_change)
self.tms_radiobutton.clicked.connect(self.checked_change)
def checked_change(self):
try:
tile_z = int(self.z_lineEdit.text())
tile_y = int(self.y_lineEdit.text())
tile_y = (2 ** tile_z) - tile_y - 1
self.y_lineEdit.setText(str(tile_y))
except ValueError:
pass