Transformation from ecliptic coordinates (mean equinox and ecliptic of date) to ICRS RA,Dec, using a long-term precession model.
Status: support routine.
No assumptions are made about whether the coordinates represent starlight and embody astrometric effects such as parallax or aberration.
The transformation is approximately that from ecliptic longitude and latitude (mean equinox and ecliptic of date) to mean J2000.0 right ascension and declination, with only frame bias (always less than 25 mas) to disturb this classical picture.
The Vondrak et al. (2011, 2012) 400 millennia precession model agrees with the IAU 2006 precession at J2000.0 and stays within 100 microarcseconds during the 20th and 21st centuries. It is accurate to a few arcseconds throughout the historical period, worsening to a few tenths of a degree at the end of the +/- 200,000 year time span.
Vondrak, J., Capitaine, N. and Wallace, P., 2011, New precession expressions, valid for long time intervals, Astron.Astrophys. 534, A22
Vondrak, J., Capitaine, N. and Wallace, P., 2012, New precession expressions, valid for long time intervals (Corrigendum), Astron.Astrophys. 541, C1
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | epj | Julian epoch (TT) |
||
real(kind=wp), | intent(in) | :: | dl | ecliptic longitude (radians) |
||
real(kind=wp), | intent(in) | :: | db | ecliptic latitude (radians) |
||
real(kind=wp), | intent(out) | :: | dr | ICRS right ascension (radians) |
||
real(kind=wp), | intent(out) | :: | dd | ICRS declination (radians) |
subroutine LTECEQ ( epj, dl, db, dr, dd )
implicit none
real(wp),intent(in) :: epj !! Julian epoch (TT)
real(wp),intent(in) :: dl !! ecliptic longitude (radians)
real(wp),intent(in) :: db !! ecliptic latitude (radians)
real(wp),intent(out) :: dr !! ICRS right ascension (radians)
real(wp),intent(out) :: dd !! ICRS declination (radians)
real(wp) :: rm(3,3), v1(3), v2(3), a, b
! Spherical to Cartesian.
call S2C ( dl, db, v1 )
! Rotation matrix, ICRS equatorial to ecliptic.
call LTECM ( epj, rm )
! The transformation from ecliptic to ICRS.
call TRXP ( rm, v1, v2 )
! Cartesian to spherical.
call C2S ( v2, a, b )
! Express in conventional ranges.
dr = ANP ( a )
dd = ANPM ( b )
end subroutine LTECEQ