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

Added SAT data to workspace.

parent 55689fda
No related branches found
No related tags found
No related merge requests found
......@@ -84,6 +84,16 @@ artoa.data.replaceValuesWithNaN( ...
%% FLOAT DETAILS
artoaWorkspace.float = artoaDataInput.rfb.FLOAT;
%% SAT DATA
fnames = fieldnames(artoaDataInput.rfb.SAT_FORMAT);
artoaWorkspace.satData = struct();
for i = 1:length(fnames)
artoaWorkspace.satData.(fnames{i}) = artoaDataInput.rfb.SAT_DATA( ...
:, ...
artoaDataInput.rfb.SAT_FORMAT.(fnames{i}) ...
);
end
%% GET SOUNDSOURCES THAT ARE ALIVE DURING THE FLOAT MISSION
artoaWorkspace.filteredSoundsources = artoa.soundsources.filter( ...
artoaDataInput.soundsources, min(artoaWorkspace.rafosDate), max(artoaWorkspace.rafosDate) ...
......
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