forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraster_main.c
27 lines (24 loc) · 866 Bytes
/
raster_main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/****************************************************************************
*
* MODULE: r.colors
*
* AUTHOR(S): Michael Shapiro - CERL
* David Johnson
* Support for 3D rasters by Soeren Gebbert
*
* PURPOSE: Allows creation and/or modification of the color table
* for a raster map layer.
*
* COPYRIGHT: (C) 2006, 2011 by the GRASS Development Team
*
* This program is free software under the GNU General Public
* License (>=v2). Read the file COPYING that comes with GRASS
* for details.
*
***************************************************************************/
#include "local_proto.h"
/* This is the main function for r.colors*/
int main(int argc, char **argv)
{
return edit_colors(argc, argv, RASTER_TYPE, "raster", "Raster");
}