1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
## Copyright (c) 2014-2022 Michael Hirsch, Ph.D.
## Copyright (c) 2013-2022 Felipe Geremia Nievinski
## Copyright (C) 2020-2022 Philip Nienhuis
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions are met:
## 1. Redistributions of source code must retain the above copyright notice,
## this list of conditions and the following disclaimer.
## 2. Redistributions in binary form must reproduce the above copyright notice,
## this list of conditions and the following disclaimer in the documentation
## and/or other materials provided with the distribution.
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
## AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
## THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
## ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
## LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
## CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
## SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
## OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
## WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
## SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
## -*- texinfo -*-
## @deftypefn {Function File} {@var{u}, @var{v}, @var{w} =} ned2ecefv (@var{n}, @var{e}, @var{d}, @var{lat}, @var{lon})
## @deftypefnx {Function File} {@var{u}, @var{v}, @var{w} =} ned2ecefv (@var{n}, @var{e}, @var{d}, @var{lat}, @var{lon})
## Convert vector projection(s) of local ENU coordinates to UVW (in ECEF
## coordinate frame).
##
## Inputs:
## @itemize
## @item
## @var{n}, @var{e}, @var{d}: North, East, Down local cartesian coordinates
## (length). All these inputs must have the same dimensions (scalar, vector
## or nD array) and length units.
##
## @item
## @var{lat}, @var{lon}: geodetic latitude and longitude (angle). If
## non-scalar the dimensions should match those of the first three inputs.
##
## @item
## @var{angleUnit}: string for angular units ('degrees' or 'radians',
## case-insensitive, just the first character will do). Default is 'degrees'.
## @end itemize
##
## Outputs:
## @itemize
## @item
## @var{u}, @var{v}, @var{w}: vectors in local ECEF system (length units and
## dimensions same as first three inputs).
## @end itemize
##
## Examples:
## @example
## [u, v, w] = ned2ecefv (757.11, 353.55, -657.11, 45, -45)
## u = 200.00
## v = 300.00
## w = 1000.0
## @end example
##
## With radians
## @example
## [u, v, w] = ned2ecefv (757.11, 353.55, -657.11, pi/4, -pi/4, "r")
## u = 200.00
## v = 300.00
## w = 1000.0
## @end example
##
## @seealso{ecef2nedv, ned2aer, ned2ecef, ned2geodetic}
## @end deftypefn
## Function adapted by anonymous contributor, see:
## https://savannah.gnu.org/patch/index.php?9923
function [u, v, w] = ned2ecefv (n, e, d, lat, lon, angleUnit = "degrees")
if (nargin < 5)
print_usage();
endif
if (! isnumeric (e) || ! isreal (e) || ...
! isnumeric (n) || ! isreal (n) || ...
! isnumeric (d) || ! isreal (d) || ...
! isnumeric (lat) || ! isreal (lat) || ...
! isnumeric (lon) || ! isreal (lon))
error ("ned2ecefv : numeric values expected for first five inputs");
endif
if (! all (size (e) == size (n)) || ...
! all (size (n) == size (d)))
error ("ned2ecefv: non-matching dimensions of ECEF inputs.");
elseif (! (isscalar (lat) && isscalar (lon)))
if (! all (size (lat) == size (d)) || ! all (size (lon) == size (d)))
error ("ned2ecefv: dimensions of Lat / Lon don't match those of ECEF.");
endif
endif
if (! ischar (angleUnit))
error ("ned2ecefv: character value expected for 'angleUnit'");
elseif (strncmpi (angleUnit, "degrees", length (angleUnit)))
lat = deg2rad (lat);
lon = deg2rad (lon);
elseif (! strncmpi (angleUnit, "radians", length (angleUnit)))
error ("ned2ecefv: illegal input for 'angleUnit'");
endif
t = cos(lat) .* -d - sin(lat) .* n;
w = sin(lat) .* -d + cos(lat) .* n;
u = cos(lon) .* t - sin(lon) .* e;
v = sin(lon) .* t + cos(lon) .* e;
endfunction
%!test
%! [u, v, w] = ned2ecefv (871.0476287, 224.3854022, -436.9521873, 42, -82, "d");
%! assert ([u, v, w], [186.277521, 286.84222, 939.69262], 10e-6)
%!test
%! [u, v, w] = ned2ecefv (871.0476287, 224.3854022, -436.9521873, ...
%! 0.733038285837618, -1.43116998663535, "r");
%! assert ([u, v, w], [186.277521, 286.84222, 939.69262], 10e-6)
%!test ## Multidimensionality
%! [u, v, w] = ned2ecefv ([871.0476287; 900], [224.3854022; 200], [-436.9521873; -500], 42, -82);
%! assert ([u, v, w], [186.277521, 286.84222, 939.69262; ...
%! 165.954015, 256.23513, 1003.395646], 1e6);
%!test
%! [u, v, w] = ned2ecefv (-434.0403, 152.4451, -684.6964, 61.64, 30.70);
%! assert ([u, v, w], [530.24451, 492.12835, 396.34594], 1e-5);
%!error <numeric> ned2ecefv("s", 25, 1e3, 0, 0)
%!error <numeric> ned2ecefv(3i, 25, 1e3, 0, 0)
%!error <numeric> ned2ecefv(33, "s", 1e3, 0, 0)
%!error <numeric> ned2ecefv(33, 3i, 1e3, 0, 0)
%!error <numeric> ned2ecefv(33, 25, "s", 0, 0)
%!error <numeric> ned2ecefv(33, 25, 3i, 0, 0)
%!error <numeric> ned2ecefv(33, 25, 1e3, "s", 0)
%!error <numeric> ned2ecefv(33, 25, 1e3, 3i, 0)
%!error <numeric> ned2ecefv(33, 25, 1e3, 0, "s")
%!error <numeric> ned2ecefv(33, 25, 1e3, 0, 3i)
%!error <illegal> ned2ecefv (33, 70, 1e3, 0, 0, "f");
%!error <illegal> ned2ecefv (33, 70, 1e3, 0, 0, "degreef")
%!error <non-matching> [u, v, w] = ned2ecefv ([1, 2, 3], [4, 5, 6], [7, 9], 60, 50)
%!error <don't match> [u, v, w] = ned2ecefv ([1, 2, 3], [4, 5, 6], [7, 8, 9], [40; 50], [-40; -50])
%!error <don't match> [u, v, w] = ned2ecefv ([1, 2, 3], [4, 5, 6], [7, 8, 9], 50, [-45; 50])
|