|
Commands Data Selection Output Range axis Time axis Traces Labeling/Annotation Travel Time curves Multiple Plots Muting Interactive Picking |
Pltsegy works on the principle of sensible defaults so that most commands do not need to be specified unless a certain effect is required. pltsegy is a short shell script in your path, e.g. ~/bin, that is a wrapper for two programs that actually do the record section plotting. The first program parses the user understandable input file and converts it to an intermediate ascii file that is read by the plotting program. The shell script has been created (see below) the user need only be concerned with creating the input command file. Most commands follow a simple name = value; syntax (N. B. both the "=" and ";" are required although spaces are optional). The values are of 4 basic types - string (s), integer (i), real (r), and logical or boolean (b). The type expected by a given command appears in parentheses after the command name. In general, a string value may optionally be delimited by single quotes, "'", as for fortran strings. Cases where single quotes are required for strings are noted with the relevant command synopsis. A boolean value may be given as f, false, t, or true. In general all commands and values are case insensitive. One exception is file names since UNIX is case sensitive. Certain commands, such as label, are defined as structures and require multiple input values. The arguments expected for structures are given in the definition of the command. The individual elements of a structure may be separated by spaces or commas. The only command list other than plot-end$ list that is recognized by pltsegy is a hole-end$ list which introduces commands specifying regions of the data to be muted during plotting. A hole-end$ list is required following the current plot-end$ list if filtering/muting is specified using ifilc (see below). An input file may include comments by using an left brace, "{". Anything between a left brace and the end of a line is treated as a comment and ignored. |