Skip to content
Snippets Groups Projects
Commit 9128c412 authored by leprob001's avatar leprob001
Browse files

Visual adjustments to trajectory output window.

/ Increased Font size of trajectory dates
/ Rafos dates are now rounded
/ Marker of trajectory points have an increased size
/ Every 10th point on the trajectory now has a date
parent 56fe7524
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ scatterHandle = ... ...@@ -11,7 +11,7 @@ scatterHandle = ...
pAxesHandle, ... pAxesHandle, ...
pTrajectory.longitude, ... pTrajectory.longitude, ...
pTrajectory.latitude, ... pTrajectory.latitude, ...
6, ... 10, ...
pColor, ... pColor, ...
'filled' ... 'filled' ...
); );
...@@ -28,12 +28,12 @@ lineHandle = line( ... ...@@ -28,12 +28,12 @@ lineHandle = line( ...
t = artoa.convert.rd2dmy(pTrajectory.date); t = artoa.convert.rd2dmy(pTrajectory.date);
textHandles = cell(1, length(t)); textHandles = cell(1, length(t));
for i = 1:15:length(t) for i = 1:10:length(t)
textHandles{i} = text( ... textHandles{i} = text( ...
pTrajectory.longitude(i), ... pTrajectory.longitude(i), ...
pTrajectory.latitude(i), ... pTrajectory.latitude(i), ...
{' '; [num2str(t(i, 3)) '-' pad(num2str(t(i, 2)), 2, 'left', '0') '-' pad(num2str(t(i, 1)), 2, 'left', '0') ', ' num2str(pTrajectory.date(i))]}, ... {' '; [num2str(t(i, 3)) '-' pad(num2str(t(i, 2)), 2, 'left', '0') '-' pad(num2str(t(i, 1)), 2, 'left', '0') ', ' num2str(round(pTrajectory.date(i)))]}, ...
'FontSize', 6, ... 'FontSize', 10, ...
'Color', pColor ... 'Color', pColor ...
); );
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment