FK5HZ Subroutine

public subroutine FK5HZ(r5, d5, date1, date2, rh, dh)

Transform an FK5 (J2000.0) star position into the system of the Hipparcos catalogue, assuming zero Hipparcos proper motion.

Status: support routine.

Notes

  1. This routine converts a star position from the FK5 system to the Hipparcos system, in such a way that the Hipparcos proper motion is zero. Because such a star has, in general, a non-zero proper motion in the FK5 system, the routine requires the date at which the position in the FK5 system was determined.

  2. The TDB date DATE1+DATE2 is a Julian Date, apportioned in any convenient way between the two arguments. For example, JD(TDB)=2450123.7 could be expressed in any of these ways, among others:

        DATE1          DATE2
    
     2450123.7D0        0D0        (JD method)
      2451545D0      -1421.3D0     (J2000 method)
     2400000.5D0     50123.2D0     (MJD method)
     2450123.5D0       0.2D0       (date & time method)
    

    The JD method is the most natural and convenient to use in cases where the loss of several decimal digits of resolution is acceptable. The J2000 method is best matched to the way the argument is handled internally and will deliver the optimum resolution. The MJD method and the date & time methods are both good compromises between resolution and convenience.

  3. The FK5 to Hipparcos transformation is modeled as a pure rotation and spin; zonal errors in the FK5 catalogue are not taken into account.

  4. The position returned by this routine is in the Hipparcos reference system but at date DATE1+DATE2.

  5. See also FK52H, H2FK5, HFK5Z.

Reference

  • F. Mignard & M. Froeschle, Astron. Astrophys. 354, 732-739 (2000).

History

  • IAU SOFA revision: 2012 September 5

Arguments

TypeIntentOptionalAttributesName
real(kind=wp), intent(in) :: r5

FK5 RA (radians), equinox J2000.0, at date

real(kind=wp), intent(in) :: d5

FK5 Dec (radians), equinox J2000.0, at date

real(kind=wp), intent(in) :: date1

TDB date (Notes 1,2)

real(kind=wp), intent(in) :: date2

TDB date (Notes 1,2)

real(kind=wp), intent(out) :: rh

Hipparcos RA (radians)

real(kind=wp), intent(out) :: dh

Hipparcos Dec (radians)


Calls

proc~~fk5hz~~CallsGraph proc~fk5hz FK5HZ proc~sxp SXP proc~fk5hz->proc~sxp proc~rv2m RV2M proc~fk5hz->proc~rv2m proc~c2s C2S proc~fk5hz->proc~c2s proc~rxp RXP proc~fk5hz->proc~rxp proc~fk5hip FK5HIP proc~fk5hz->proc~fk5hip proc~s2c S2C proc~fk5hz->proc~s2c proc~trxp TRXP proc~fk5hz->proc~trxp proc~anp ANP proc~fk5hz->proc~anp proc~fk5hip->proc~rv2m proc~trxp->proc~rxp proc~tr TR proc~trxp->proc~tr

Contents

Source Code


Source Code

    subroutine FK5HZ ( r5, d5, date1, date2, rh, dh )

    implicit none

    real(wp),intent(in) :: r5 !! FK5 RA (radians), equinox J2000.0, at date
    real(wp),intent(in) :: d5 !! FK5 Dec (radians), equinox J2000.0, at date
    real(wp),intent(in) :: date1 !! TDB date (Notes 1,2)
    real(wp),intent(in) :: date2 !! TDB date (Notes 1,2)
    real(wp),intent(out) :: rh !! Hipparcos RA (radians)
    real(wp),intent(out) :: dh !! Hipparcos Dec (radians)

    real(wp) :: t, p5e(3), r5h(3,3), s5h(3), vst(3), rst(3,3), &
                p5(3), ph(3), w

    !  Interval from given date to fundamental epoch J2000.0 (JY).
    t = - ( ( date1-dj00 ) + date2 ) / djy

    !  FK5 barycentric position vector.
    call S2C ( r5, d5, p5e )

    !  FK5 to Hipparcos orientation matrix and spin vector.
    call FK5HIP ( r5h, s5h )

    !  Accumulated Hipparcos wrt FK5 spin over that interval.
    call SXP ( t, s5h, vst )

    !  Express the accumulated spin as a rotation matrix.
    call RV2M ( vst, rst )

    !  Derotate the vector's FK5 axes back to date.
    call TRXP ( rst, p5e, p5 )

    !  Rotate the vector into the Hipparcos system.
    call RXP ( r5h, p5, ph )

    !  Hipparcos vector to spherical.
    call C2S ( ph, w, dh )
    rh = ANP ( w )

    end subroutine FK5HZ