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 /noao/astutil/astradius.cl | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'noao/astutil/astradius.cl')
-rw-r--r-- | noao/astutil/astradius.cl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/noao/astutil/astradius.cl b/noao/astutil/astradius.cl new file mode 100644 index 00000000..ac0c6bc1 --- /dev/null +++ b/noao/astutil/astradius.cl @@ -0,0 +1,16 @@ +# ASTRADIUS -- Find images within a radius. + +procedure astradius (images, racenter, deccenter, epcenter, radius) + +string images = "" {prompt="List of images"} +string racenter = "" {prompt="RA center (hours)"} +string deccenter = "" {prompt="DEC center (degrees)"} +real epcenter = 2000. {prompt="Epoch of center"} +real radius = 60. {prompt="Radius in arc seconds"} +pset keywpars = "" {prompt="Keywords for RA, DEC, EPOCH\n"} + +file commands = "astutil$astradius.dat" {prompt="ASTCALC file"} + +begin + astcalc (commands=commands, images=images, table="", verbose=no) +end |