aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/doc/tbtcpy.lis
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/tbtables/doc/tbtcpy.lis
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'pkg/tbtables/doc/tbtcpy.lis')
-rw-r--r--pkg/tbtables/doc/tbtcpy.lis30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkg/tbtables/doc/tbtcpy.lis b/pkg/tbtables/doc/tbtcpy.lis
new file mode 100644
index 00000000..a371a618
--- /dev/null
+++ b/pkg/tbtables/doc/tbtcpy.lis
@@ -0,0 +1,30 @@
+Here is the algorithm for determining the type of output table that
+will be created when calling tbtcpy:
+
+ if output == STDOUT then
+
+ type = text
+
+ else if extension of output file is .fits (or .fit or .??f) then
+
+ type = fits
+
+ else if extension of output file is .qp
+
+ type = row # but in a qpoe file
+
+ else if input is text file or STDIN then
+
+ # text --> text, except for extensions .tab, .fits, .qp
+
+ if extension of output file is .tab
+ type = row
+ else # .fits & .qp taken care of above
+ type = text
+ end if
+
+ else
+
+ type = row
+
+ end if