-
Notifications
You must be signed in to change notification settings - Fork 7
/
LFTools_Dialog.py
30 lines (27 loc) · 1.36 KB
/
LFTools_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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
LFTools
A QGIS plugin
Tools for cartographic production and spatial analysis.
-------------------
begin : 2024-10-09
copyright : (C) 2024 by Leandro Franca
email : geoleandro.franca@gmail.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 qgis.PyQt import uic
from qgis.PyQt.QtWidgets import QDialog
import os
class ImportXYZ_Dialog(QDialog):
def __init__(self):
super(ImportXYZ_Dialog, self).__init__()
uic.loadUi(os.path.join(os.path.dirname(__file__), 'Ui_ImportXYZ.ui'), self)