Skip to content

Commit 90758b5

Browse files
Médéric RibreuxMédéric RIBREUX
Médéric Ribreux
authored and
Médéric RIBREUX
committed
Add i.in.spotvgt algorithm
1 parent 033fd1f commit 90758b5

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
i.in.spotvgt
2+
Imports SPOT VGT NDVI data into a raster map.
3+
Imagery (i.*)
4+
ParameterRaster|input|Name of input SPOT VGT NDVI HDF file|False
5+
*ParameterBoolean|-a|Also import quality map (SM status map layer) and filter NDVI map|False
6+
OutputRaster|output|SPOT NDVI Raster
7+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# -*- coding: utf-8 -*-
2+
3+
"""
4+
***************************************************************************
5+
i_in_spotvgt.py
6+
---------------
7+
Date : April 2016
8+
Copyright : (C) 2016 by Médéric Ribreux
9+
Email : medspx at medspx dot fr
10+
***************************************************************************
11+
* *
12+
* This program is free software; you can redistribute it and/or modify *
13+
* it under the terms of the GNU General Public License as published by *
14+
* the Free Software Foundation; either version 2 of the License, or *
15+
* (at your option) any later version. *
16+
* *
17+
***************************************************************************
18+
"""
19+
20+
__author__ = 'Médéric Ribreux'
21+
__date__ = 'April 2016'
22+
__copyright__ = '(C) 2016, Médéric Ribreux'
23+
24+
# This will get replaced with a git SHA1 when you do a git archive
25+
26+
__revision__ = '$Format:%H$'
27+
28+
29+
def processInputs(alg):
30+
# Here, we apply directly the algorithm
31+
# So we just need to get the projection of the layer !
32+
layer = alg.getParameterValue('input')
33+
alg.setSessionProjectionFromLayer(layer, alg.commands)

0 commit comments

Comments
 (0)