7-Parameter Helmert Transformation (Small Angle Approximation)
The 7-parameter Helmert transformation performs a translation in the three principal directions of an earth-centered, earth-fixed coordinate system, as well as rotations around those axes and a scaling of the coordinates.
Type
type: helmert_7param_small_angle
Parameter Estimation
This operator uses linear least squares estimation with the small-angle approximation for rotation matrices. This approach is valid when rotation angles are small (typically < 1 arcsecond) and provides a closed-form solution.
For transformations involving large rotations, use Helmert7Param which estimates parameters using the full rotation matrix iteratively.
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
convention |
string |
Yes | - | Rotation convention (position_vector or coordinate_frame) |
x |
float |
No | 0.0 | Translation in X direction (meters) |
y |
float |
No | 0.0 | Translation in Y direction (meters) |
z |
float |
No | 0.0 | Translation in Z direction (meters) |
rx |
float |
No | 0.0 | Rotation about X axis (arc seconds) |
ry |
float |
No | 0.0 | Rotation about Y axis (arc seconds) |
rz |
float |
No | 0.0 | Rotation about Z axis (arc seconds) |
s |
float |
No | 0.0 | Scale factor (ppm) |
small_angle_approximation |
bool |
No | true |
Use small angle approximation for rotations |
Example
operators:
- name: ITRF to ETRS89
type: helmert_7param_small_angle
convention: coordinate_frame
x: 0.5
y: 1.2
z: -0.9
rx: 0.001
ry: 0.002
rz: 0.003
s: 0.005
Mathematical Background
Forward Transformation
A coordinate in vector \(\mathbf{V}_a\) is transformed into vector \(\mathbf{V}_b\) using:
Where:
- \(\mathbf{T} = (x, y, z)^T\) is the translation vector
- \(s\) is the scale factor in parts per million (ppm)
- \(\mathbf{R}\) is the \(3 \times 3\) rotation matrix
Rotation Matrix
Using the small angle approximation:
Where \(r_x, r_y, r_z\) are the rotation angles in radians.
Rotation Convention
Two conventions exists for the rotation matrix: Position Vector and Coordinate Frame. The above formulation is using the Position Vector convention. Transposing the rotation matrix \(\mathbf{R}\) changes the convention:
Inverse Transformation
The inverse transformation is given by:
Where \(\mathbf{R}^{-1} = \mathbf{R}^T\) for proper rotation matrices.
Parameter Estimation
The seven parameters are estimated using a linear least squares adjustment with the small-angle approximation for rotations.
For each observation \(i\), the design matrix is constructed as:
For position vector convention:
For coordinate frame convention:
The design matrix row for observation \(i\) is:
The observation equation is:
Where \(\mathbf{\beta} = [x, y, z, k, \beta_4, \beta_5, \beta_6]^T\) and \(k = 1 + s \cdot 10^{-6}\).
The parameters are estimated using weighted least squares:
The scale and rotation parameters are then derived: