GRASS Programmer's Manual  6.4.2(2012)
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
d.rast3d.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #
3 ############################################################################
4 #
5 # MODULE: d.rast3d
6 #
7 # AUTHOR(S): Martin Landa <landa.martin gmail.com>
8 #
9 # PURPOSE: Wrapper for wxGUI to add 3D raster map into layer tree
10 #
11 # COPYRIGHT: (C) 2008, 2010 by the GRASS Development Team
12 #
13 # This program is free software under the GNU General
14 # Public License (>=v2). Read the file COPYING that
15 # comes with GRASS for details.
16 #
17 #############################################################################
18 
19 #%module
20 #% description: Displays 3D raster map layer.
21 #% keywords: display, raster3d
22 #%end
23 
24 #%option
25 #% key: map
26 #% type: string
27 #% gisprompt: old,grid3,3d-raster
28 #% description: 3D raster map to be displayed
29 #% required : yes
30 #%end
31 
32 from grass.script import core as grass
33 
34 if __name__ == "__main__":
35  options, flags = grass.parser()
36  main()