aboutsummaryrefslogtreecommitdiff
path: root/math/slalib/dranrm.f
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 /math/slalib/dranrm.f
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'math/slalib/dranrm.f')
-rw-r--r--math/slalib/dranrm.f48
1 files changed, 48 insertions, 0 deletions
diff --git a/math/slalib/dranrm.f b/math/slalib/dranrm.f
new file mode 100644
index 00000000..9325840c
--- /dev/null
+++ b/math/slalib/dranrm.f
@@ -0,0 +1,48 @@
+ DOUBLE PRECISION FUNCTION slDA2P (ANGLE)
+*+
+* - - - - - - -
+* D A 2 P
+* - - - - - - -
+*
+* Normalize angle into range 0-2 pi (double precision)
+*
+* Given:
+* ANGLE dp the angle in radians
+*
+* The result is ANGLE expressed in the range 0-2 pi.
+*
+* Last revision: 22 July 2004
+*
+* Copyright P.T.Wallace. All rights reserved.
+*
+* License:
+* This program is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation; either version 2 of the License, or
+* (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program (see SLA_CONDITIONS); if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Copyright (C) 1995 Association of Universities for Research in Astronomy Inc.
+*-
+
+ IMPLICIT NONE
+
+ DOUBLE PRECISION ANGLE
+
+ DOUBLE PRECISION D2PI
+ PARAMETER (D2PI=6.283185307179586476925286766559D0)
+
+
+ slDA2P = MOD(ANGLE,D2PI)
+ IF (slDA2P.LT.0D0) slDA2P = slDA2P+D2PI
+
+ END