Transforms
Contains functions for transforming positions to various reference frames.
Source:
Core/Transforms.js, line 42
Members
-
staticTransforms.earthOrientationParameters :EarthOrientationParameters
-
The source of Earth Orientation Parameters (EOP) data, used for computing the transformation between the Fixed and ICRF axes. By default, zero values are used for all EOP values, yielding a reasonable but not completely accurate representation of the ICRF axes.
-
staticTransforms.iau2006XysData :Iau2006XysData
-
The source of IAU 2006 XYS data, used for computing the transformation between the Fixed and ICRF axes.
Methods
-
staticTransforms.computeFixedToIcrfMatrix(date, result) → Matrix3
-
Computes a rotation matrix to transform a point or vector from the Earth-Fixed frame axes (ITRF) to the International Celestial Reference Frame (GCRF/ICRF) inertial frame axes at a given time. This function may return undefined if the data necessary to do the transformation is not yet loaded.
Name Type Description date
JulianDate The time at which to compute the rotation matrix. result
Matrix3 optional The object onto which to store the result. If this parameter is not specified, a new instance is created and returned. Returns:
The rotation matrix, or undefined if the data necessary to do the transformation is not yet loaded.Example:
// Transform a point from the ICRF axes to the Fixed axes. var now = new Cesium.JulianDate(); var pointInFixed = new Cesium.Cartesian3(...); var fixedToIcrf = Cesium.Transforms.computeIcrfToFixedMatrix(now); var pointInInertial; if (Cesium.defined(fixedToIcrf)) { pointInInertial = Cesium.Matrix3.multiplyByVector(fixedToIcrf, pointInFixed); }
See:
Source: Core/Transforms.js, line 463 -
staticTransforms.computeIcrfToFixedMatrix(date, result) → Matrix3
-
Computes a rotation matrix to transform a point or vector from the International Celestial Reference Frame (GCRF/ICRF) inertial frame axes to the Earth-Fixed frame axes (ITRF) at a given time. This function may return undefined if the data necessary to do the transformation is not yet loaded.
Name Type Description date
JulianDate The time at which to compute the rotation matrix. result
Matrix3 optional The object onto which to store the result. If this parameter is not specified, a new instance is created and returned. Returns:
The rotation matrix, or undefined if the data necessary to do the transformation is not yet loaded.Example:
//Set the view to the inertial frame. function updateAndRender() { var now = new Cesium.JulianDate(); scene.initializeFrame(); var icrfToFixed = Cesium.Transforms.computeIcrfToFixedMatrix(now); if (Cesium.defined(icrfToFixed)) { scene.camera.transform = Cesium.Matrix4.fromRotationTranslation(icrfToFixed, Cesium.Cartesian3.ZERO); } scene.render(); Cesium.requestAnimationFrame(updateAndRender); } updateAndRender();
See:
Source: Core/Transforms.js, line 417 -
staticTransforms.computeTemeToPseudoFixedMatrix(date, result) → Matrix3
-
Computes a rotation matrix to transform a point or vector from True Equator Mean Equinox (TEME) axes to the pseudo-fixed axes at a given time. This method treats the UT1 time standard as equivalent to UTC.
Name Type Description date
JulianDate The time at which to compute the rotation matrix. result
Matrix3 optional The object onto which to store the result. Returns:
The modified result parameter or a new Matrix3 instance if none was provided.Example:
//Set the view to in the inertial frame. scene.preRender.addEventListener(function(scene, time) { var now = new Cesium.JulianDate(); scene.camera.transform = Cesium.Matrix4.fromRotationTranslation(Cesium.Transforms.computeTemeToPseudoFixedMatrix(now), Cesium.Cartesian3.ZERO); });
Source: Core/Transforms.js, line 277 -
staticTransforms.eastNorthUpToFixedFrame(origin, ellipsoid, result) → Matrix4
-
Computes a 4x4 transformation matrix from a reference frame with an east-north-up axes centered at the provided origin to the provided ellipsoid's fixed reference frame. The local axes are defined as:
- The
x
axis points in the local east direction. - The
y
axis points in the local north direction. - The
z
axis points in the direction of the ellipsoid surface normal which passes through the position.
Name Type Default Description origin
Cartesian3 The center point of the local reference frame. ellipsoid
Ellipsoid Ellipsoid.WGS84
optional The ellipsoid whose fixed frame is used in the transformation. result
Matrix4 optional The object onto which to store the result. Returns:
The modified result parameter or a new Matrix4 instance if none was provided.Example:
// Get the transform from local east-north-up at cartographic (0.0, 0.0) to Earth's fixed frame. var ellipsoid = Cesium.Ellipsoid.WGS84; var center = ellipsoid.cartographicToCartesian(Cesium.Cartographic.ZERO); var transform = Cesium.Transforms.eastNorthUpToFixedFrame(center);
Source: Core/Transforms.js, line 71 - The
-
staticTransforms.northEastDownToFixedFrame(origin, ellipsoid, result) → Matrix4
-
Computes a 4x4 transformation matrix from a reference frame with an north-east-down axes centered at the provided origin to the provided ellipsoid's fixed reference frame. The local axes are defined as:
- The
x
axis points in the local north direction. - The
y
axis points in the local east direction. - The
z
axis points in the opposite direction of the ellipsoid surface normal which passes through the position.
Name Type Default Description origin
Cartesian3 The center point of the local reference frame. ellipsoid
Ellipsoid Ellipsoid.WGS84
optional The ellipsoid whose fixed frame is used in the transformation. result
Matrix4 optional The object onto which to store the result. Returns:
The modified result parameter or a new Matrix4 instance if none was provided.Example:
// Get the transform from local north-east-down at cartographic (0.0, 0.0) to Earth's fixed frame. var ellipsoid = Cesium.Ellipsoid.WGS84; var center = ellipsoid.cartographicToCartesian(Cesium.Cartographic.ZERO); var transform = Cesium.Transforms.northEastDownToFixedFrame(center);
Source: Core/Transforms.js, line 175 - The
-
staticTransforms.pointToWindowCoordinates(modelViewProjectionMatrix, viewportTransformation, point, result) → Cartesian2
-
Transform a point from model coordinates to window coordinates.
Name Type Description modelViewProjectionMatrix
Matrix4 The 4x4 model-view-projection matrix. viewportTransformation
Matrix4 The 4x4 viewport transformation. point
Cartesian3 The point to transform. result
Cartesian2 optional The object onto which to store the result. Returns:
The modified result parameter or a new Cartesian2 instance if none was provided. -
staticTransforms.preloadIcrfFixed(timeInterval) → Promise
-
Preloads the data necessary to transform between the ICRF and Fixed axes, in either direction, over a given interval. This function returns a promise that, when resolved, indicates that the preload has completed.
Name Type Description timeInterval
TimeInterval The interval to preload. Returns:
A promise that, when resolved, indicates that the preload has completed and evaluation of the transformation between the fixed and ICRF axes will no longer return undefined for a time inside the interval.Example:
var interval = new Cesium.TimeInterval(...); when(preloadIcrfFixed(interval), function() { // the data is now loaded });
See:
Source: Core/Transforms.js, line 375