Parallactic angle for a given hour angle and declination.
All the arguments are angles in radians.
The parallactic angle at a point in the sky is the position angle of the vertical, i.e. the angle between the directions to the north celestial pole and to the zenith respectively.
The result is returned in the range -pi to +pi.
At the pole itself a zero result is returned.
The latitude PHI is pi/2 minus the angle between the Earth's rotation axis and the adopted zenith. In many applications it will be sufficient to use the published geodetic latitude of the site. In very precise (sub-arcsecond) applications, PHI can be corrected for polar motion.
Should the user wish to work with respect to the astronomical zenith rather than the geodetic zenith, PHI will need to be adjusted for deflection of the vertical (often tens of arcseconds), and the zero point of HA will also be affected.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | ha | hour angle |
||
real(kind=wp), | intent(in) | :: | dec | declination |
||
real(kind=wp), | intent(in) | :: | phi | site latitude |
parallactic angle
function HD2PA ( ha, dec, phi ) result(res)
implicit none
real(wp),intent(in) :: ha !! hour angle
real(wp),intent(in) :: dec !! declination
real(wp),intent(in) :: phi !! site latitude
real(wp) :: res !! parallactic angle
real(wp) :: cp, sqsz, cqsz
cp = cos(phi)
sqsz = cp*sin(ha)
cqsz = sin(phi)*cos(dec) - cp*sin(dec)*cos(ha)
if ( sqsz==0.0_wp .and. cqsz==0.0_wp ) cqsz = 1.0_wp
res = atan2(sqsz,cqsz)
end function HD2PA