forked from faunalia/ps-speed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
51 lines (38 loc) · 1.67 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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Name : PS Time Series Viewer
Description : Computation and visualization of time series of speed for
Permanent Scatterers derived from satellite interferometry
Date : Jul 25, 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 "PS Time Series Viewer"
def description():
return "Computation and visualization of time series of speed for Permanent Scatterers derived from satellite interferometry"
def author():
return "Giuseppe Sucameli (Faunalia)"
def authorName():
return author()
def email():
return "[email protected]"
def icon():
return "icons/logo.png"
def version():
return "0.1.3"
def qgisMinimumVersion():
return "1.5"
def classFactory(iface):
from .pstimeseries_plugin import PSTimeSeries_Plugin
return PSTimeSeries_Plugin(iface)