tf2a

erfa.tf2a(s, ihour, imin, sec)[source]

Wrapper for ERFA function eraTf2a.

Parameters
schar array
ihourint array
iminint array
secdouble array
Returns
raddouble array

Notes

The ERFA documentation is below.

- - - - - - - -
 e r a T f 2 a
- - - - - - - -

Convert hours, minutes, seconds to radians.

Given:
   s         char    sign:  '-' = negative, otherwise positive
   ihour     int     hours
   imin      int     minutes
   sec       double  seconds

Returned:
   rad       double  angle in radians

Returned (function value):
             int     status:  0 = OK
                              1 = ihour outside range 0-23
                              2 = imin outside range 0-59
                              3 = sec outside range 0-59.999...

Notes:

1)  The result is computed even if any of the range checks fail.

2)  Negative ihour, imin and/or sec produce a warning status, but
    the absolute value is used in the conversion.

3)  If there are multiple errors, the status value reflects only the
    first, the smallest taking precedence.

Copyright (C) 2013-2019, NumFOCUS Foundation.
Derived, with permission, from the SOFA library.  See notes at end of file.