Extract from the bias-precession-nutation matrix the X,Y coordinates of the Celestial Intermediate Pole.
Status: support routine.
The matrix RBPN transforms vectors from GCRS to true equator (and CIO or equinox) of date, and therefore the Celestial Intermediate Pole unit vector is the bottom row of the matrix.
X,Y are components of the Celestial Intermediate Pole unit vector in the Geocentric Celestial Reference System.
Capitaine, N., Chapront, J., Lambert, S. and Wallace, P., "Expressions for the Celestial Intermediate Pole and Celestial Ephemeris Origin consistent with the IAU 2000A precession-nutation model", Astron.Astrophys. 400, 1145-1154 (2003)
n.b. The celestial ephemeris origin (CEO) was renamed "celestial intermediate origin" (CIO) by IAU 2006 Resolution 2.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3,3) | :: | rbpn | celestial-to-true matrix (Note 1) |
|
real(kind=wp), | intent(out) | :: | x | Celestial Intermediate Pole (Note 2) |
||
real(kind=wp), | intent(out) | :: | y | Celestial Intermediate Pole (Note 2) |
subroutine BPN2XY ( rbpn, x, y )
implicit none
real(wp),dimension(3,3),intent(in) :: rbpn !! celestial-to-true matrix (Note 1)
real(wp),intent(out) :: x !! Celestial Intermediate Pole (Note 2)
real(wp),intent(out) :: y !! Celestial Intermediate Pole (Note 2)
! Extract the X,Y coordinates.
x = rbpn(3,1)
y = rbpn(3,2)
end subroutine BPN2XY