logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

r.out.ppm3 - Converts 3 GRASS raster layers (R,G,B) to a PPM image file.

Author

       Glynn Clements
       Based upon r.out.ppm and d.rgb.

Description

r.out.ppm3 converts 3 GRASS raster layers (R,G,B) to a PPM image file, using the current region.

       This program converts a GRASS raster map to a PPM image file using the the current region settings.

       To get the full area and resolutin of the raster map, run:
       g.region raster=[mapname]

       before running r.out.ppm3.

Keywords

       raster, export, output

Name

r.out.ppm3  - Converts 3 GRASS raster layers (R,G,B) to a PPM image file.

Notes

       One pixel is written for each cell value, so if ew_res  and  ns_res  differ,  the  aspect  ratio  of  the
       resulting image will be off.

See Also

r.out.ppm,r.in.gdal,d.rgb

Source Code

       Available at: r.out.ppm3 source code (history)

       Accessed: Friday Apr 04 01:19:22 2025

       Main index | Raster index | Topics index | Keywords index | Graphical index | Full index

       © 2003-2025 GRASS Development Team, GRASS GIS 8.4.1 Reference Manual

GRASS 8.4.1                                                                                   r.out.ppm3(1grass)

Synopsis

r.out.ppm3r.out.ppm3--helpr.out.ppm3  [-c]  red=stringgreen=stringblue=stringoutput=string   [--help]  [--verbose]  [--quiet]
       [--ui]

   Flags:-c
           Add comments to describe the region

       --help
           Print usage summary

       --verbose
           Verbose module output

       --quiet
           Quiet module output

       --ui
           Force launching GUI dialog

   Parameters:red=string[required]
           Name of raster map to be used for <red>

       green=string[required]
           Name of raster map to be used for <green>

       blue=string[required]
           Name of raster map to be used for <blue>

       output=string[required]
           Name for new PPM file. (use ’-’ for stdout)

See Also