Changeset 5968 for trunk/doc/pslib/eoc_testing.txt
- Timestamp:
- Jan 11, 2006, 11:15:27 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/doc/pslib/eoc_testing.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/pslib/eoc_testing.txt
r5908 r5968 132 132 9. Earth rotation 133 133 134 (a) Generate the transformation: 135 136 psSphereRot *earthRot = psSphereRot_TEOtoCEO(time); // This is TEO->CEO 134 (a) Get the tidal correction: 135 136 psEarthPole *tidalCorr = psEOC_PolarTideCorr(time); 137 138 (b) Generate the transformation: 139 140 psSphereRot *earthRot = psSphereRot_TEOtoCEO(time, tidalCorr); // This is TEO->CEO 137 141 138 142 Check that the rotation quaternion of earthRot is: … … 145 149 Within psSphereRot_TEOtoCEO, the Earth rotation angle should be 428251.4641536639 degrees 146 150 147 ( b) Apply the rotation to the position:151 (c) Apply the rotation to the position: 148 152 149 153 psSphereRot *earthRotInv = psSphereRotInvert(earthRot); // This is CEO->TEO … … 167 171 earthPM->y += nutationCorr->y; 168 172 earthPM->s += nutationCorr->s; 173 174 Add the tidal correction: 175 176 earthPM->x += tidalCorr->x; 177 earthPM->y += tidalCorr->y; 169 178 170 179 Check that:
Note:
See TracChangeset
for help on using the changeset viewer.
