IERS_B¶
-
class
astropy.utils.iers.
IERS_B
(data=None, masked=False, names=None, dtype=None, meta=None, copy=True, rows=None, copy_indices=True, units=None, descriptions=None, **kwargs)[source]¶ Bases:
astropy.utils.iers.IERS
IERS Table class targeted to IERS B, provided by IERS itself.
These are final values; see https://www.iers.org/IERS/EN/Home/home_node.html
Notes
If the package IERS B file (
`iers.IERS_B_FILE
) is out of date, a new version can be downloaded fromiers.IERS_B_URL
.Attributes Summary
Cached table, returned if
open
is called without arguments.Methods Summary
dcip_source
(i)Set CIP correction source flag for entries in IERS table
pm_source
(i)Set PM source flag for entries in IERS table
read
([file, readme, data_start])Read IERS-B table from a eopc04_iau2000.* file provided by IERS.
Set UT1-UTC source flag for entries in IERS table
Attributes Documentation
-
iers_table
= <IERS_B length=21611> year month day MJD PM_x PM_y ... e_PM_x e_PM_y e_UT1_UTC e_LOD e_dX_2000A e_dY_2000A d arcsec arcsec ... arcsec arcsec s s arcsec arcsec int64 int64 int64 float64 float64 float64 ... float64 float64 float64 float64 float64 float64 ----- ----- ----- ------- --------- -------- ... ------- ------- --------- ------- ---------- ---------- 1962 1 1 37665.0 -0.0127 0.213 ... 0.03 0.03 0.002 0.0014 0.004774 0.002 1962 1 2 37666.0 -0.0159 0.2141 ... 0.03 0.03 0.002 0.0014 0.004774 0.002 1962 1 3 37667.0 -0.019 0.2152 ... 0.03 0.03 0.002 0.0014 0.004774 0.002 1962 1 4 37668.0 -0.021999 0.216301 ... 0.03 0.03 0.002 0.0014 0.004774 0.002 1962 1 5 37669.0 -0.024799 0.217301 ... 0.03 0.03 0.002 0.0014 0.004774 0.002 1962 1 6 37670.0 -0.027599 0.218301 ... 0.03 0.03 0.002 0.0014 0.004774 0.002 1962 1 7 37671.0 -0.030199 0.219301 ... 0.03 0.03 0.002 0.0014 0.004774 0.002 1962 1 8 37672.0 -0.032798 0.220202 ... 0.03 0.03 0.002 0.0014 0.004774 0.002 ... ... ... ... ... ... ... ... ... ... ... ... ... 2021 2 23 59268.0 0.049836 0.365309 ... 2.3e-05 2.1e-05 1.25e-05 7.3e-06 0.000111 0.000114 2021 2 24 59269.0 0.049396 0.365588 ... 2.3e-05 2.1e-05 1.32e-05 7.2e-06 0.000113 0.000116 2021 2 25 59270.0 0.049801 0.366059 ... 2.3e-05 2e-05 1.3e-05 7.2e-06 0.000114 0.000117 2021 2 26 59271.0 0.050306 0.367069 ... 2.3e-05 2e-05 1.28e-05 7.2e-06 0.000116 0.000118 2021 2 27 59272.0 0.050431 0.368528 ... 2.3e-05 2e-05 1.29e-05 7.2e-06 0.000117 0.000118 2021 2 28 59273.0 0.050498 0.370227 ... 2.4e-05 2e-05 1.29e-05 6.5e-06 0.000118 0.000117 2021 3 1 59274.0 0.050616 0.371982 ... 2.4e-05 2e-05 1.26e-05 7.2e-06 0.00012 0.000117 2021 3 2 59275.0 0.050706 0.373771 ... 2.4e-05 2e-05 1.27e-05 7.2e-06 0.000121 0.000116¶ Cached table, returned if
open
is called without arguments.
Methods Documentation
-
classmethod
read
(file=None, readme=None, data_start=14)[source]¶ Read IERS-B table from a eopc04_iau2000.* file provided by IERS.
- Parameters
- filestr
full path to ascii file holding IERS-B data. Defaults to package version,
iers.IERS_B_FILE
.- readmestr
full path to ascii file holding CDS-style readme. Defaults to package version,
iers.IERS_B_README
.- data_startint
starting row. Default is 14, appropriate for standard IERS files.
- Returns
IERS_B
class instance
-