EOP Commands¶
The eop command group provides access to Earth Orientation Parameters (EOP) data from IERS (International Earth Rotation and Reference Systems Service). EOP data is required for accurate transformations between ECI and ECEF reference frames.
Commands¶
download¶
Download EOP data from IERS and save to file.
Syntax:
Arguments: - FILEPATH - Output file path for EOP data
Options: - --product [standard|c04] - Data product type (required) - standard - Standard rapid EOP data (daily updates, ~1 year of predictions) - c04 - EOP 14 C04 long-term series (high accuracy, historical)
Examples:
Download standard EOP data:
Download C04 long-term series:
Update local EOP file:
Tip
It's usually not necessary to manually download EOP data. If you are using a caching file provider, the package data will automatically download and cache EOP data as needed.
get-utc-ut1¶
Get the UTC-UT1 offset (ΔUT1) at a specific epoch.
Syntax:
Arguments: - EPOCH - Epoch to query (ISO-8601 format)
Options: - --product [standard|c04] - EOP data product (default: standard) - --source [default|file] - EOP data source (default: default) - --filepath <path> - Custom EOP file path (if --source file)
Examples:
Get ΔUT1 for a specific date:
Use custom EOP file:
Use C04 product:
get-polar-motion¶
Get polar motion parameters (x_p, y_p) at a specific epoch.
Syntax:
Arguments: - EPOCH - Epoch to query (ISO-8601 format)
Options: - --product [standard|c04] - EOP data product (default: standard) - --source [default|file] - EOP data source (default: default) - --filepath <path> - Custom EOP file path (if --source file)
Examples:
Get polar motion parameters:
get-cip-offset¶
Get Celestial Intermediate Pole (CIP) offset (dX, dY) at a specific epoch.
Syntax:
Arguments: - EPOCH - Epoch to query (ISO-8601 format)
Options: - --product [standard|c04] - EOP data product (default: standard) - --source [default|file] - EOP data source (default: default) - --filepath <path> - Custom EOP file path (if --source file)
Examples:
Get CIP offset:
get-lod¶
Get Length of Day (LOD) variation at a specific epoch.
Syntax:
Arguments: - EPOCH - Epoch to query (ISO-8601 format)
Options: - --product [standard|c04] - EOP data product (default: standard) - --source [default|file] - EOP data source (default: default) - --filepath <path> - Custom EOP file path (if --source file)
Examples:
Get LOD variation:
See Also¶
- Earth Orientation Data - Conceptual overview
- Reference Frames - ECI/ECEF transformations
- Transform CLI - Frame transformations (use EOP)
- Time CLI - UT1 time system
- EOP API - Python EOP provider classes