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.bin - Exports a GRASS raster to a binary array.

Author

       This program is derived from r.out.ascii with a few modifications.
       Author: Bob Covill

Description

       The r.out.bin program exports a GRASS raster map to a binary array file. Optionally, output can  be  sent
       to  standard  output (stdout) for direct input (pipe) into other applications. Data is exported according
       to the original GRASS raster type (e.g. float). If the "-i"  flag  is  specified,  an  integer  array  is
       output. The region parameters are printed to stderr.

Keywords

       raster, export, output

Name

r.out.bin  - Exports a GRASS raster to a binary array.

Notes

       With the -h flag, data can be directly used by GMT as Grid Format 1 (float) or 2 (short). For example:
       r.out.bin -h input=grass.raster output=new.grd
       grdinfo new.grd=1 (if float)

       Exported data can be piped directly into the GMT program xyz2grd.
       r.out.bin input=grass.raster output=- | xyz2grd -R....  -ZTLf -
       The example uses the GMT program xyz2grd with the -ZTLf flag indicating that a float array was output.

See Also

r.in.bin,r.in.ascii,r.in.gdal,r.out.ascii

Source Code

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

       Accessed: Friday Apr 04 01:19:17 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.bin(1grass)

Synopsis

r.out.binr.out.bin--helpr.out.bin   [-ifhbs]  input=string   [output=string]    [null=float]    [bytes=integer]    [order=string]
       [--help]  [--verbose]  [--quiet]  [--ui]

   Flags:-i
           Generate integer output

       -f
           Generate floating-point output

       -h
           Export array with GMT compatible header

       -b
           Generate BIL world and header files

       -s
           Byte swap output

       --help
           Print usage summary

       --verbose
           Verbose module output

       --quiet
           Quiet module output

       --ui
           Force launching GUI dialog

   Parameters:input=string[required]
           Name of input raster map

       output=string
           Name for output binary map (use output=- for stdout)

       null=float
           Value to write out for null
           Default: 0bytes=integer
           Number of bytes per cell
           Options: 1,2,4,8order=string
           Output byte order
           Options: big,little,native,swap
           Default: native

See Also