
# **************************************
# *  Example ksh IRIS Initializations  *
# *      for UNIX platforms            *
# **************************************
#
MACH=`uname -s`
export IRIS_ROOT="/usr/sigmet"

# The following variables reference the source/release/configuration
# tree.  These should all be rooted at the location where IRIS has
# been installed.
#
export IRIS_APP_DEFAULTS="${IRIS_ROOT}/bin/app-defaults/"
export IRIS_BIN="${IRIS_ROOT}/bin/"
export IRIS_BIN_WV="${IRIS_ROOT}/iview/bin/"
export IRIS_BITMAPS="${IRIS_ROOT}/dt/icons/"
export IRIS_CONFIG="${IRIS_ROOT}/config/"
export IRIS_DICTIONARY="${IRIS_CONFIG}dict/"
export IRIS_INIT="${IRIS_CONFIG}init/"
export IRIS_KEYS="${IRIS_ROOT}/bin/keys/"
export IRIS_MANUALS_INST="${IRIS_ROOT}/manuals/onlin_ig.cab/install/"
export IRIS_MANUALS_IRIS="${IRIS_ROOT}/manuals/onlin_ug.cab/irisuser/"
export IRIS_MANUALS_NOTE="${IRIS_ROOT}/manuals/relnotes.cab/relnotes/"
export IRIS_MANUALS_PROG="${IRIS_ROOT}/manuals/onlin_pgm.cab/irispgm/"
export IRIS_MANUALS_RCP02="${IRIS_ROOT}/manuals/rcp02_ug.cab/rcp02um/"
export IRIS_MANUALS_RVP6="${IRIS_ROOT}/manuals/rvp6_ug.cab/rvp6ug/"
export IRIS_MANUALS_RVP7="${IRIS_ROOT}/manuals/rvp7_ug.cab/rvp7ug/"
export IRIS_MANUALS_UTIL="${IRIS_ROOT}/manuals/onlin_utl.cab/irisutil/"
export IRIS_MENU="${IRIS_CONFIG}menu/"
export IRIS_NLS="${IRIS_ROOT}/bin/nls/"
export IRIS_OVERLAY="${IRIS_CONFIG}overlay/"
export IRIS_SCRIPT="${IRIS_ROOT}/script/"

# The following variables define where IRIS data are placed.  These
# must be separate directories, but need have no relation among each
# other.
#
export IRIS_INGEST="/usr/iris_data/ingest/"
export IRIS_LOG="/usr/iris_data/log/"
export IRIS_PRODUCT="/usr/iris_data/product/"
export IRIS_PRODUCT_RAW="/usr/iris_data/product_raw/"
export IRIS_TAPE_INV="/usr/iris_data/tape_inv/"
export IRIS_TEMP="/usr/iris_data/temp/"

# The following definitions are for variables that are independent
# of the location where IRIS has been installed.
#
export IRIS_ANTSIM="/dev/tty01"
export IRIS_NETRCV="TCPIP 30725"
export IRIS_OPERATORS="alan doug fritz joe joyce operator rich sue"
export IRIS_OBSERVERS="observer"

# Modify existing variables to hit the IRIS tree too.
#
if [ "$MACH" = 'IRIX' ]
then
# /usr/etc required for ping
  PATH=".:${IRIS_BIN}:$PATH:/bin:/usr/bin/X11:/usr/local/bin:/usr/etc"
elif [ "$MACH" = 'HP-UX' ]
then
# /usr/sbin required for ping
  PATH=".:${IRIS_BIN}:$PATH:/bin:/usr/bin/X11:/usr/local/bin:/usr/sbin"
else
  PATH=".:${IRIS_BIN}:$PATH:/bin:/usr/bin/X11:/usr/local/bin"
fi
#

if [ "${NLSPATH}" = "" ] ; then
  export NLSPATH="${IRIS_ROOT}/bin/nls/%L/%N"
else
  NLSPATH="${NLSPATH}:${IRIS_ROOT}/bin/nls/%L/%N"
fi

# Define the language, if not done already.
#
if [ "${LANG}" = "" ] ; then
  export LANG="C"
fi

umask 002
