![]() |
SuperNOVAS C++ API v1.6
High-precision C/C++ astrometry library
|
Various commonly used routines used throughout the SuperNOVAS library. More...
Functions | |
| double | d_light (const double *pos_src, const double *pos_body) |
| Returns the difference in light-time, for a star, between the barycenter of the solar system and the observer (or the geocenter) (Usage A). | |
| PROTECTED void | novas_debug (enum novas_debug_mode mode) |
| Enables or disables reporting errors and traces to the standard error stream. | |
| double | novas_equ_sep (double ra1, double dec1, double ra2, double dec2) |
| Returns the angular separation of two equatorial locations on a sphere. | |
| enum novas_debug_mode | novas_get_debug_mode () |
| Returns the current, thread-local, mode for reporting errors encountered (and traces). | |
| double | novas_norm_ang (double angle) |
| Returns the normalized angle in the [0:2π) range. | |
| int | novas_print_dms (double degrees, enum novas_separator_type sep, int decimals, char *restrict buf, int len) |
| Prints an angle in degrees as [-]ddd:mm:ss[.S...] into the specified buffer, with up to nanosecond precision. | |
| int | novas_print_hms (double hours, enum novas_separator_type sep, int decimals, char *restrict buf, int len) |
| Prints a time in hours as hh:mm:ss[.S...] into the specified buffer, with up to nanosecond precision. | |
| double | novas_sep (double lon1, double lat1, double lon2, double lat2) |
| Returns the angular separation of two locations on a sphere. | |
| double | novas_vlen (const double *restrict v) |
| (for internal use only) Calculates the length of a 3-vector | |
| int | radec2vector (double ra, double dec, double dist, double *restrict pos) |
| Converts equatorial spherical coordinates to a vector (equatorial rectangular coordinates). | |
| int | spin (double angle, const double *in, double *out) |
| Transforms a vector from one coordinate system to another with same origin and axes rotated about the z-axis. | |
| short | vector2radec (const double *restrict pos, double *restrict ra, double *restrict dec) |
| Converts an vector in equatorial rectangular coordinates to equatorial spherical coordinates. | |
Variables | |
| int | novas_inv_max_iter = 100 |
| Maximum number of iterations for convergent inverse calculations. | |
Various commonly used routines used throughout the SuperNOVAS library.
| double d_light | ( | const double * | pos_src, |
| const double * | pos_body ) |
Returns the difference in light-time, for a star, between the barycenter of the solar system and the observer (or the geocenter) (Usage A).
Alternatively (Usage B), this function returns the light-time from the observer (or the geocenter) to a point on a light ray that is closest to a specific solar system body. For this purpose, 'pos_src' is the position vector toward observed object, with respect to origin at observer (or the geocenter); 'pos_body' is the position vector of solar system body, with respect to origin at observer (or the geocenter), components in AU; and the returned value is the light time to point on line defined by 'pos' that is closest to solar system body (positive if light passes body before hitting observer, i.e., if 'pos_body' is within 90 degrees of 'pos_src').
NOTES:
| pos_src | Position vector towards observed object, with respect to the SSB (Usage A), or relative to the observer / geocenter (Usage B). |
| pos_body | [AU] Position of observer relative to SSB (Usage A), or position of intermediate solar-system body with respect to the observer / geocenter (Usage B). |
References novas_vlen().
Referenced by grav_planets(), novas_geom_posvel(), and place().
| double novas_equ_sep | ( | double | ra1, |
| double | dec1, | ||
| double | ra2, | ||
| double | dec2 ) |
Returns the angular separation of two equatorial locations on a sphere.
| ra1 | [h] right ascension of first location |
| dec1 | [deg] declination of first location |
| ra2 | [h] right ascension of second location |
| dec2 | [deg] declination of second location |
References novas_sep().
Referenced by novas_object_sep().
| double novas_norm_ang | ( | double | angle | ) |
Returns the normalized angle in the [0:2π) range.
| angle | [rad] an angle in radians. |
References TWOPI.
Referenced by fund_args().
| int novas_print_dms | ( | double | degrees, |
| enum novas_separator_type | sep, | ||
| int | decimals, | ||
| char *restrict | buf, | ||
| int | len ) |
Prints an angle in degrees as [-]ddd:mm:ss[.S...] into the specified buffer, with up to nanosecond precision.
The degrees component is always printed as 4 characters (up to 3 digits plus optional negative sign), so the output is always aligned. If positive values are expected to be explicitly signed also, the caller may simply put the '+' sign into the leading byte.
NaN and infinite values, are printed as their standard floating-point representations.
| degrees | [deg] angle value | |
| sep | Type of separators to use between or after components. If the separator value is outside of the enum range, it will default to using colons. | |
| decimals | Requested number of decimal places to print for the seconds [0:9]. | |
| [out] | buf | String buffer in which to print DMS string, represented in the [-180:180) degree range. |
| len | Maximum number of bytes that may be written into the output buffer, including termination. |
References NOVAS_SEP_COLONS, NOVAS_SEP_SPACES, NOVAS_SEP_UNITS, and NOVAS_SEP_UNITS_AND_SPACES.
Referenced by supernovas::Angle::to_string().
| int novas_print_hms | ( | double | hours, |
| enum novas_separator_type | sep, | ||
| int | decimals, | ||
| char *restrict | buf, | ||
| int | len ) |
Prints a time in hours as hh:mm:ss[.S...] into the specified buffer, with up to nanosecond precision.
NaN and infinite values, are printed as their standard floating-point representations.
| hours | [h] time value | |
| sep | Type of separators to use between or after components. If the separator value is outside of the enum range, it will default to using colons. | |
| decimals | Requested number of decimal places to print for the seconds [0:9]. | |
| [out] | buf | String buffer in which to print HMS string, represented in the [0:24) hour range. |
| len | Maximum number of bytes that may be written into the output buffer, including termination. |
References NOVAS_SEP_COLONS, NOVAS_SEP_SPACES, NOVAS_SEP_UNITS, and NOVAS_SEP_UNITS_AND_SPACES.
Referenced by supernovas::TimeAngle::to_string().
| double novas_sep | ( | double | lon1, |
| double | lat1, | ||
| double | lon2, | ||
| double | lat2 ) |
Returns the angular separation of two locations on a sphere.
It uses the Vincenty formula for accurate results across all locations on the sphere.
NOTES:
REFERENCES:
| lon1 | [deg] longitude of first location |
| lat1 | [deg] latitude of first location |
| lon2 | [deg] longitude of second location |
| lat2 | [deg] latitude of second location |
Referenced by supernovas::Spherical::distance_to(), and novas_equ_sep().
| double novas_vlen | ( | const double *restrict | v | ) |
(for internal use only) Calculates the length of a 3-vector
| v | Pointer to a 3-component (x, y, z) vector. The argument cannot be NULL |
Referenced by aberration(), supernovas::Vector::abs(), bary2obs(), cio_basis(), d_light(), grav_planets(), grav_undo_planets(), grav_vec(), limb_angle(), novas_approx_sky_pos(), novas_clock_skew(), novas_geom_to_app(), novas_helio_dist(), novas_moon_elp_sky_pos_fp(), novas_sky_pos(), novas_solar_illum(), place(), rad_vel2(), and transform_cat().
| int radec2vector | ( | double | ra, |
| double | dec, | ||
| double | dist, | ||
| double *restrict | pos ) |
Converts equatorial spherical coordinates to a vector (equatorial rectangular coordinates).
| ra | [h] Right ascension (hours). | |
| dec | [deg] Declination (degrees). | |
| dist | [AU] Distance (AU) | |
| [out] | pos | [AU] Position 3-vector, equatorial rectangular coordinates (AU). |
Referenced by earth_sun_calc(), gcrs2equ(), novas_app_to_geom(), novas_app_to_hor(), novas_lsr_to_ssb_vel(), novas_ssb_to_lsr_vel(), starvectors(), supernovas::Horizontal::to_apparent(), supernovas::Equatorial::to_system(), and transform_cat().
| int spin | ( | double | angle, |
| const double * | in, | ||
| double * | out ) |
Transforms a vector from one coordinate system to another with same origin and axes rotated about the z-axis.
REFERENCES:
| angle | [deg] Angle of coordinate system rotation, positive counterclockwise when viewed from +z, in degrees. | |
| in | Input position vector. | |
| [out] | out | Position vector expressed in new coordinate system rotated about z by 'angle'. It can be the same vector as the input. |
References TWOPI.
Referenced by cel2ter(), cirs_to_tod(), novas_app_to_geom(), novas_app_to_hor(), novas_hor_to_app(), place(), ter2cel(), and tod_to_cirs().
| short vector2radec | ( | const double *restrict | pos, |
| double *restrict | ra, | ||
| double *restrict | dec ) |
Converts an vector in equatorial rectangular coordinates to equatorial spherical coordinates.
REFERENCES:
| pos | Position 3-vector, equatorial rectangular coordinates. | |
| [out] | ra | [h] Right ascension in hours [0:24] or NAN if the position vector is NULL or a null-vector. It may be NULL if notrequired. |
| [out] | dec | [deg] Declination in degrees [-90:90] or NAN if the position vector is NULL or a null-vector. It may be NULL if not required. |
Referenced by supernovas::AstrometricPosition::as_equatorial(), gcrs2equ(), mean_star(), novas_geom_to_app(), novas_hor_to_app(), novas_moon_elp_sky_pos_fp(), novas_moon_phase(), novas_transform_sky_pos(), place(), supernovas::Apparent::to_horizontal(), and supernovas::Equatorial::to_system().
| int novas_inv_max_iter = 100 |
Maximum number of iterations for convergent inverse calculations.
Most iterative inverse functions should normally converge in a handful of iterations. In some pathological cases more iterations may be required. This variable sets an absolute maximum for the number of iterations in order to avoid runaway (zombie) behaviour. If inverse functions fail to converge, they will return a value indicating an error, and errno should be set to ECANCELED.
Referenced by grav_undo_planets(), light_time2(), mean_star(), novas_inv_refract(), novas_next_moon_phase(), and refract_astro().