diff --git a/functions/apply.html b/functions/apply.html index 2a13ebc..46da665 100644 --- a/functions/apply.html +++ b/functions/apply.html @@ -12,4 +12,4 @@
apply((a, b) => a + (b - a) / 2, [1, 2, 3], [4, 5, 6]); // [2.5, 3.5, 4.5]
 
-
+
diff --git a/functions/cross.html b/functions/cross.html index 39ce72d..9b48e92 100644 --- a/functions/cross.html +++ b/functions/cross.html @@ -2,4 +2,4 @@

Parameters

Returns Vector

The resulting vector.

-
+
diff --git a/functions/degrees.html b/functions/degrees.html index e8a0fa8..c9db615 100644 --- a/functions/degrees.html +++ b/functions/degrees.html @@ -2,4 +2,4 @@

Parameters

Returns number

Angle in degrees.

https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/deg.m

-
+
diff --git a/functions/delta.html b/functions/delta.html index 5a4587b..9cee598 100644 --- a/functions/delta.html +++ b/functions/delta.html @@ -8,4 +8,4 @@
  • frame: Matrix = Z_AXIS_NORTH

    Coordinate frame in which the vectors are decomposed.

  • Returns Vector

    Position vector in meters from A to B, decomposed in E.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/n_EA_E_and_n_EB_E2p_AB_E.m

    -
    +
    diff --git a/functions/destination.html b/functions/destination.html index e7223f5..f9b5b4b 100644 --- a/functions/destination.html +++ b/functions/destination.html @@ -7,4 +7,4 @@

    Returns [to: Vector, toDepth: number]

    An n-vector of position B, and depth of position B in meters, relative to the ellipsoid.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/n_EA_E_and_p_AB_E2n_EB_E.m

    -
    +
    diff --git a/functions/dot.html b/functions/dot.html index f6987cf..d0ed7b9 100644 --- a/functions/dot.html +++ b/functions/dot.html @@ -2,4 +2,4 @@

    Parameters

    Returns number

    The resulting scalar.

    -
    +
    diff --git a/functions/eulerXYZToRotationMatrix.html b/functions/eulerXYZToRotationMatrix.html index 499bb62..5c1a2aa 100644 --- a/functions/eulerXYZToRotationMatrix.html +++ b/functions/eulerXYZToRotationMatrix.html @@ -4,4 +4,4 @@
  • z: number

    Rotation around the z-axis in radians.

  • Returns Matrix

    A rotation matrix.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/xyz2R.m

    -
    +
    diff --git a/functions/eulerZYXToRotationMatrix.html b/functions/eulerZYXToRotationMatrix.html index d42805b..63e0cfc 100644 --- a/functions/eulerZYXToRotationMatrix.html +++ b/functions/eulerZYXToRotationMatrix.html @@ -4,4 +4,4 @@
  • x: number

    Rotation around the x-axis in radians.

  • Returns Matrix

    A rotation matrix.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/zyx2R.m

    -
    +
    diff --git a/functions/fromECEF.html b/functions/fromECEF.html index fb455b8..7094ea5 100644 --- a/functions/fromECEF.html +++ b/functions/fromECEF.html @@ -5,4 +5,4 @@

    Returns [vector: Vector, depth: number]

    Representation of position B, decomposed in E, and depth in meters of system B relative to the ellipsoid.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/p_EB_E2n_EB_E.m

    -
    +
    diff --git a/functions/fromGeodeticCoordinates.html b/functions/fromGeodeticCoordinates.html index 60b99ab..eea29f1 100644 --- a/functions/fromGeodeticCoordinates.html +++ b/functions/fromGeodeticCoordinates.html @@ -4,4 +4,4 @@
  • frame: Matrix = Z_AXIS_NORTH

    Coordinate frame in which the n-vector is decomposed.

  • Returns Vector

    An n-vector.

    https://github.com/FFI-no/n-vector/blob/82d749a67cc9f332f48c51aa969cdc277b4199f2/nvector/lat_long2n_E.m

    -
    +
    diff --git a/functions/fromRotationMatrix.html b/functions/fromRotationMatrix.html index d30f8d2..a84d2ea 100644 --- a/functions/fromRotationMatrix.html +++ b/functions/fromRotationMatrix.html @@ -5,4 +5,4 @@
  • https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/R_EL2n_E.m
  • https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/R_EN2n_E.m
  • -
    +
    diff --git a/functions/multiply.html b/functions/multiply.html index 0ad63b6..5b0d20a 100644 --- a/functions/multiply.html +++ b/functions/multiply.html @@ -2,4 +2,4 @@

    Parameters

    Returns Matrix

    The resulting matrix.

    -
    +
    diff --git a/functions/norm.html b/functions/norm.html index 9a8b901..1362439 100644 --- a/functions/norm.html +++ b/functions/norm.html @@ -1,4 +1,4 @@ norm | nvector-geodesy

    Function norm

    • Finds the Euclidean norm of a vector.

      Parameters

      Returns number

      The Euclidean norm.

      -
    +
    diff --git a/functions/normalize.html b/functions/normalize.html index 8f2d1c0..3c4086b 100644 --- a/functions/normalize.html +++ b/functions/normalize.html @@ -2,4 +2,4 @@

    Parameters

    Returns Vector

    A normalized vector.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/unit.m

    -
    +
    diff --git a/functions/radians.html b/functions/radians.html index c8f0b8b..42b7377 100644 --- a/functions/radians.html +++ b/functions/radians.html @@ -2,4 +2,4 @@

    Parameters

    Returns number

    Angle in radians.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/rad.m

    -
    +
    diff --git a/functions/rotationMatrixToEulerXYZ.html b/functions/rotationMatrixToEulerXYZ.html index 9d242e5..9c77433 100644 --- a/functions/rotationMatrixToEulerXYZ.html +++ b/functions/rotationMatrixToEulerXYZ.html @@ -2,4 +2,4 @@

    Parameters

    Returns Vector

    The Euler angles in XYZ order.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/R2xyz.m

    -
    +
    diff --git a/functions/rotationMatrixToEulerZYX.html b/functions/rotationMatrixToEulerZYX.html index 43b4679..de4ef78 100644 --- a/functions/rotationMatrixToEulerZYX.html +++ b/functions/rotationMatrixToEulerZYX.html @@ -2,4 +2,4 @@

    Parameters

    Returns Vector

    The Euler angles in ZYX order.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/R2zyx.m

    -
    +
    diff --git a/functions/sphere.html b/functions/sphere.html index 4446851..bebf47f 100644 --- a/functions/sphere.html +++ b/functions/sphere.html @@ -1,4 +1,4 @@ sphere | nvector-geodesy

    Function sphere

    • Create a spherical ellipsoid with the given radius.

      Parameters

      • radius: number

        A radius in meters.

      Returns Ellipsoid

      A spherical ellipsoid.

      -
    +
    diff --git a/functions/toECEF.html b/functions/toECEF.html index 10721b9..6fa6f01 100644 --- a/functions/toECEF.html +++ b/functions/toECEF.html @@ -5,4 +5,4 @@
  • frame: Matrix = Z_AXIS_NORTH

    Coordinate frame in which the n-vector is decomposed.

  • Returns Vector

    An ECEF position vector.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/n_EB_E2p_EB_E.m

    -
    +
    diff --git a/functions/toGeodeticCoordinates.html b/functions/toGeodeticCoordinates.html index c044174..1610ee9 100644 --- a/functions/toGeodeticCoordinates.html +++ b/functions/toGeodeticCoordinates.html @@ -3,4 +3,4 @@
  • frame: Matrix = Z_AXIS_NORTH

    Coordinate frame in which the n-vector is decomposed.

  • Returns [longitude: number, latitude: number]

    Geodetic longitude and latitude in radians.

    https://github.com/FFI-no/n-vector/blob/82d749a67cc9f332f48c51aa969cdc277b4199f2/nvector/n_E2lat_long.m

    -
    +
    diff --git a/functions/toRotationMatrix.html b/functions/toRotationMatrix.html index e371470..1861677 100644 --- a/functions/toRotationMatrix.html +++ b/functions/toRotationMatrix.html @@ -3,4 +3,4 @@
  • frame: Matrix = Z_AXIS_NORTH

    Coordinate frame in which the n-vector is decomposed.

  • Returns Matrix

    A rotation matrix.

    https://github.com/FFI-no/n-vector/blob/82d749a67cc9f332f48c51aa969cdc277b4199f2/nvector/n_E2R_EN.m

    -
    +
    diff --git a/functions/toRotationMatrixUsingWanderAzimuth.html b/functions/toRotationMatrixUsingWanderAzimuth.html index c012f77..f0880cb 100644 --- a/functions/toRotationMatrixUsingWanderAzimuth.html +++ b/functions/toRotationMatrixUsingWanderAzimuth.html @@ -4,4 +4,4 @@
  • frame: Matrix = Z_AXIS_NORTH

    Coordinate frame in which the n-vector is decomposed.

  • Returns Matrix

    A rotation matrix.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/n_E_and_wa2R_EL.m

    -
    +
    diff --git a/functions/transform.html b/functions/transform.html index 69c47ce..2aa2b4f 100644 --- a/functions/transform.html +++ b/functions/transform.html @@ -2,4 +2,4 @@

    Parameters

    Returns Vector

    The transformed vector.

    -
    +
    diff --git a/functions/transpose.html b/functions/transpose.html index e728698..1bff984 100644 --- a/functions/transpose.html +++ b/functions/transpose.html @@ -1,4 +1,4 @@ transpose | nvector-geodesy

    Function transpose

    +
    diff --git a/types/Ellipsoid.html b/types/Ellipsoid.html index 7f1cb90..c0fdd38 100644 --- a/types/Ellipsoid.html +++ b/types/Ellipsoid.html @@ -2,4 +2,4 @@

    Type declaration

    +
    diff --git a/types/Matrix.html b/types/Matrix.html index 942aadc..d724c62 100644 --- a/types/Matrix.html +++ b/types/Matrix.html @@ -1,2 +1,2 @@ Matrix | nvector-geodesy

    Type Alias Matrix

    Matrix: [[n11: number, n12: number, n13: number], [n21: number, n22: number, n23: number], [n31: number, n32: number, n33: number]]

    A 3x3 matrix.

    -
    +
    diff --git a/types/Vector.html b/types/Vector.html index 1782680..95c37cd 100644 --- a/types/Vector.html +++ b/types/Vector.html @@ -1,2 +1,2 @@ Vector | nvector-geodesy

    Type Alias Vector

    Vector: [x: number, y: number, z: number]

    A 3D vector.

    -
    +
    diff --git a/variables/GRS_80.html b/variables/GRS_80.html index 86d0339..a3be525 100644 --- a/variables/GRS_80.html +++ b/variables/GRS_80.html @@ -1,3 +1,3 @@ GRS_80 | nvector-geodesy

    Variable GRS_80Const

    GRS_80: Ellipsoid = ...

    The Geodetic Reference System 1980 ellipsoid.

    +
    diff --git a/variables/WGS_72.html b/variables/WGS_72.html index 92352f4..46fe96c 100644 --- a/variables/WGS_72.html +++ b/variables/WGS_72.html @@ -1,3 +1,3 @@ WGS_72 | nvector-geodesy

    Variable WGS_72Const

    WGS_72: Ellipsoid = ...

    The World Geodetic System 1972 ellipsoid.

    +
    diff --git a/variables/WGS_84.html b/variables/WGS_84.html index 8f7d6d0..251adb2 100644 --- a/variables/WGS_84.html +++ b/variables/WGS_84.html @@ -1,3 +1,3 @@ WGS_84 | nvector-geodesy

    Variable WGS_84Const

    WGS_84: Ellipsoid = ...

    The World Geodetic System 1984 ellipsoid.

    +
    diff --git a/variables/X_AXIS_NORTH.html b/variables/X_AXIS_NORTH.html index b5794b3..898c2d9 100644 --- a/variables/X_AXIS_NORTH.html +++ b/variables/X_AXIS_NORTH.html @@ -7,4 +7,4 @@ orientation. In this manner, the axes of E is chosen to correspond with the axes of N and B.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/R_Ee.m#L55

    -
    +
    diff --git a/variables/Z_AXIS_NORTH.html b/variables/Z_AXIS_NORTH.html index 3f0cabe..f53f948 100644 --- a/variables/Z_AXIS_NORTH.html +++ b/variables/Z_AXIS_NORTH.html @@ -3,4 +3,4 @@

    The z-axis points to the North Pole and x-axis points to the point where latitude = longitude = 0. This choice is very common in many fields.

    https://github.com/FFI-no/n-vector/blob/f77f43d18ddb6b8ea4e1a8bb23a53700af965abb/nvector/R_Ee.m#L48

    -
    +