christian Brandt wrote: > I try to adapt the color table of a raster file using an ascii file > (> rules option) with the following statement: > > r.colors [EMAIL PROTECTED] color=rules > 'rules=/sonne3/.../GIS/colorscript_farben_temp' > > Hence the following message comes up: > > "color", "rules", and "raster" options are mutually exclusive > > Any ideas what this means?
What it says; you can't use both "color" and "rules". If you use "color=rules", the rules are read from stdin (equivalent to -i). If you use "rules=...", the rules are read from the specified file. So, just omit the color=rules option, i.e.: r.colors [EMAIL PROTECTED] 'rules=/sonne3/.../GIS/colorscript_farben_temp' -- Glynn Clements <[EMAIL PROTECTED]> _______________________________________________ grass-user mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/grass-user
