d.rast3d 926 B

12345678910111213141516171819202122232425262728293031323334353637
  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 -- add 3d raster map layer into layer tree
  10. #
  11. # COPYRIGHT: (C) 2008 by the GRASS Development Team
  12. #
  13. # This program is free software under the GNU General Public
  14. # License (>=v2). Read the file COPYING that comes with GRASS
  15. # for details.
  16. #
  17. #############################################################################
  18. #%module
  19. #% description: Displays 3d raster data in the active frame on the graphics monitor.
  20. #% keywords: display, raster3d
  21. #%end
  22. #%option
  23. #% key: map
  24. #% type: string
  25. #% gisprompt: old,grid3,3d-raster
  26. #% description: 3D raster map to be displayed
  27. #% required : yes
  28. #%end
  29. from grass.script import core as grass
  30. if __name__ == "__main__":
  31. options, flags = grass.parser()
  32. main()