File tree Expand file tree Collapse file tree 5 files changed +15
-11
lines changed
src/mission/imap/+mag/+imap/@Analysis Expand file tree Collapse file tree 5 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 1
- MAG_DATA_VISUALIZATION_VERSION = 7.7.0
1
+ MAG_DATA_VISUALIZATION_VERSION = 7.7.1
Original file line number Diff line number Diff line change 1
- ## App
1
+ ## Software
2
2
3
- - (HelioSwarm) Add HK plot
3
+ - (IMAP) Events recorded before the start of a test are discarded
4
4
5
- ## Software
5
+ ## Project
6
6
7
- - (All) Add support for showing multiple lines in a stacked plot
8
- - (All) Allow specifying ` LegendOrientation ` for axes that support legends
9
- - (HelioSwarm) Add support for ` hs-mag ` v2.0.0 artifacts
10
- - (IMAP) Fix issue in field view where events for a sensor with no data are still being shown
7
+ - Update code analyzer configuration to 1.0.1 (remove regex for enumeration naming)
Original file line number Diff line number Diff line change @@ -161,10 +161,10 @@ function load(this)
161
161
162
162
this.Results = mag .imap .Instrument();
163
163
164
- this .loadEventsData();
165
-
166
164
[primarySetup , secondarySetup ] = this .loadMetadata();
167
165
166
+ this .loadEventsData();
167
+
168
168
this .loadScienceData(primarySetup , secondarySetup );
169
169
170
170
this .loadIALiRTData(primarySetup , secondarySetup );
Original file line number Diff line number Diff line change @@ -289,6 +289,13 @@ function loadEventsData(this)
289
289
end
290
290
end
291
291
292
+ %% Amend Time Range
293
+
294
+ % Concentrate on recorded timerange.
295
+ if ~isempty(this .Results .Metadata ) && ~ismissing(this .Results .Metadata .Timestamp )
296
+ events = events([events .Timestamp ] > this .Results .Metadata .Timestamp );
297
+ end
298
+
292
299
%% Assign Value
293
300
294
301
this.Results.Events = events ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ function loadHKData(this)
31
31
end
32
32
end
33
33
34
- %% Amend Timerange
34
+ %% Amend Time Range
35
35
36
36
% Concentrate on recorded timerange.
37
37
if ~isempty(this .Results .Metadata ) && ~ismissing(this .Results .Metadata .Timestamp )
You can’t perform that action at this time.
0 commit comments