Skip to content
Snippets Groups Projects
scatterSatDataPositions.m 1.02 KiB
Newer Older
leprob001's avatar
leprob001 committed
function [scatterHandle, textHandles] = scatterSatDataPositions(pAxesHandle, pSatDataPositions)
%SCATTERSATDATAPOSITIONS Summary of this function goes here
%   Detailed explanation goes here


%% Remove NaN
x = pSatDataPositions.lon_sat(~isnan(pSatDataPositions.lon_sat));
y = pSatDataPositions.lat_sat(~isnan(pSatDataPositions.lat_sat));
year = pSatDataPositions.year_sat(~isnan(pSatDataPositions.year_sat));
month = pSatDataPositions.month_sat(~isnan(pSatDataPositions.month_sat));
day = pSatDataPositions.day_sat(~isnan(pSatDataPositions.day_sat));

%% Calculate step size for text
steps = 1:3:(floor(length(x)/3)*3);

%% Prepare text cell
textCell = {};
for i = steps
    textCell{end + 1} = {'', ['  ' num2str(year(i)) '-' pad(num2str(month(i)), 2, 'left', '0') '-' pad(num2str(day(i)), 2, 'left', '0')]};
leprob001's avatar
leprob001 committed
end

%% Plot
hold(pAxesHandle, 'on');
scatterHandle = scatter(pAxesHandle, x, y, [], [.5 .5 .5]);
textHandles = text(pAxesHandle, x(steps), y(steps), textCell, 'FontSize', 7, 'Color', [.5 .5 .5]);
leprob001's avatar
leprob001 committed
hold(pAxesHandle, 'off');

end