-
Notifications
You must be signed in to change notification settings - Fork 4
/
__init__.py
executable file
·43 lines (42 loc) · 1.78 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
"""
/***************************************************************************
XyTools
A QGIS plugin
Tools for managing tabular data with x y columns
-------------------
begin : 2011-08-19
copyright : (C) 2011 by Richard Duivenvoorde
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. *
* *
***************************************************************************/
This script initializes the plugin, making it known to QGIS.
"""
def name():
return "XyTools"
def description():
return "Tools for managing tabular data with x y columns."
def about():
return "Tools for managing tabular data with x y columns. It can open spreadsheet files (Libre/OpenOffice, Excel) as point layers and save attribute tables as Excel file"
def version():
return "Version 0.3.6"
def icon():
return "icon.png"
def author():
return "Richard Duivenvoorde"
def email():
return "[email protected]"
def category():
return "Vector"
def qgisMinimumVersion():
return "1.8"
def classFactory(iface):
# load XyTools class from file XyTools
from xytools import XyTools
return XyTools(iface)