raster3d_main.c 872 B

12345678910111213141516171819202122232425262728
  1. /****************************************************************************
  2. *
  3. * MODULE: r3.colors
  4. *
  5. * AUTHOR(S): Michael Shapiro - CERL
  6. * David Johnson
  7. * Support for 3D rasters by Soeren Gebbert
  8. *
  9. * PURPOSE: Allows creation and/or modification of the color table
  10. * for a raster map layer.
  11. *
  12. * COPYRIGHT: (C) 2006, 2011 by the GRASS Development Team
  13. *
  14. * This program is free software under the GNU General Public
  15. * License (>=v2). Read the file COPYING that comes with GRASS
  16. * for details.
  17. *
  18. ***************************************************************************/
  19. #include "local_proto.h"
  20. /* This is the main function for r3.colors*/
  21. int main(int argc, char **argv)
  22. {
  23. return edit_colors(argc, argv, RASTER3D_TYPE, "raster3d", "Raster3d");
  24. }