You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.6 KiB
Python
37 lines
1.6 KiB
Python
3 months ago
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
/***************************************************************************
|
||
|
GemeindeMessdatenImport
|
||
|
A QGIS plugin
|
||
|
Importiert Messdaten
|
||
|
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
|
||
|
-------------------
|
||
|
begin : 2024-02-01
|
||
|
copyright : (C) 2024 by Sebastian Pertl
|
||
|
email : sebastian.pertl@fridolfing.bayern.de
|
||
|
git sha : $Format:%H$
|
||
|
***************************************************************************/
|
||
|
|
||
|
/***************************************************************************
|
||
|
* *
|
||
|
* 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. *
|
||
|
* *
|
||
|
***************************************************************************/
|
||
|
This script initializes the plugin, making it known to QGIS.
|
||
|
"""
|
||
|
|
||
|
|
||
|
# noinspection PyPep8Naming
|
||
|
def classFactory(iface): # pylint: disable=invalid-name
|
||
|
"""Load GemeindeMessdatenImport class from file GemeindeMessdatenImport.
|
||
|
|
||
|
:param iface: A QGIS interface instance.
|
||
|
:type iface: QgsInterface
|
||
|
"""
|
||
|
#
|
||
|
from .ibpTools import ibpTools
|
||
|
return ibpTools(iface)
|