diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/images/images.cl | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/images/images.cl')
-rw-r--r-- | pkg/images/images.cl | 38 |
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() |