aboutsummaryrefslogtreecommitdiff
path: root/sys/mwcs/mwgwtermd.x
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 /sys/mwcs/mwgwtermd.x
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'sys/mwcs/mwgwtermd.x')
-rw-r--r--sys/mwcs/mwgwtermd.x49
1 files changed, 49 insertions, 0 deletions
diff --git a/sys/mwcs/mwgwtermd.x b/sys/mwcs/mwgwtermd.x
new file mode 100644
index 00000000..be6b015a
--- /dev/null
+++ b/sys/mwcs/mwgwtermd.x
@@ -0,0 +1,49 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+include <syserr.h>
+include "mwcs.h"
+
+# MW_GWTERMD -- Get the linear part of the Wterm, i.e., the physical and world
+# coordinates of the reference point and the CD matrix. It is the Wterm of
+# the current default WCS which is read.
+
+procedure mw_gwtermd (mw, r, w, cd, ndim)
+
+pointer mw #I pointer to MWCS descriptor
+double r[ndim] #O physical coordinates of reference point
+double w[ndim] #O world coordinates of reference point
+double cd[ndim,ndim] #O CD matrix
+int ndim #I dimension of Wterm
+
+pointer wp
+errchk syserrs
+string s_name "mw_gwtermd"
+
+begin
+ # Get the current WCS.
+ wp = MI_WCS(mw)
+ if (wp == NULL)
+ call syserrs (SYS_MWNOWCS, s_name)
+
+ # Verify the dimension.
+ if (WCS_NDIM(wp) != ndim)
+ call syserrs (SYS_MWNDIM, s_name)
+
+ # Copy out the data. Return the unitary transformation if the
+ # Wterm has not been set.
+
+ if (WCS_R(wp) == NULL)
+ call aclrd (r, ndim)
+ else
+ call amovd (D(mw,WCS_R(wp)), r, ndim)
+
+ if (WCS_W(wp) == NULL)
+ call aclrd (w, ndim)
+ else
+ call amovd (D(mw,WCS_W(wp)), w, ndim)
+
+ if (WCS_CD(wp) == NULL)
+ call mw_mkidmd (cd, ndim)
+ else
+ call amovd (D(mw,WCS_CD(wp)), cd, ndim*ndim)
+end