-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path__init__.py
More file actions
23 lines (21 loc) · 898 Bytes
/
Copy path__init__.py
File metadata and controls
23 lines (21 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
"""
/***************************************************************************
qgis-jvf-dtm-plugin
A QGIS plugin
GML Viewer for Czech JVF DTM (Digital Technical Map)
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2025-08-23
copyright : (C) 2025 by Maps Geeks - Petr Barandovski and Linda Karlovska
email : petr.barandovski@gmail.com, linda.karlovska@seznam.cz
git sha : $Format:%H$
***************************************************************************/
"""
def classFactory(iface):
"""Load plugin.
:param iface: QGIS interface.
:type iface: QgsInterface
"""
from .jvf_dtm_viewer import JVFDTMViewer
return JVFDTMViewer(iface)