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

The float offsets data is now correctly pulled from the offset parameter in rfb file.

parent 0ec0c669
No related branches found
No related tags found
No related merge requests found
111 112
\ No newline at end of file \ No newline at end of file
...@@ -13,8 +13,22 @@ offsetTable = cell2table( ... ...@@ -13,8 +13,22 @@ offsetTable = cell2table( ...
%% Setup rows %% Setup rows
offsetTable.Properties.RowNames(1) = {'Float'}; offsetTable.Properties.RowNames(1) = {'Float'};
offsetTable{1, variableNames{1}} = artoa.convert.dmy2rd(pFloatDetails.launchtime(3), pFloatDetails.launchtime(2), pFloatDetails.launchtime(1)); try
offsetTable{1, variableNames{3}} = artoa.convert.dmy2rd(pFloatDetails.recovertime(3), pFloatDetails.recovertime(2), pFloatDetails.recovertime(1)); offsetTable{1, variableNames{1}} = artoa.convert.dmy2rd(pFloatDetails.offset(1, 3), pFloatDetails.offset(1, 2), pFloatDetails.offset(1, 1));
catch
end
try
offsetTable{1, variableNames{2}} = pFloatDetails.offset(1, 7);
catch
end
try
offsetTable{1, variableNames{3}} = artoa.convert.dmy2rd(pFloatDetails.offset(2, 3), pFloatDetails.offset(2, 2), pFloatDetails.offset(2, 1));
catch
end
try
offsetTable{1, variableNames{4}} = pFloatDetails.offset(2, 7);
catch
end
if nargin == 1 if nargin == 1
return; return;
......
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