-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from ImperialCollegeLondon/vNext
Update software to v3.3.1
- Loading branch information
Showing
26 changed files
with
397 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,9 @@ | ||
# Software | ||
|
||
## Compression | ||
|
||
- Add processing step `mag.process.Compression` to correct for compression factor | ||
- Allow filtering around compression changes in `mag.process.Filter` | ||
- Fix issue in `mag.process.SignedInteger` with compression still using 16th bit for signedness, instead of 18th | ||
- Fix typos in compression event plot | ||
|
||
## Export | ||
|
||
- Export formats are defined in `mag.io.Type` | ||
- Export formats accept data structures `mag.Instrument` and `mag.HK`, instead of custom structure | ||
- Add `Compression` flag to science export | ||
- Add `PROCSTAT` to HK export | ||
|
||
## Other | ||
|
||
- Add variable continuity definition for science variables in `timetable` | ||
- Add shutdown event as final event in `mag.Science` event table | ||
- Add property `Harness` in `mag.meta.Science` to describe sensor harness | ||
- Add ability to specify final event end time in `mag.graphics.view.Field` | ||
- Simplify how columns are filtered in loading science and I-ALiRT | ||
- Make `mag.process.Calibration` more flexible to custom variable names | ||
- Allow plotting more than one event in `mag.graphics.view.Field` | ||
- Change event type to `categorical` when data is not numeric | ||
- Add option to create folder in `mag.graphics.savePlots` | ||
- Fix issue with loading Excel files containing sensor meta data | ||
- Fix issue in custom events chart when event value is not `double` or `single` | ||
- Add I-ALiRT plot to compare full science to I-ALiRT | ||
- Add processing step to cast variable data type (`mag.process.Cast`) | ||
- Add option to filter out data after a long pause in measurements in `mag.process.Filter` | ||
- Allow adding input arguments to conversion function in `mag.graphics.operation.Convert` | ||
- Fix issue with setting I-ALiRT mode when loading | ||
- Fix issues with exporting I-ALiRT data | ||
- Add tests for `mag.graphics.style.Colormap` and `mag.graphics.style.Default` |
2 changes: 2 additions & 0 deletions
2
resources/project/EEtUlUb-dLAdf0KpMVivaUlztwA/mUpHVeZpZ6sxD_WsHI2gc2cdlnwd.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<Info Ref="tests/tool" Type="Relative"/> |
2 changes: 2 additions & 0 deletions
2
resources/project/EEtUlUb-dLAdf0KpMVivaUlztwA/mUpHVeZpZ6sxD_WsHI2gc2cdlnwp.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<Info location="2ff31828-3d31-433d-9e34-f623cbcc58e3" type="Reference"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
classdef Cast < mag.process.Step | ||
% CAST Apply data type cast. | ||
|
||
properties (Dependent) | ||
Name | ||
Description | ||
DetailedDescription | ||
end | ||
|
||
properties | ||
% DATATYPE Data type to convert to. | ||
DataType (1, 1) string | ||
% VARIABLES Variables to be cast. | ||
Variables (1, :) string | ||
end | ||
|
||
methods | ||
|
||
function this = Cast(options) | ||
|
||
arguments | ||
options.?mag.process.Cast | ||
end | ||
|
||
this.assignProperties(options); | ||
end | ||
|
||
function value = get.Name(~) | ||
value = "Cast to Data Type"; | ||
end | ||
|
||
function value = get.Description(this) | ||
value = "Cast " + join(compose("""%s""", this.Variables), ", ") + " to """ + this.DataType + """."; | ||
end | ||
|
||
function value = get.DetailedDescription(this) | ||
value = this.Description; | ||
end | ||
|
||
function data = apply(this, data, ~) | ||
|
||
for v = this.Variables | ||
data.(v) = cast(data.(v), this.DataType); | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...isualize/chart/MAGVisualizationTestCase.m → ...s/unit/visualize/chart/MAGChartTestCase.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.