~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to raster/r.le/r.le.setup/colors.h

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 ************************************************************
3
 
 * MODULE: r.le.setup/colors.h                              *
4
 
 *         Version 5.0beta            Oct. 1, 2001          *
5
 
 *                                                         *
6
 
 * AUTHOR: W.L. Baker, University of Wyoming                *
7
 
 *         BAKERWL@UWYO.EDU                                 *
8
 
 *                                                          *
9
 
 * PURPOSE: To set up sampling areas, which can can then    *
10
 
 *         be used to obtain data using the r.le.dist,      *
11
 
 *         r.le.patch, and r.le.pixel programs.  The        *
12
 
 *         colors.h file defines the colors                 *
13
 
 *                                                         *
14
 
 * COPYRIGHT: (C) 2001 by W.L. Baker                        *
15
 
 *                                                          *
16
 
 * This program is free software under the GNU General      *
17
 
 * Public License(>=v2).  Read the file COPYING that comes  *
18
 
 * with GRASS for details                                   *
19
 
 *                                                         *
20
 
 ************************************************************/
21
 
 
22
 
#include <grass/config.h>
23
 
#define RED             1
24
 
#define ORANGE          2
25
 
#define YELLOW          3
26
 
#define GREEN           4
27
 
#define BLUE            5
28
 
#define INDIGO          6
29
 
#define VIOLET          7
30
 
#define WHITE           8
31
 
#define BLACK           9
32
 
#define GRAY            10
33
 
#define BROWN           11
34
 
#define MAGENTA         12
35
 
#define AQUA            13