Subversion Repositories lagranto.um

Rev

Rev 3 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#!/bin/csh

# Set Lagranto 
set LAGRANTO = ${LAGRANTOBASE}.${MODEL}/

# Write usage information
if ( ${#argv} == 0) then
  echo 
  echo "--------------------------------------------------------------"
  echo "Usage: lsl2list.sh listinp traout       "
  echo 
  echo "         trainp         : Input trajectory file "
  echo "         listout        : Output list [lon,lat,p] file"
  echo "--------------------------------------------------------------"
  exit 1
endif

set inpfile=$1
set outfile=$2

set prog1=${LAGRANTO}/goodies/lsl2list

set dim=`${LAGRANTO}/goodies/trainfo.sh ${inpfile} dim` 

\rm -f lsl2list.param
echo \"${inpfile}\"       >! lsl2list.param
echo \"${outfile}\"       >> lsl2list.param
echo ${dim}               >> lsl2list.param

${prog1}

#\rm -f lsl2list.param

exit 0