Skip to content

Commit

Permalink
manual: keyword 'output' added
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.osgeo.org/grass/grass/trunk@74408 15284696-431f-4ddb-bdfa-cd5b030d7da7
  • Loading branch information
neteler committed Apr 20, 2019
1 parent c3c46d2 commit 35ac54d
Show file tree
Hide file tree
Showing 28 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions raster/r.out.ascii/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword("ASCII");
module->description =
_("Converts a raster map layer into a GRASS ASCII text file.");
Expand Down
1 change: 1 addition & 0 deletions raster/r.out.bin/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
module->description = _("Exports a GRASS raster to a binary array.");

/* Define the different options */
Expand Down
1 change: 1 addition & 0 deletions raster/r.out.gdal/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ int main(int argc, char *argv[])
_("Exports GRASS raster maps into GDAL supported formats.");
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));

flag_l = G_define_flag();
flag_l->key = 'l';
Expand Down
1 change: 1 addition & 0 deletions raster/r.out.gridatb/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ int main(int argc, char **argv)
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
module->description =
_("Exports GRASS raster map to GRIDATB.FOR map file (TOPMODEL).");

Expand Down
1 change: 1 addition & 0 deletions raster/r.out.mat/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
module->description = _("Exports a GRASS raster to a binary MAT-File.");

/* Define the different options */
Expand Down
1 change: 1 addition & 0 deletions raster/r.out.mpeg/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ int main(int argc, char **argv)
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword(_("animation"));

module->description =
Expand Down
1 change: 1 addition & 0 deletions raster/r.out.png/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword("PNG");
module->description =
_("Export a GRASS raster map as a non-georeferenced PNG image.");
Expand Down
1 change: 1 addition & 0 deletions raster/r.out.pov/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
module->description =
_("Converts a raster map layer into a height-field file for POV-Ray.");

Expand Down
1 change: 1 addition & 0 deletions raster/r.out.ppm/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
module->description = _("Converts a GRASS raster map to a PPM image file.");


Expand Down
1 change: 1 addition & 0 deletions raster/r.out.ppm3/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ int main(int argc, char **argv)
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
module->description = _("Converts 3 GRASS raster layers (R,G,B) to a PPM image file.");

for (i = 0; i < 3; i++) {
Expand Down
1 change: 1 addition & 0 deletions raster/r.out.vrml/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword(_("VRML"));
module->description =
_("Exports a raster map to the Virtual Reality Modeling Language (VRML).");
Expand Down
1 change: 1 addition & 0 deletions raster/r.out.vtk/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword("VTK");
module->description = _("Converts raster maps into the VTK-ASCII format.");

Expand Down
1 change: 1 addition & 0 deletions raster3d/r3.out.ascii/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster3d"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword(_("voxel"));
G_add_keyword(_("conversion"));
G_add_keyword("ASCII");
Expand Down
1 change: 1 addition & 0 deletions raster3d/r3.out.netcdf/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster3d"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword(_("netCDF"));
G_add_keyword(_("voxel"));
module->description = _("Export a 3D raster map as netCDF file.");
Expand Down
1 change: 1 addition & 0 deletions raster3d/r3.out.v5d/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster3d"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword(_("voxel"));
module->description =
_("Exports GRASS 3D raster map to 3-dimensional Vis5D file.");
Expand Down
1 change: 1 addition & 0 deletions raster3d/r3.out.vtk/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("raster3d"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword(_("voxel"));
G_add_keyword("VTK");
module->description =
Expand Down
1 change: 1 addition & 0 deletions scripts/d.out.file/d.out.file.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#% description: Saves the contents of the active display monitor to a graphics file.
#% keyword: display
#% keyword: export
#% keyword: output
#%end
#%option G_OPT_F_OUTPUT
#% description: Name for output file
Expand Down
1 change: 1 addition & 0 deletions scripts/db.out.ogr/db.out.ogr.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#% description: Exports attribute tables into various formats.
#% keyword: database
#% keyword: export
#% keyword: output
#% keyword: attribute table
#%end

Expand Down
1 change: 1 addition & 0 deletions scripts/r.out.xyz/r.out.xyz.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#% description: Exports a raster map to a text file as x,y,z values based on cell centers.
#% keyword: raster
#% keyword: export
#% keyword: output
#% keyword: ASCII
#% keyword: conversion
#%end
Expand Down
1 change: 1 addition & 0 deletions temporal/t.rast.out.vtk/t.rast.out.vtk.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#% description: Exports space time raster dataset as VTK time series.
#% keyword: temporal
#% keyword: export
#% keyword: output
#% keyword: raster
#% keyword: VTK
#% keyword: time
Expand Down
1 change: 1 addition & 0 deletions vector/v.out.ascii/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword("ASCII");
module->label =
_("Exports a vector map to a GRASS ASCII vector representation.");
Expand Down
1 change: 1 addition & 0 deletions vector/v.out.dxf/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword(_("DXF"));
module->description =
_("Exports vector map to DXF file format.");
Expand Down
1 change: 1 addition & 0 deletions vector/v.out.lidar/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,7 @@ int main(int argc, char **argv)
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword(_("LIDAR"));
G_add_keyword(_("points"));
module->label = _("Exports vector points as LAS point cloud");
Expand Down
2 changes: 2 additions & 0 deletions vector/v.out.ogr/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword("OGR");
G_add_keyword(_("output"));

module->label =
_("Exports a vector map layer to any of the supported OGR vector formats.");
Expand Down
1 change: 1 addition & 0 deletions vector/v.out.postgis/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword(_("PostGIS"));
G_add_keyword(_("simple features"));
G_add_keyword(_("topology"));
Expand Down
1 change: 1 addition & 0 deletions vector/v.out.pov/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
module->description =
_("Converts GRASS x,y,z points to POV-Ray x,z,y format.");

Expand Down
1 change: 1 addition & 0 deletions vector/v.out.svg/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ int main(int argc, char *argv[])
module->description = _("Exports a vector map to SVG file.");
G_add_keyword(_("vector"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));

in_opt = G_define_standard_option(G_OPT_V_INPUT);

Expand Down
1 change: 1 addition & 0 deletions vector/v.out.vtk/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ int main(int argc, char *argv[])
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("export"));
G_add_keyword(_("output"));
G_add_keyword("VTK");
module->description =
_("Converts a vector map to VTK ASCII output.");
Expand Down

0 comments on commit 35ac54d

Please sign in to comment.