Sha256: 2a17ccfd5ec8deed9ae3d0f9d7c3d72ce2b783b94f5711c399fa6c5cc5847c92

Contents?: true

Size: 1.7 KB

Versions: 15

Compression:

Stored size: 1.7 KB

Contents

/*global define*/
define(function() {
    "use strict";

    /**
     * A set of Earth Orientation Parameters (EOP) sampled at a time.
     *
     * @alias EarthOrientationParametersSample
     * @constructor
     *
     * @param {Number} xPoleWander The pole wander about the X axis, in radians.
     * @param {Number} yPoleWander The pole wander about the Y axis, in radians.
     * @param {Number} xPoleOffset The offset to the Celestial Intermediate Pole (CIP) about the X axis, in radians.
     * @param {Number} yPoleOffset The offset to the Celestial Intermediate Pole (CIP) about the Y axis, in radians.
     * @param {Number} ut1MinusUtc The difference in time standards, UT1 - UTC, in seconds.
     */
    var EarthOrientationParametersSample = function EarthOrientationParametersSample(xPoleWander, yPoleWander, xPoleOffset, yPoleOffset, ut1MinusUtc) {
        /**
         * The pole wander about the X axis, in radians.
         * @type {Number}
         */
        this.xPoleWander = xPoleWander;

        /**
         * The pole wander about the Y axis, in radians.
         * @type {Number}
         */
        this.yPoleWander = yPoleWander;

        /**
         * The offset to the Celestial Intermediate Pole (CIP) about the X axis, in radians.
         * @type {Number}
         */
        this.xPoleOffset = xPoleOffset;

        /**
         * The offset to the Celestial Intermediate Pole (CIP) about the Y axis, in radians.
         * @type {Number}
         */
        this.yPoleOffset = yPoleOffset;

        /**
         * The difference in time standards, UT1 - UTC, in seconds.
         * @type {Number}
         */
        this.ut1MinusUtc = ut1MinusUtc;
    };

    return EarthOrientationParametersSample;
});

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
cesium-0.25.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.24.1 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.24.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.23.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.22.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.21.1 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.21 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.20.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.19.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.18.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.17.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.16.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.15.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.14.0 app/assets/javascripts/Core/EarthOrientationParametersSample.js
cesium-0.13.2 app/assets/javascripts/Core/EarthOrientationParametersSample.js