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

The x axis of the TOA plot now adds 10 days, the y axis 60 seconds to the limits.

parent 4ae53d04
No related branches found
No related tags found
No related merge requests found
299
\ No newline at end of file
300
\ No newline at end of file
......@@ -74,6 +74,15 @@ artoaGui.editTimeOfArrival.scatterTimeOfArrival = scatter( ...
artoaGui.editTimeOfArrival.axesScatterTimeOfArrival.XLim, ...
artoaGui.editTimeOfArrival.axesScatterTimeOfArrival.YLim ...
] = artoa.data.getToaLimits(artoaWorkspace, ~artoaWorkspace.hideDeletedDataPoints);
% add buffer to x and y axis
xlim = artoaGui.editTimeOfArrival.axesScatterTimeOfArrival.XLim;
xlim(1) = xlim(1) - 10;
xlim(2) = xlim(2) + 10;
artoaGui.editTimeOfArrival.axesScatterTimeOfArrival.XLim = xlim;
ylim = artoaGui.editTimeOfArrival.axesScatterTimeOfArrival.YLim;
ylim(1) = ylim(1) - 60;
ylim(2) = ylim(2) + 60;
artoaGui.editTimeOfArrival.axesScatterTimeOfArrival.YLim = ylim;
artoaGui.editTimeOfArrival.axesScatterTimeOfArrival.CLim = ...
[ ...
......
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