Skip to content

Commit

Permalink
Use expressions rather than names (#387)
Browse files Browse the repository at this point in the history
* Use expressions rather than names

Fixes #385

* CHANGELOG
  • Loading branch information
ksunden authored Jul 19, 2021
1 parent 2f966a5 commit 415685d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
- axes with whitespace don't necessarily fail
- Motortune Tunepoints only calculated if the checkbox is checked
- old "identity" behavior removed which caused splitting on "F" in axis names
- Use expressions rather than names for processing of scan
- Decode when needed for axis dropdown in plot tab

### Added
Expand Down
3 changes: 1 addition & 2 deletions yaqc_cmds/somatic/modules/scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ def process(self, scan_folder):
for channel_name in channels:
channel_path = data_folder / channel_name
output_path = data_folder
orig_transform = data.axis_names
print(data.axis_names)
orig_transform = data.axis_expressions
axes = []
for a in orig_transform:
print(data[channel_name].shape, data[a].shape)
Expand Down

0 comments on commit 415685d

Please sign in to comment.