diff options
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() |