App-SeismicUnixGui

 view release on metacpan or  search on metacpan

lib/App/SeismicUnixGui/geopsy/gpviewdcreport.pm  view on Meta::CPAN

  DESCRIPTION:  A package to use geopsy's Gpviewdcreport function
		to calculate view dispersion curves from inversion
		reports
  VERSION: 0.1

=head2 Use

=head2 Notes

	This Program derives from dinver in Geopsy
	'_note' keeps track of actions for use in graphics
	'_Step' keeps track of actions for execution in the system

=head2 Example

=head2 Gpviewdcreport Notes

Usage: gpviewdcreport [OPTIONS] [FILE]...

  Display ground profiles, dispersion curves, ellipticity curves, autocorrelation curves or refraction
  curves read from .report files. It is strictly equivalent to the 'view' options in dinver graphical
  interface. If options '-m', '-n' or other related options are specified the initial dialog box is
  skipped.

gpviewdcreport options:
  -profile                  Plot ground profiles (default)
  -dispersion               Plot dispersion curves
  -ellipticity              Plot ellipticity curves
  -autocorr                 Plot autocorrelation curves
  -refraVp                  Plot refraction curves for Vp
  -refraVs                  Plot refraction curves for Vs
  -m <MISFIT>               Maximum misfit to display
  -target <TARGET>          Set target shown above models read from .report files.
  -e, -export <FILE>        Export sheet contents to FILE. See 'figue -h' for more details.
  -f, -format <FORMAT>      Specify format for option '-export'. See 'figue -h' for more details.
  -dpi <DPI>                Forces resolution to DPI(dot per inch) in export file. See 'figue -h' for
                            more details.

Profile options:
  -n <N>                    Number of profiles

Dispersion options:
  -n <N>                    Number of modes
  -s <SLOWNESS>             Slowness type: Group or Phase
  -p <POLARISATION>         Polarisation: Rayleigh or Love

Ellipticity options:
  -n <N>                    Number of modes

Autocorr options:
  -n <N>                    Number of rigns
  -p <POLARISATION>         Polarisation: Vertical, Transverse or Radial

Refra options:
  -n <N>                    Number of sources

Qt options:
  -nograb                   Tells Qt that it must never grab the mouse or the keyboard
  -dograb                   Running under a debugger can cause an implicit -nograb, use -dograb to
                            override
  -sync                     Switches to synchronous mode for debugging
  -style <style>            Sets the application GUI style. Possible values are
                              motif
                              windows
                              platinum
                            If you compiled Qt with additional styles or have additional styles as
                            plugins these will be available to the -style command line option
  -session <session>        Restore the application from an earlier session
  -reverse                  Sets the application's layout direction to right to left
  -display <display>        Sets the X display (default is $DISPLAY)
  -geometry <geometry>      Sets the client geometry of the first window that is shown
  -fn, -font <font>         Defines the application font. The font should be specified using an X logical
                            font description
  -bg, -background <color>  Sets the default background color and an application palette (light and dark
                            shades are calculated)
  -fg, -foreground <color>  Sets the default foreground color
  -btn, -button <color>     Sets the default button color
  -name <name>              Sets the application name
  -title <title>            Sets the application title
  -visual TrueColor         Forces the application to use a TrueColor visual on an 8-bit display
  -ncols <count>            Limits the number of colors allocated in the color cube on an 8-bit display,
                            if the application is using the QApplication::ManyColor color specification.
                            If count is 216 then a 6x6x6 color cube is used (i.e. 6 levels of red, 6 of
                            green, and 6 of blue); for other values, a cube approximately proportional to
                            a 2x3x1 cube is used
  -cmap <count>             Causes the application to install a private color map on an 8-bit display
  -im <XIM server>          Sets the input method server (equivalent to setting the XMODIFIERS
                            environment variable)
  -noxim                    Disables the input method framework ("no X input method")
  -inputstyle <inputstyle>  Defines how the input is inserted into the given widget. Possible values are:
                              onTheSpot makes the input appear directly in the widget
                              offTheSpot
                              overTheSpot makes the input appear in a box floating over the widget

See also:
  More information at http://www.geopsy.org

Authors:
  Marc Wathelet
  Marc Wathelet (LGIT, Grenoble, France)

=cut

my $Gpviewdcreport = {
    _Step         => '',
    _note         => '',
    _profile      => '',
    _dispersion   => '',
    _maxmis       => '',
    _export       => '',
    _format       => '',
    _nprofile     => '',
    _nmodes       => '',
    _slowness     => '',
    _polarisation => '',
    _target       => '',
    _dpi          => '',
    _file         => '',
};

=pod



( run in 1.320 second using v1.01-cache-2.11-cpan-5837b0d9d2c )