Skip to content

Commit 014355a

Browse files
author
Médéric RIBREUX
committedMar 12, 2016
Add v.extrude algorithm
1 parent 2f579d2 commit 014355a

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed
 
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
v.extrude
2+
Extrudes flat vector object to 3D with defined height.
3+
Vector (v.*)
4+
ParameterVector|input|Name of input 2D vector map|-1|False
5+
ParameterString|where|WHERE conditions of SQL statement without 'where' keyword|None|True|True
6+
ParameterNumber|zshift|Shifting value for z coordinates|0.0|None|0.0|True
7+
ParameterString|height|Fixed height for 3D vector objects (float)|None|False|True
8+
ParameterTableField|height_column|Name of attribute column with object heights|input|0|True
9+
ParameterRaster|elevation|Elevation raster for height extraction|True
10+
ParameterSelection|method|Sampling interpolation method|nearest;bilinear;bicubic|0
11+
ParameterNumber|scale|Scale factor sampled raster values|0.0|None|1.0|True
12+
ParameterString|null_value|Height for sampled raster NULL values|None|False|True
13+
*ParameterBoolean|-t|Trace elevation|False
14+
OutputVector|output|3D Vector
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# -*- coding: utf-8 -*-
2+
3+
"""
4+
***************************************************************************
5+
v_extrude.py
6+
------------
7+
Date : March 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__ = 'March 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 checkParameterValuesBeforeExecuting(alg):
30+
""" Verify if we have the right parameters """
31+
height = alg.getParameterValue('height')
32+
height_column = alg.getParameterValue('height_column')
33+
if (height and height_column) or (not height and not height_column):
34+
return alg.tr("You need to set either a fixed height value or the height column!")
35+
36+
return None

0 commit comments

Comments
 (0)
Please sign in to comment.