-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__init__.py
43 lines (33 loc) · 1.41 KB
/
__init__.py
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
32
33
34
35
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Name : ClosestFeatureFinder
Description : Select the feature closest to the clicked point
Date : 22/Oct/10
copyright : (C) 2010 by Giuseppe Sucameli (Faunalia)
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
"""
def name():
return "Closest Feature Finder"
def description():
return "Select the closest feature"
def authorName():
return "Giuseppe Sucameli (Faunalia)"
def icon():
return "icons/selection.png"
def version():
return "0.7"
def qgisMinimumVersion():
return "1.0"
def classFactory(iface):
from feature_finder_plugin import FeatureFinderPlugin
return FeatureFinderPlugin(iface)