Astro-PAL
view release on metacpan or search on metacpan
erfasrc/src/pmsafe.c view on Meta::CPAN
** 2 = excessive velocity (Note 7)
** 4 = solution didn't converge (Note 8)
** else = binary logical OR of the above warnings
**
** Notes:
**
** 1) The starting and ending TDB epochs ep1a+ep1b and ep2a+ep2b are
** Julian Dates, apportioned in any convenient way between the two
** parts (A and B). For example, JD(TDB)=2450123.7 could be
** expressed in any of these ways, among others:
**
** epNa epNb
**
** 2450123.7 0.0 (JD method)
** 2451545.0 -1421.3 (J2000 method)
** 2400000.5 50123.2 (MJD method)
** 2450123.5 0.2 (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.
**
** 2) In accordance with normal star-catalog conventions, the object's
** right ascension and declination are freed from the effects of
** secular aberration. The frame, which is aligned to the catalog
** equator and equinox, is Lorentzian and centered on the SSB.
**
** The proper motions are the rate of change of the right ascension
** and declination at the catalog epoch and are in radians per TDB
** Julian year.
**
** The parallax and radial velocity are in the same frame.
**
** 3) Care is needed with units. The star coordinates are in radians
** and the proper motions in radians per Julian year, but the
** parallax is in arcseconds.
**
** 4) The RA proper motion is in terms of coordinate angle, not true
** angle. If the catalog uses arcseconds for both RA and Dec proper
** motions, the RA proper motion will need to be divided by cos(Dec)
** before use.
**
** 5) Straight-line motion at constant speed, in the inertial frame, is
** assumed.
**
** 6) An extremely small (or zero or negative) parallax is overridden
** to ensure that the object is at a finite but very large distance,
** but not so large that the proper motion is equivalent to a large
** but safe speed (about 0.1c using the chosen constant). A warning
** status of 1 is added to the status if this action has been taken.
**
** 7) If the space velocity is a significant fraction of c (see the
** constant VMAX in the function eraStarpv), it is arbitrarily set
** to zero. When this action occurs, 2 is added to the status.
**
** 8) The relativistic adjustment carried out in the eraStarpv function
** involves an iterative calculation. If the process fails to
** converge within a set number of iterations, 4 is added to the
** status.
**
** Called:
** eraSeps angle between two points
** eraStarpm update star catalog data for space motion
**
** Copyright (C) 2013-2020, NumFOCUS Foundation.
** Derived, with permission, from the SOFA library. See notes at end of file.
*/
{
/* Minimum allowed parallax (arcsec) */
const double PXMIN = 5e-7;
/* Factor giving maximum allowed transverse speed of about 1% c */
const double F = 326.0;
int jpx, j;
double pm, px1a;
/* Proper motion in one year (radians). */
pm = eraSeps(ra1, dec1, ra1+pmr1, dec1+pmd1);
/* Override the parallax to reduce the chances of a warning status. */
jpx = 0;
px1a = px1;
pm *= F;
if (px1a < pm) {jpx = 1; px1a = pm;}
if (px1a < PXMIN) {jpx = 1; px1a = PXMIN;}
/* Carry out the transformation using the modified parallax. */
j = eraStarpm(ra1, dec1, pmr1, pmd1, px1a, rv1,
ep1a, ep1b, ep2a, ep2b,
ra2, dec2, pmr2, pmd2, px2, rv2);
/* Revise and return the status. */
if ( !(j%2) ) j += jpx;
return j;
/* Finished. */
}
/*----------------------------------------------------------------------
**
**
** Copyright (C) 2013-2020, NumFOCUS Foundation.
** All rights reserved.
**
** This library is derived, with permission, from the International
** Astronomical Union's "Standards of Fundamental Astronomy" library,
** available from http://www.iausofa.org.
**
** The ERFA version is intended to retain identical functionality to
** the SOFA library, but made distinct through different function and
** file names, as set out in the SOFA license conditions. The SOFA
** original has a role as a reference standard for the IAU and IERS,
** and consequently redistribution is permitted only in its unaltered
** state. The ERFA version is not subject to this restriction and
** therefore can be included in distributions which do not support the
( run in 0.782 second using v1.01-cache-2.11-cpan-71847e10f99 )