aboutsummaryrefslogtreecommitdiff
path: root/bin/idlplot_spex.pl
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-03-05 18:05:27 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-03-05 18:05:27 -0500
commit4a3aef3f7236d2b3267aead61f11c587c6f4bddb (patch)
treebea89287f8cf6290fc230fb82fb11b3b9a5c6e0f /bin/idlplot_spex.pl
parent9166f1762976cb64acfd8c9ecc067132ffefa615 (diff)
downloadcalfuse-4a3aef3f7236d2b3267aead61f11c587c6f4bddb.tar.gz
Further improvements
Diffstat (limited to 'bin/idlplot_spex.pl')
-rwxr-xr-xbin/idlplot_spex.pl48
1 files changed, 0 insertions, 48 deletions
diff --git a/bin/idlplot_spex.pl b/bin/idlplot_spex.pl
deleted file mode 100755
index 701d2f7..0000000
--- a/bin/idlplot_spex.pl
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/usr/bin/env perl
-use FileHandle;
-
-# ***************************************************
-# add_tle.pl
-#
-# This Perl module will read in the latest five orbital elements
-# from the file five.tle (which was created by get_tle.pl) and
-# add any new orbital elements to the file FUSE.TLE. The file
-# FUSE.TLE is in descending order (i.e. the most recent elements
-# are first). In order to prepend the new TLE onto the old list
-# I found it was easiest to store everything in a temporary file
-# TEMP.TLE and rewrite FUSE.TLE.
-#
-# Author: Ed Murphy
-#
-# History: Written July 27, 1999
-# 11/21/06 wvd Add process ID ($$) to name of
-# batch file.
-#
-# ***************************************************
-
-# Define the file names. old_maintle_filename is not actually opened,
-# but is used in a system call at the end of the program.
-
-if (@ARGV == 0) {
- print "You must enter the rootname of the observation.\n";
- print "Exiting.\n";
-
- } else {
-
- $batch_filename = $ARGV[0] . $$."_idl.bat";
-
- # Open the output batch file.
- open (BAT_OUTFILE, ">$batch_filename") || die "Cannot open $batch_filename";
- print BAT_OUTFILE "!path='$ENV{CF_IDLDIR}:'+!path\n";
- print BAT_OUTFILE "cf_plot_extract3,'" . $ARGV[0] . "'\n";
- print BAT_OUTFILE "exit\n";
-
- close (BAT_OUTFILE);
-
- system("idl $batch_filename > /dev/null");
-
- system("rm $batch_filename");
-
- }
-
-### end of Perl script