-
Notifications
You must be signed in to change notification settings - Fork 2
/
__init__.py
50 lines (37 loc) · 1.58 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
44
45
46
47
48
49
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Name : RT QSpider
Description : Convert a table to an event layer or a spider diagram
Date : Nov 14, 2012
copyright : (C) 2012 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 "RT QSpider"
def description():
return "Convert the selected table to an event layer (based on an X,Y pair) or to a spider diagram (based on two X,Y pairs)"
def version():
return "0.3"
def qgisMinimumVersion():
return "1.6.0"
def author():
return "Giuseppe Sucameli (Faunalia)"
def authorName():
return author()
def email():
return "[email protected]"
def icon():
return "icons/logo.png"
def classFactory(iface):
from .plugin import RTQSpiderPlugin
return RTQSpiderPlugin(iface)