forked from Slugbotics/MSFSDataAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.m
More file actions
41 lines (30 loc) · 579 Bytes
/
Copy pathMain.m
File metadata and controls
41 lines (30 loc) · 579 Bytes
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
data = Database(22);
t = data.time_inserted;
latitudes = p_lat;
longitudes = p_lon;
height_agl = a_agl;
MapPos();
addpath(genpath('../FAAObjects'));
addpath(genpath('../FAAObjects/DOF_250119'));
object_data_parser(latitudes, longitudes, height_agl);
%{
Fuel();
Thrust();
%addpath(genpath('./Terrain/'));
%addpath(genpath('./TerrainData/'));
%test();
SpeedAltitudePlots();
Thrust();
Bank();
Heading();
Pitch();
ControlSurfaces();
Fuel();
%}
%GroundElevation();
%{
addpath(genpath('./Glide/'));
addpath(genpath('./TerrainData/'));
GlideParameters();
GlideDisplay();
%}