Skip to content

Commit

Permalink
type hinting
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Oct 3, 2023
1 parent a23fd92 commit dad72cd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion +matmap3d/ecef2geodetic.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
% You, Rey-Jer. (2000). Transformation of Cartesian to Geodetic Coordinates without Iterations.
% Journal of Surveying Engineering. doi: 10.1061/(ASCE)0733-9453
arguments
spheroid
spheroid {mustBeScalarOrEmpty}
x {mustBeReal}
y {mustBeReal}
z {mustBeReal}
Expand Down
2 changes: 1 addition & 1 deletion +matmap3d/geodetic2ecef.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
%%% outputs
% * x,y,z: ECEF coordinates of test point(s) (meters)
arguments
spheroid
spheroid {mustBeScalarOrEmpty}
lat {mustBeReal}
lon {mustBeReal}
alt {mustBeReal}
Expand Down
2 changes: 1 addition & 1 deletion buildfile.m
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function publishTask(~)
files = r.Files;

% remove nuisance functions
i = contains(files, [mfilename, "buildfile.m", filesep + "private" + filesep, filesep + "+test" + filesep, "Test"]);
i = contains(files, [mfilename, "buildfile.m", filesep + "private" + filesep, "Test"]);
files(i) = [];

pkg = what(pkg_name);
Expand Down
1 change: 0 additions & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"license": "https://spdx.org/licenses/BSD-3-Clause",
"codeRepository": "https://github.com/geospace-code/matmap3d",
"contIntegration": "https://github.com/geospace-code/matmap3d/actions",
"dateModified": "2020-08-14",
"downloadUrl": "https://github.com/geospace-code/matmap3d/releases",
"issueTracker": "https://github.com/geospace-code/matmap3d/issues",
"name": "matmap3d",
Expand Down

0 comments on commit dad72cd

Please sign in to comment.