Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[FEATURE] Added v.extrude GRASS module Note: also added r.stats in a …
…previous commit
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> | ||
|
||
<qgisgrassmodule label="Extrudes flat vector object to 3D with height based on attribute" module="v.extrude"> | ||
<option key="input" layeroption="layer"/> | ||
<option key="elevation" label="Elevation raster for height extraction (optional)"/> | ||
<option key="zshift" advanced="yes" /> | ||
<field key="hcolumn" layer="input" type="integer,double" /> | ||
<option key="output"/> | ||
</qgisgrassmodule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd"> | ||
|
||
<qgisgrassmodule label="Extrudes flat vector object to 3D with fixed height" module="v.extrude"> | ||
<option key="input" layeroption="layer"/> | ||
<option key="elevation" label="Elevation raster for height extraction (optional)"/> | ||
<option key="zshift" advanced="yes" /> | ||
<option key="height" /> | ||
<option key="output"/> | ||
</qgisgrassmodule> |