Julian Date to Julian Epoch.
Status: support routine.
The Julian Date is supplied in two pieces, in the usual SOFA manner, which is designed to preserve time resolution. The Julian Date is available as a single number by adding DJ1 and DJ2. The maximum resolution is achieved if DJ1 is 2451545D0 (J2000.0).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | dj1 | Julian Date (see note) |
||
real(kind=wp), | intent(in) | :: | dj2 | Julian Date (see note) |
the Julian Epoch.
function EPJ ( dj1, dj2 ) result(jd)
implicit none
real(wp),intent(in) :: dj1 !! Julian Date (see note)
real(wp),intent(in) :: dj2 !! Julian Date (see note)
real(wp) :: jd !! the Julian Epoch.
jd = 2000.0_wp + ( ( dj1-dj00 ) + dj2 ) / djy
end function EPJ