EarthOrientationParametersSample.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /**
  2. * A set of Earth Orientation Parameters (EOP) sampled at a time.
  3. *
  4. * @alias EarthOrientationParametersSample
  5. * @constructor
  6. *
  7. * @param {Number} xPoleWander The pole wander about the X axis, in radians.
  8. * @param {Number} yPoleWander The pole wander about the Y axis, in radians.
  9. * @param {Number} xPoleOffset The offset to the Celestial Intermediate Pole (CIP) about the X axis, in radians.
  10. * @param {Number} yPoleOffset The offset to the Celestial Intermediate Pole (CIP) about the Y axis, in radians.
  11. * @param {Number} ut1MinusUtc The difference in time standards, UT1 - UTC, in seconds.
  12. *
  13. * @private
  14. */
  15. function EarthOrientationParametersSample(xPoleWander, yPoleWander, xPoleOffset, yPoleOffset, ut1MinusUtc) {
  16. /**
  17. * The pole wander about the X axis, in radians.
  18. * @type {Number}
  19. */
  20. this.xPoleWander = xPoleWander;
  21. /**
  22. * The pole wander about the Y axis, in radians.
  23. * @type {Number}
  24. */
  25. this.yPoleWander = yPoleWander;
  26. /**
  27. * The offset to the Celestial Intermediate Pole (CIP) about the X axis, in radians.
  28. * @type {Number}
  29. */
  30. this.xPoleOffset = xPoleOffset;
  31. /**
  32. * The offset to the Celestial Intermediate Pole (CIP) about the Y axis, in radians.
  33. * @type {Number}
  34. */
  35. this.yPoleOffset = yPoleOffset;
  36. /**
  37. * The difference in time standards, UT1 - UTC, in seconds.
  38. * @type {Number}
  39. */
  40. this.ut1MinusUtc = ut1MinusUtc;
  41. }
  42. export default EarthOrientationParametersSample;