aboutsummaryrefslogtreecommitdiff
path: root/sys/mwcs/mwgwsampd.x
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /sys/mwcs/mwgwsampd.x
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'sys/mwcs/mwgwsampd.x')
-rw-r--r--sys/mwcs/mwgwsampd.x34
1 files changed, 34 insertions, 0 deletions
diff --git a/sys/mwcs/mwgwsampd.x b/sys/mwcs/mwgwsampd.x
new file mode 100644
index 00000000..8149d814
--- /dev/null
+++ b/sys/mwcs/mwgwsampd.x
@@ -0,0 +1,34 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+include <syserr.h>
+include "mwcs.h"
+
+# MW_GWSAMPD -- Get the sampled WCS curve for an axis.
+
+procedure mw_gwsampd (mw, axis, pv, wv, npts)
+
+pointer mw #I pointer to MWCS descriptor
+int axis #I axis which gets the wsamp vector
+double pv[ARB] #O physical coordinates of points
+double wv[ARB] #O world coordinates of points
+int npts #I number of data point in curve
+
+pointer wp
+errchk syserrs
+string s_name "mw_gwsampd"
+
+begin
+ # Get the current WCS.
+ wp = MI_WCS(mw)
+ if (wp == NULL)
+ call syserrs (SYS_MWNOWCS, s_name)
+
+ # Verify that there is a sampled curve for this WCS.
+ if (WCS_NPTS(wp,axis) <= 0 || WCS_PV(wp,axis) == NULL
+ || WCS_WV(wp,axis) == NULL)
+ call syserrs (SYS_MWNOWSAMP, s_name)
+
+ # Copy out the curves.
+ call amovd (D(mw,WCS_PV(wp,axis)), pv, min(WCS_NPTS(wp,axis), npts))
+ call amovd (D(mw,WCS_WV(wp,axis)), wv, min(WCS_NPTS(wp,axis), npts))
+end