-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
44 lines (33 loc) · 1.57 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 : Transformation tools
Description : Help using NTv2 grids or towgs84 parameters to transform -or reproject on the fly- vectors and rasters
Date : April 16, 2011
copyright : (C) 2011 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 "Transformation Tools"
def description():
return "Help using NTv2 grids or towgs84 parameters to transform -or reproject on the fly- vectors and rasters"
def version():
return "0.1.3"
def qgisMinimumVersion():
return "1.6.0"
def icon():
return "icons/transformation_manager.png"
def authorName():
return "Giuseppe Sucameli (Faunalia)"
def classFactory(iface):
from transformationsPlugin import TransformationsPlugin
return TransformationsPlugin(iface)