-
Notifications
You must be signed in to change notification settings - Fork 2
/
__init__.py
53 lines (39 loc) · 2.12 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
50
51
52
53
# -*- coding: utf-8 -*-
"""
/***************************************************************************
landsatProcessingPlugin
A QGIS plugin
Provides several processing steps on Landsat data. Landsat5 to Landsat7 conversion, DNs to radiance and reflectance conversion, TIR to temperature conversion, Indice calculation(NDVI, SAVI, NDWI, NDSI, tasseled cap indices)
-------------------
begin : 2013-02-14
copyright : (C) 2013 by Matthias Ludwig - Datalyze Solutions
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 "Landsat Processing Plugin"
def description():
return "Provides several processing steps on Landsat data. Landsat5 to Landsat7 conversion, DNs to radiance and reflectance conversion, TIR to temperature conversion, Indice calculation(NDVI, SAVI, NDWI, NDSI, tasseled cap indices)"
def version():
return "Version 0.1"
def icon():
return "icon.png"
def qgisMinimumVersion():
return "1.8"
def author():
return "Matthias Ludwig - Datalyze Solutions"
def email():
return "[email protected]"
def classFactory(iface):
# load landsatProcessingPlugin class from file landsatProcessingPlugin
from landsatprocessingplugin import landsatProcessingPlugin
return landsatProcessingPlugin(iface)