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
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=21688> year month day MJD PM_x ... e_UT1_UTC e_LOD e_dX_2000A e_dY_2000A d arcsec ... s s arcsec arcsec int64 int64 int64 float64 float64 ... float64 float64 float64 float64 ----- ----- ----- ------- --------- ... --------- ------- ---------- ---------- 1962 1 1 37665.0 -0.0127 ... 0.002 0.0014 0.004774 0.002 1962 1 2 37666.0 -0.0159 ... 0.002 0.0014 0.004774 0.002 1962 1 3 37667.0 -0.019 ... 0.002 0.0014 0.004774 0.002 1962 1 4 37668.0 -0.021999 ... 0.002 0.0014 0.004774 0.002 1962 1 5 37669.0 -0.024799 ... 0.002 0.0014 0.004774 0.002 1962 1 6 37670.0 -0.027599 ... 0.002 0.0014 0.004774 0.002 1962 1 7 37671.0 -0.030199 ... 0.002 0.0014 0.004774 0.002 1962 1 8 37672.0 -0.032798 ... 0.002 0.0014 0.004774 0.002 1962 1 9 37673.0 -0.035198 ... 0.002 0.0014 0.004774 0.002 ... ... ... ... ... ... ... ... ... ... 2021 5 9 59343.0 0.120432 ... 1.05e-05 6.5e-06 3.7e-05 3e-05 2021 5 10 59344.0 0.122013 ... 1.12e-05 6.5e-06 3.7e-05 3e-05 2021 5 11 59345.0 0.123229 ... 1.11e-05 6.5e-06 3.7e-05 3.1e-05 2021 5 12 59346.0 0.12457 ... 1.07e-05 6.5e-06 3.7e-05 3e-05 2021 5 13 59347.0 0.126398 ... 1.04e-05 6.4e-06 3.7e-05 3e-05 2021 5 14 59348.0 0.128393 ... 1.04e-05 6.5e-06 3.7e-05 2.9e-05 2021 5 15 59349.0 0.130276 ... 1.05e-05 6.5e-06 3.7e-05 2.9e-05 2021 5 16 59350.0 0.132466 ... 1.06e-05 6.5e-06 3.7e-05 2.8e-05 2021 5 17 59351.0 0.134899 ... 1.11e-05 6.5e-06 3.7e-05 2.7e-05 2021 5 18 59352.0 0.137096 ... 1.11e-05 6.5e-06 3.7e-05 2.7e-05¶
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
- file
python:str
full path to ascii file holding IERS-B data. Defaults to package version,
iers.IERS_B_FILE
.- readme
python:str
full path to ascii file holding CDS-style readme. Defaults to package version,
iers.IERS_B_README
.- data_start
python:int
starting row. Default is 14, appropriate for standard IERS files.
- file
- Returns
IERS_B
class instance
-