summaryrefslogtreecommitdiff
path: root/inst/enu2geodetic.m
blob: 11d87f5af61154f1834ad160789c7fbed237d4de (plain)
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
## 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{lat}, @var{lon}, @var{alt} =} enu2geodetic (@var{e}, @var{n}, @var{u}, @var{lat0}, @var{lon0}, @var{alt0})
## @deftypefnx {Function File} {@var{lat}, @var{lon}, @var{alt} =} enu2geodetic (@var{e}, @var{n}, @var{u}, @var{lat0}, @var{lon0}, @var{alt0}, @var{spheroid})
## @deftypefnx {Function File} {@var{lat}, @var{lon}, @var{alt} =} enu2geodetic (@var{e}, @var{n}, @var{u}, @var{lat0}, @var{lon0}, @var{alt0}, @var{spheroid}, @var{angleUnit})
## Convert local cartesian East, North, Up (ENU) coordinates to geodetic
## coordinates.
##
## Inputs:
## @itemize
## @item
## @var{e}, @var{n}, @var{u}: look angles and distance to target point(s)
## (angle, angle, length).  Can be scalars but vectors and nD arrays values
## are accepted if they have equal dimensions.
##
## @item
## @var{lat0}, @var{lon0}, @var{alt0}: ellipsoid geodetic coordinates of
## observer location (angle, angle, length).  In case of multiple observer
## locations their numbers and dimensions should match those of the target
## points (i.e., one observer location for each target point).  The length units
## of target point(s) and observer location(s) should match.
##
## @item
## @var{spheroid}: referenceEllipsoid parameter struct; default is wgs84.  A
## string value describing the spheroid is also accepted.
##
## @item
## @var{angleUnit}: string for angular units ('degrees' or 'radians',
## case-insensitive, just the first charachter will do). Default is 'degrees'.
## @end itemize
##
## Outputs:
## @itemize
## @item
## @var{lat}, @var{lon}, @var{alt}: geodetic coordinates of target points
## (angle, angle, length).
##
## Note: @var{alt} (height) is relative to the reference ellipsoid, not the
## geoid.  Use e.g., egm96geoid to compute the height difference between the
## geoid and the WGS84 reference ellipsoid.
## @end itemize
##
## Lengh units are those of the invoked reference ellipsoid (see below).
##
## enu2geodetic.m is a wrapper for enu2ecef.m and ecef2geodetic.m
##
## Example
## @example
## [lat, lon, alt] = enu2geodetic (186.28, 286.84, 939.69, 42, -82, 200)
## lat =  42.003
## lon = -81.998
## alt =  1139.7
## @end example
##
## With radians
## @example
## [lat, lon, alt] = enu2geodetic (186.28, 286.84, 939.69, pi/4, -pi/2, 200, ...
##                                 "wgs84", "radians")
## lat =  0.78544
## lon = -1.5708
## alt =  1139.7
## @end example
##
## @seealso{geodetic2enu, enu2aer, enu2ecef, enu2ecefv, enu2uvw, egm96geoid,
## referenceEllipsoid}
## @end deftypefn

## Function adapted by anonymous contributor, see:
## https://savannah.gnu.org/patch/index.php?9918

function [lat, lon, alt] = enu2geodetic (varargin)

  spheroid = "";
  angleUnit = "degrees";
  if (nargin < 6 || nargin > 8)
    print_usage();
  elseif (nargin == 7)
    if (isnumeric (varargin{7}))
      ## EPSG spheroid code
      spheroid = num2str (varargin{7});
    elseif (ischar (varargin{7}))
      if (! isempty (varargin{7}) && ismember (varargin{7}(1), {"r", "d"}))
        angleUnit = varargin{7};
      else
        spheroid = varargin{7};
      endif
    elseif (isstruct (varargin{7}))
      spheroid = varargin{7};
    else
      error ("enu2geodetic: spheroid or angleUnit expected for arg. #7");
    endif
  elseif (nargin == 8)
    spheroid = varargin{7};
    angleUnit = varargin{8};
  endif

  e  = varargin{1};
  n  = varargin{2};
  u  = varargin{3};
  lat0 = varargin{4};
  lon0 = varargin{5};
  alt0 = varargin{6};
  if (! isnumeric (e)    || ! isreal (e) || ...
      ! isnumeric (n)    || ! isreal (n) || ...
      ! isnumeric (u)    || ! isreal (u) ||...
      ! isnumeric (lat0) || ! isreal (lat0) || ...
      ! isnumeric (lon0) || ! isreal (lon0) ||  ...
      ! isnumeric (alt0) || ! isreal (alt0))
    error ("enu2geodetic: numeric real values expected for first 6 inputs.");
  endif

  if (! all (size (e) == size (n)) || ...
      ! all (size (n) == size (u))) ...
    error ("enu2geodetic: non-matching dimensions of inputs.");
  endif
  if (! isscalar (lat0) || ! isscalar (lon0) || ! isscalar (alt0))
    ## Check if for each test point a matching obsrver point is given
    if (! all (size (lat0) == size (e)) || ...
        ! all (size (lon0) == size (n)) || ...
        ! all (size (alt0) == size (u)))
      error (["enu2geodetic: non-matching dimensions of non-scalar ", ...
              "observer points and target points"]);
    endif
  endif

  E = sph_chk (spheroid);

  [x, y, z] = enu2ecef (e, n, u, lat0, lon0, alt0, E, angleUnit);
  [lat, lon, alt] = ecef2geodetic (E, x, y, z, angleUnit);

endfunction


%!test
%! [lat, lon, alt] = enu2geodetic (186.28, 286.84, 939.69, 42, -82, 200);
%! assert ([lat, lon, alt], [42.00258, -81.997752, 1139.69918], 10e-6);

%!test
%! [lat, lon, alt] = enu2geodetic (186.28, 286.84, 939.69, 0.733038285837618, -1.43116998663535, 200, "", "rad");
%! assert ([lat, lon, alt], [0.73308, -1.43113, 1139.69918], 10e-6);

%!test
%! [a, b, c] = enu2geodetic (-7134.8, -4556.3, 2852.4, 46.017, 7.750, 1673, 7030);
%! assert ([a, b, c], [45.976000, 7.657999, 4531.009608], 1e-6);

%!error <numeric> enu2geodetic("s", 25, 1e3, 0, 0, 0)
%!error <numeric> enu2geodetic(3i, 25, 1e3, 0, 0, 0)
%!error <numeric> enu2geodetic(33, "s", 1e3, 0, 0, 0)
%!error <numeric> enu2geodetic(33, 3i, 1e3, 0, 0, 0)
%!error <numeric> enu2geodetic(33, 25, "s", 0, 0, 0)
%!error <numeric> enu2geodetic(33, 25, 3i, 0, 0, 0)
%!error <numeric> enu2geodetic(33, 25, 1e3, "s", 0, 0)
%!error <numeric> enu2geodetic(33, 25, 1e3, 3i, 0, 0)
%!error <numeric> enu2geodetic(33, 25, 1e3, 0, "s", 0)
%!error <numeric> enu2geodetic(33, 25, 1e3, 0, 3i, 0)
%!error <numeric> enu2geodetic(33, 25, 1e3, 0, 0, "s")
%!error <numeric> enu2geodetic(33, 25, 1e3, 0, 0, 3i)
%!error <non-matching> enu2geodetic ([1 1], [2 2]', [3 3], 4, 5, 6)
%!error <non-matching> enu2geodetic ([1 1], [2 2], [33], 4, 5, 6)
%!error <non-matching> enu2geodetic ([1 1], [2 2], [3 3], [4 4], 5, 6)
%!error <non-matching> enu2geodetic ([1 1], [2 2], [3 3], 4, [5 5], 6)
%!error <non-matching> enu2geodetic ([1 1], [2 2], [3 3], [4; 4], [5; 5], [6; 6])