forked from kaichen686/GINav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GINavExe.m
37 lines (31 loc) · 1.15 KB
/
GINavExe.m
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
%--------------------------------------------------------------------------
%
% %%%%% %%%%% % % % % %
% % % %% %
% % %%% % % % % %%% % %
% % % % % %%
% %%%%% %%%%% % % % % %
%
%
%--------------------------------------------------------------------------
% GINav v0.1.0
%
% Copyright (C) 2020-2025, by Kai Chen, All rights reserved.
%--------------------------------------------------------------------------
% This program is free software,it's distributed in the hope that provide a
% useful tool for carrying out GNSS/INS or GNSS-related research,but
% WITHOUT ANY WARRANTY
%--------------------------------------------------------------------------
clc
clear all %#ok
close all
addpath(genpath(pwd))
global_variable;
% execute GINavCfg to configure input file
[opt,file,gui_flag]=GINavCfg;
if gui_flag==0
return;
end
% execute positioning
exepos(opt,file);
%--------------------------------------------------------------------------