Coverage for grm\__init__.py : 0%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# -*- coding: utf-8 -*-
2"""
3/***************************************************************************
4 GRM
5 A QGIS plugin
6 GRM
7 Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
8 -------------------
9 begin : 2020-01-08
10 copyright : (C) 2020 by Hermesys
11 email : shpark@hermesys.co.kr
12 git sha : $Format:%H$
13 ***************************************************************************/
15/***************************************************************************
16 * *
17 * This program is free software; you can redistribute it and/or modify *
18 * it under the terms of the GNU General Public License as published by *
19 * the Free Software Foundation; either version 2 of the License, or *
20 * (at your option) any later version. *
21 * *
22 ***************************************************************************/
23 This script initializes the plugin, making it known to QGIS.
24"""
27# noinspection PyPep8Naming
28def classFactory(iface): # pylint: disable=invalid-name
29 """Load GRM class from file GRM.
31 :param iface: A QGIS interface instance.
32 :type iface: QgsInterface
33 """
34 #
35 from .GRM import GRM
36 return GRM(iface)