-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
31 lines (26 loc) · 1.04 KB
/
__init__.py
File metadata and controls
31 lines (26 loc) · 1.04 KB
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
# -*- coding: utf-8 -*-
"""
*******************************************************************************
OpenICGC
A QGIS plugin
Plugin for accessing open data published by the Cartographic and Geological
Institute of Catalonia (Catalan mapping agency).
Includes spatial toponymic searches, streets, roads, coordinates in different
reference systems and load of WMS base layers of Catalonia.
-------------------
begin : 2019-01-18
author : Albert Adell
email : albert.adell@icgc.cat
This script initializes the plugin, making it known to QGIS.
*******************************************************************************
"""
# pylint: disable=C0103
# noinspection PyPep8Naming
def classFactory(iface):
"""Load OpenICGC plugin class from file OpenICGC.
:param iface: A QGIS interface instance.
:type iface: QgsInterface
"""
from .openicgc import OpenICGC
return OpenICGC(iface)
# pylint: enable=C0103