arika 0.2.0

Coordinate frames, reference transforms, epochs, and celestial body ephemerides for orbital mechanics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! IAU 2009 WGCCRE rotation model for the Sun.

use crate::rotation::IauRotationModel;

/// IAU 2009 rotation model for the Sun.
pub const SUN: IauRotationModel = IauRotationModel {
    alpha0: 286.13,
    alpha1: 0.0,
    delta0: 63.87,
    delta1: 0.0,
    w0: 84.176,
    wd: 14.1844000,
};