aboutsummaryrefslogtreecommitdiff
path: root/pkg/images/images.cl
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /pkg/images/images.cl
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/images/images.cl')
-rw-r--r--pkg/images/images.cl38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkg/images/images.cl b/pkg/images/images.cl
new file mode 100644
index 00000000..342b3bea
--- /dev/null
+++ b/pkg/images/images.cl
@@ -0,0 +1,38 @@
+#{ IMAGES package -- General image processing.
+
+# Check that login.cl version matches IRAF version. This has nothing to
+# do with IMAGES, this is just a convenient place to test for an old
+# login.cl, since IMAGES is virtually guaranteed to be loaded with IRAF.
+
+if (cl.logver != cl.version && cl.logregen) {
+ print ("WARNING: login.cl is outdated - rebuild with `mkiraf'")
+ beep; sleep(1); beep; sleep(1); beep
+}
+
+set imcoords = "images$imcoords/"
+set imfilter = "images$imfilter/"
+set imfit = "images$imfit/"
+set imgeom = "images$imgeom/"
+set immatch = "images$immatch/"
+set imutil = "images$imutil/"
+set tv = "images$tv/"
+
+package images
+
+task imcoords.pkg = "imcoords$imcoords.cl"
+task imfilter.pkg = "imfilter$imfilter.cl"
+task imfit.pkg = "imfit$imfit.cl"
+task imgeom.pkg = "imgeom$imgeom.cl"
+task immatch.pkg = "immatch$immatch.cl"
+task imutil.pkg = "imutil$imutil.cl"
+task tv.pkg = "tv$tv.cl"
+
+# Load images subpackages (tv is not autoloaded).
+imcoords
+imfilter
+imfit
+imgeom
+immatch
+imutil
+
+clbye()