Historical Map  1.0
Plugin for automatic extraction of old forest from historical map
 All Classes Namespaces Files Functions Variables
__init__.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 """
3 /***************************************************************************
4  HistoricalMap
5  A QGIS plugin
6  Mapping old forests from historical maps
7  -------------------
8  begin : 2016-01-26
9  copyright : (C) 2016 by Karasiak & Lomellini
10  email : karasiak.nicolas@gmail.com
11  git sha : $Format:%H$
12  ***************************************************************************/
13 
14 /***************************************************************************
15  * *
16  * This program is free software; you can redistribute it and/or modify *
17  * it under the terms of the GNU General Public License as published by *
18  * the Free Software Foundation; either version 2 of the License, or *
19  * (at your option) any later version. *
20  * *
21  ***************************************************************************/
22  This script initializes the plugin, making it known to QGIS.
23 """
24 
25 
26 # noinspection PyPep8Naming
27 def classFactory(iface): # pylint: disable=invalid-name
28  """Load HistoricalMap class from file HistoricalMap.
29 
30  :param iface: A QGIS interface instance.
31  :type iface: QgsInterface
32  """
33  #
34  from .historical_map import HistoricalMap
35  return HistoricalMap(iface)
def classFactory
Definition: __init__.py:27