[ossim] 03/03: Add manpages for new utilities.

Bas Couwenberg sebastic at debian.org
Sun Dec 10 13:17:35 UTC 2017


This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository ossim.

commit 8af5b0cf242a11f592464c86b443c683b00897c4
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Sun Dec 10 12:38:43 2017 +0100

    Add manpages for new utilities.
---
 debian/changelog                    |  1 +
 debian/manpages/ossim-cli.1         | 36 +++++++++++++++++++
 debian/manpages/ossim-plot-histo.1  | 66 +++++++++++++++++++++++++++++++++++
 debian/manpages/ossim-rpcgen.1      | 69 +++++++++++++++++++++++++++++++++++++
 debian/ossim-core.lintian-overrides |  4 +++
 debian/ossim-core.manpages          | 47 +------------------------
 6 files changed, 177 insertions(+), 46 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index d6fad2a..905d7c0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ ossim (2.2.0-1~exp2) UNRELEASED; urgency=medium
   * Team upload.
   * Override dh_makeshlibs to use -V.
   * Add strict binary version dependency on libossim to ossim-core.
+  * Add manpages for new utilities.
 
  -- Bas Couwenberg <sebastic at debian.org>  Sun, 10 Dec 2017 11:52:50 +0100
 
diff --git a/debian/manpages/ossim-cli.1 b/debian/manpages/ossim-cli.1
new file mode 100644
index 0000000..9507f24
--- /dev/null
+++ b/debian/manpages/ossim-cli.1
@@ -0,0 +1,36 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.5.
+.TH OSSIM-CLI "1" "December 2017" "2.2.0" "User Commands"
+.SH NAME
+ossim-cli \- OSSIM CLI Utility
+.SH SYNOPSIS
+ossim\-cli <command> [command options and parameters]
+
+ossim\-cli \fB\-\-spec\fR <command\-spec\-file>
+
+ossim\-cli \fB\-\-version\fR
+
+ossim\-cli help <command> \fB\-\-\fR To get help on specific command.
+.SH DESCRIPTION
+ossim-cli provides an interface to all utilities derived from ossimTool.
+.PP
+Available commands:
+.IP
+bandmerge \fB\-\-\fR Merges multiple band files into a single RGB image.
+
+hillshade \fB\-\-\fR Computes shaded representation of input elevation surface with specified lighting parameters.
+
+hlz \fB\-\-\fR Computes bitmap of helicopter landing zones given ROI and DEM.
+
+info \fB\-\-\fR Dumps metadata information about input image and OSSIM in general.
+
+ortho \fB\-\-\fR Utility for orthorectifying and reprojecting image data.
+
+shoreline \fB\-\-\fR Computes bitmap of water versus land areas in an input image.
+
+slope \fB\-\-\fR Utility for computing the slope at each elevation post and generating a corresponding slope image.
+
+subimage \fB\-\-\fR Tool for extracting a sub\-image from a full image. No reprojection is done. Presently, the subimage geometry is represented by an RPC replacement model until generic models can support subimage chipping.
+
+vertices \fB\-\-\fR Utility for determining the active image corner vertices inside larger null\-filled image rectangle.
+
+viewshed \fB\-\-\fR Computes bitmap image representing the viewshed from specified location using only DEM information.
diff --git a/debian/manpages/ossim-plot-histo.1 b/debian/manpages/ossim-plot-histo.1
new file mode 100644
index 0000000..11243c2
--- /dev/null
+++ b/debian/manpages/ossim-plot-histo.1
@@ -0,0 +1,66 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.5.
+.TH OSSIM-PLOT-HISTO "1" "December 2017" "ossim-plot-histo 2.2.0" "User Commands"
+.SH NAME
+ossim-plot-histo \- ossim-plot-histo
+.SH SYNOPSIS
+.B ossim-plot-histo
+\fI\,<input_file>\/\fR
+.SH DESCRIPTION
+ossim\-plot\-histo plots image histograms.
+.SH OPTIONS
+.TP
+\fB\-\-disable\-elev\fR
+Will disable the elevation
+.TP
+\fB\-\-disable\-notify\fR
+Takes an argument. Arguments are ALL, WARN, NOTICE, INFO,
+FATAL, DEBUG.  If you want multiple disables then just do
+multiple \fB\-\-disable\-notify\fR on the command line.  All
+argument are case insensitive.  Default is all are
+enabled.
+.TP
+\fB\-\-disable\-plugin\fR
+Will disable the plugin loader
+.TP
+\fB\-\-env\fR
+Specify an env variable to set.  Any number of these can
+appear with format \fB\-\-env\fR VARIABLE=VALUE
+.TP
+\fB\-\-ossim\-logfile\fR
+takes a logfile as an argument.  All output messages are
+redirected to the specified log file.  By default there is
+no log file and all messages are enabled.
+.TP
+\fB\-\-with\fR <symbol>
+See "gnuplot plot with" documentation
+.TP
+\fB\-\-xtics\fR (<string>)
+See "gnuplot plot xtics" documentation
+.TP
+\fB\-K\fR
+specify individual keywords to add to the preferences
+keyword list: name=value
+.TP
+\fB\-P\fR
+specify a preference file to load
+.TP
+\fB\-T\fR
+specify the classes to trace, ex: ossimInit|ossimImage.*
+will trace ossimInit and all ossimImage classes
+.TP
+\fB\-h\fR or \fB\-\-help\fR
+Display this information
+.SH EXAMPLES
+ossim\-plot\-histo foo.tif
+
+Will create a histogram for the input image and call it foo.his, then will plot the histogram.
+
+ossim\-plot\-histo foo.his
+
+Simply plots existing histogram.
+
+ossim\-plot\-histo \fB\-\-with\fR dots foo.his
+
+Uses specified symbol for data point. See "gnuplot plot with" documentation.
+
+Note: gnuplot must be installed before using this utility.
diff --git a/debian/manpages/ossim-rpcgen.1 b/debian/manpages/ossim-rpcgen.1
new file mode 100644
index 0000000..f6fa65a
--- /dev/null
+++ b/debian/manpages/ossim-rpcgen.1
@@ -0,0 +1,69 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.47.5.
+.TH OSSIM-RPCGEN "1" "December 2017" "ossim-rpcgen 2.2.0" "User Commands"
+.SH NAME
+ossim-rpcgen \- ossim-rpcgen
+.SH SYNOPSIS
+.B ossim-rpcgen
+[\fI\,options\/\fR] \fI\,<input-file> \/\fR[\fI\,<output-file>\/\fR]
+.SH DESCRIPTION
+ossim\-rpcgen takes an input image and generates a corresponding RPC geometry in a variety of formats. If a bounding box is specified, the default output filename (based on the input filename) will be appended with the bbox spec, unless an output filename is explicitly provided.
+.SH OPTIONS
+.TP
+\fB\-\-bbox\fR <ulx> <uly> <lrx> <lry>
+Subimage rectangle in image space for
+constraining RPC computation over the AOI
+only. Note that the RPC image space UL corner
+will correspond to (0,0), i.e., the model will
+be shifted from the original full\-image model.
+.TP
+\fB\-\-disable\-elev\fR
+Will disable the elevation
+.TP
+\fB\-\-disable\-notify\fR
+Takes an argument. Arguments are ALL, WARN,
+NOTICE, INFO, FATAL, DEBUG.  If you want
+multiple disables then just do multiple
+\fB\-\-disable\-notify\fR on the command line.  All
+argument are case insensitive.  Default is all
+are enabled.
+.TP
+\fB\-\-disable\-plugin\fR
+Will disable the plugin loader
+.TP
+\fB\-\-env\fR
+Specify an env variable to set.  Any number of
+these can appear with format \fB\-\-env\fR
+VARIABLE=VALUE
+.TP
+\fB\-\-geom\fR <format>
+Specifies format of the subimage RPC geometry
+file. Possible values are: "OGEOM" (OSSIM
+geometry, default), "DG" (DigitalGlobe WV/QB
+\&.RPB format), "JSON" (MSP\-style JSON), or
+"XML". Case insensitive.
+.TP
+\fB\-\-ossim\-logfile\fR
+takes a logfile as an argument.  All output
+messages are redirected to the specified log
+file.  By default there is no log file and all
+messages are enabled.
+.TP
+\fB\-\-tolerance\fR <double>
+Used as an RMS error tolerance in meters
+between original model and RPC.
+.TP
+\fB\-K\fR
+specify individual keywords to add to the
+preferences keyword list: name=value
+.TP
+\fB\-P\fR
+specify a preference file to load
+.TP
+\fB\-T\fR
+specify the classes to trace, ex:
+ossimInit|ossimImage.*
+will trace ossimInit and all ossimImage
+classes
+.TP
+\fB\-h\fR | \fB\-\-help\fR
+Display this information
diff --git a/debian/ossim-core.lintian-overrides b/debian/ossim-core.lintian-overrides
new file mode 100644
index 0000000..28810af
--- /dev/null
+++ b/debian/ossim-core.lintian-overrides
@@ -0,0 +1,4 @@
+# No sensible manpage can be written for these executables.
+ossim-core: binary-without-manpage usr/bin/ossim-tool-client
+ossim-core: binary-without-manpage usr/bin/ossim-tool-server
+
diff --git a/debian/ossim-core.manpages b/debian/ossim-core.manpages
index 6bac883..4cd44fd 100644
--- a/debian/ossim-core.manpages
+++ b/debian/ossim-core.manpages
@@ -1,46 +1 @@
-debian/manpages/ossim-adrg-dump.1
-debian/manpages/ossim-applanix2ogeom.1
-debian/manpages/ossim-autreg.1
-debian/manpages/ossim-band-merge.1
-debian/manpages/ossim-batch-test.1
-debian/manpages/ossim-btoa.1
-debian/manpages/ossim-chgkwval.1
-debian/manpages/ossim-chipper.1
-debian/manpages/ossim-cmm.1
-debian/manpages/ossim-computeSrtmStats.1
-debian/manpages/ossim-correl.1
-debian/manpages/ossim-create-bitmask.1
-debian/manpages/ossim-create-cg.1
-debian/manpages/ossim-create-histo.1
-debian/manpages/ossim-deg2dms.1
-debian/manpages/ossim-dms2deg.1
-debian/manpages/ossim-dump-ocg.1
-debian/manpages/ossim-equation.1
-debian/manpages/ossim-extract-vertices.1
-debian/manpages/ossim-hlz.1
-debian/manpages/ossim-icp.1
-debian/manpages/ossim-igen.1
-debian/manpages/ossim-image-compare.1
-debian/manpages/ossim-image-synth.1
-debian/manpages/ossim-img2md.1
-debian/manpages/ossim-img2rr.1
-debian/manpages/ossim-info.1
-debian/manpages/ossim-modopt.1
-debian/manpages/ossim-mosaic.1
-debian/manpages/ossim-ogeom2ogeom.1
-debian/manpages/ossim-orthoigen.1
-debian/manpages/ossim-pc2dem.1
-debian/manpages/ossim-pixelflip.1
-debian/manpages/ossim-preproc.1
-debian/manpages/ossim-prune.1
-debian/manpages/ossim-rejout.1
-debian/manpages/ossim-rpf.1
-debian/manpages/ossim-senint.1
-debian/manpages/ossim-slope.1
-debian/manpages/ossim-space-imaging.1
-debian/manpages/ossim-src2src.1
-debian/manpages/ossim-swapbytes.1
-debian/manpages/ossim-tfw2ogeom.1
-debian/manpages/ossim-viewshed.1
-debian/manpages/ossim-viirs-proc.1
-debian/manpages/ossim-ws-cmp.1
+debian/manpages/*.1

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim.git



More information about the Pkg-grass-devel mailing list