IauOrientationParameters.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /**
  2. * A structure containing the orientation data computed at a particular time. The data
  3. * represents the direction of the pole of rotation and the rotation about that pole.
  4. * <p>
  5. * These parameters correspond to the parameters in the Report from the IAU/IAG Working Group
  6. * except that they are expressed in radians.
  7. * </p>
  8. *
  9. * @exports IauOrientationParameters
  10. *
  11. * @private
  12. */
  13. function IauOrientationParameters(rightAscension, declination, rotation, rotationRate) {
  14. /**
  15. * The right ascension of the north pole of the body with respect to
  16. * the International Celestial Reference Frame, in radians.
  17. * @type {Number}
  18. *
  19. * @private
  20. */
  21. this.rightAscension = rightAscension;
  22. /**
  23. * The declination of the north pole of the body with respect to
  24. * the International Celestial Reference Frame, in radians.
  25. * @type {Number}
  26. *
  27. * @private
  28. */
  29. this.declination = declination;
  30. /**
  31. * The rotation about the north pole used to align a set of axes with
  32. * the meridian defined by the IAU report, in radians.
  33. * @type {Number}
  34. *
  35. * @private
  36. */
  37. this.rotation = rotation;
  38. /**
  39. * The instantaneous rotation rate about the north pole, in radians per second.
  40. * @type {Number}
  41. *
  42. * @private
  43. */
  44. this.rotationRate = rotationRate;
  45. }
  46. export default IauOrientationParameters;