-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlotTOP.m
More file actions
53 lines (44 loc) · 1.45 KB
/
PlotTOP.m
File metadata and controls
53 lines (44 loc) · 1.45 KB
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
function [ tTOP ] = PlotTOP( handle )
%PLOTTOP Summary of this function goes here
% Detailed explanation goes here
tTOP.UTC = text(handle, 2,-5.5,'--:--:--',...
'FontSize',28,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
text(handle, 2,-8.5,'UTC',...
'FontSize',16,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
tTOP.EST = text(handle, 20,-5.5,'--:--',...
'FontSize',28,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
text(handle, 20,-8.5,'EST',...
'FontSize',16,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
tTOP.AIRTIME = text(handle, 33,-5.5,'--:--',...
'FontSize',28,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
text(handle, 33,-8.5,'AIR TIME',...
'FontSize',16,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
tTOP.UASTIME = text(handle, 48,-5.5,'----.-',...
'FontSize',28,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
text(handle, 48,-8.5,'UAS TIME',...
'FontSize',16,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
tTOP.CAMTIME = text(handle, 63,-5.5,'----.-',...
'FontSize',28,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
text(handle, 63,-8.5,'CAM TIME',...
'FontSize',16,...
'FontName','Agency FB',...
'VerticalAlignment','baseline');
end