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: 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 from iers.IERS_B_URL.

See read for instructions on how to read a pre-2023 style IERS B file (usually named eopc04_IAU2000.62-now).

Attributes Summary

iers_table

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.* file provided by IERS.

ut1_utc_source(i)

Set UT1-UTC source flag for entries in IERS table.

Attributes Documentation

iers_table = <IERS_B length=22734>  year month  day   hour   MJD   ... e_dY_2000A e_PM_x_dot e_PM_y_dot  e_LOD                              d    ...   arcsec   arcsec / d arcsec / d    s     int64 int64 int64 int64 float64 ...  float64    float64    float64   float64  ----- ----- ----- ----- ------- ... ---------- ---------- ---------- --------  1962     1     1     0 37665.0 ...      0.002        0.0        0.0   0.0014  1962     1     2     0 37666.0 ...      0.002        0.0        0.0   0.0014  1962     1     3     0 37667.0 ...      0.002        0.0        0.0   0.0014  1962     1     4     0 37668.0 ...      0.002        0.0        0.0   0.0014  1962     1     5     0 37669.0 ...      0.002        0.0        0.0   0.0014  1962     1     6     0 37670.0 ...      0.002        0.0        0.0   0.0014  1962     1     7     0 37671.0 ...      0.002        0.0        0.0   0.0014  1962     1     8     0 37672.0 ...      0.002        0.0        0.0   0.0014  1962     1     9     0 37673.0 ...      0.002        0.0        0.0   0.0014   ...   ...   ...   ...     ... ...        ...        ...        ...      ...  2024     3    21     0 60390.0 ...    7.9e-05    6.6e-05      7e-05 2.68e-05  2024     3    22     0 60391.0 ...    7.3e-05    6.6e-05    7.3e-05 2.67e-05  2024     3    23     0 60392.0 ...    6.8e-05    6.8e-05    7.7e-05 2.71e-05  2024     3    24     0 60393.0 ...    5.9e-05    6.9e-05    7.8e-05 2.75e-05  2024     3    25     0 60394.0 ...    4.9e-05    6.8e-05    7.9e-05 2.67e-05  2024     3    26     0 60395.0 ...    4.3e-05    6.7e-05    7.8e-05 2.58e-05  2024     3    27     0 60396.0 ...    3.9e-05    6.5e-05    7.5e-05 2.56e-05  2024     3    28     0 60397.0 ...    3.6e-05    6.4e-05    9.8e-05 2.57e-05  2024     3    29     0 60398.0 ...    3.6e-05    6.2e-05    8.5e-05 2.51e-05#

Cached table, returned if open is called without arguments.

Methods Documentation

dcip_source(i)[source]#

Set CIP correction source flag for entries in IERS table.

pm_source(i)[source]#

Set PM source flag for entries in IERS table.

classmethod read(file=None, readme=None, data_start=6)[source]#

Read IERS-B table from a eopc04.* 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 6, appropriate for standard IERS files.

Returns:
IERS_B class instance

Notes

To read a pre-2023 style IERS B file (usually named something like eopc04_IAU2000.62-now), do something like this example with an excerpt that is used for testing:

>>> from astropy.utils.iers import IERS_B
>>> from astropy.utils.data import get_pkg_data_filename
>>> old_style_file = get_pkg_data_filename(
...     "tests/data/iers_b_old_style_excerpt",
...     package="astropy.utils.iers")
>>> iers_b = IERS_B.read(
...     old_style_file,
...     readme=get_pkg_data_filename("data/ReadMe.eopc04_IAU2000",
...                                  package="astropy.utils.iers"),
...     data_start=14)
ut1_utc_source(i)[source]#

Set UT1-UTC source flag for entries in IERS table.