-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Include the X and Y axis in NXdata.
- Loading branch information
1 parent
52dc425
commit a085c39
Showing
12 changed files
with
82 additions
and
9 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
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
Binary file modified
BIN
+40 Bytes
(100%)
tests/data/nanonis/afm/version_gen_4_default_config/afm_4_with_default_config.nxs
Binary file not shown.
Binary file modified
BIN
+40 Bytes
(100%)
tests/data/nanonis/afm/version_gen_4_with_described_nxdata/afm_4_with_described_nxdata.nxs
Binary file not shown.
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
Binary file modified
BIN
+0 Bytes
(100%)
tests/data/nanonis/stm/version_gen_4_5_default_config/stm_4_5_with_default_config.nxs
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
tests/data/nanonis/stm/version_gen_4_5_with_described_nxdata/stm_4_5_described_nxdata.nxs
Binary file not shown.
Binary file modified
BIN
-120 Bytes
(100%)
tests/data/nanonis/sts/version_gen_5e_default_config/sts_5e_default_config.nxs
Binary file not shown.
Binary file modified
BIN
-120 Bytes
(100%)
tests/data/nanonis/sts/version_gen_5e_with_described_nxdata/sts_5e_described_nxdata.nxs
Binary file not shown.
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,26 @@ | ||
!#/local/bin/bash | ||
|
||
# STS Nanonis | ||
echo " !!! Converting Nanonis STS data !!! " | ||
find tests/data/nanonis/sts/version_gen_5e_default_config -type f ! -name '*.nxs' | xargs dataconverter --nxdl NXspm --reader spm --output sts_5e_default_config.nxs | ||
find tests/data/nanonis/sts/version_gen_5e_default_config -type f -name '*.nxs' | xargs mv sts_5e_default_config.nxs | ||
|
||
find tests/data/nanonis/sts/version_gen_5e_with_described_nxdata -type f ! -name '*.nxs' | xargs dataconverter --nxdl NXspm --reader spm --output sts_5e_with_described_nxdata.nxs | ||
find tests/data/nanonis/sts/version_gen_5e_with_described_nxdata -type f -name '*.nxs' | xargs mv sts_5e_with_described_nxdata.nxs | ||
|
||
# AFM Nanonis | ||
echo " !!! Converting Nanonis AFM data !!! " | ||
find tests/data/nanonis/afm/version_gen_4_default_config -type f ! -name '*.nxs' | xargs dataconverter --nxdl NXafm --reader spm --output afm_4_with_default_config.nxs | ||
find tests/data/nanonis/afm/version_gen_4_default_config -type f -name '*.nxs' | xargs mv afm_4_with_default_config.nxs | ||
|
||
find tests/data/nanonis/afm/version_gen_4_with_described_nxdata -type f ! -name '*.nxs' | xargs dataconverter --nxdl NXafm --reader spm --output afm_4_with_described_nxdata.nxs | ||
find tests/data/nanonis/afm/version_gen_4_with_described_nxdata -type f -name '*.nxs' | xargs mv afm_4_with_described_nxdata.nxs | ||
|
||
# STM Nanonis | ||
echo " !!! Converting Nanonis STM data !!! " | ||
find tests/data/nanonis/stm/version_gen_4_5_default_config -type f ! -name '*.nxs' | xargs dataconverter --nxdl NXstm --reader spm --output stm_4_5_default_config.nxs | ||
find tests/data/nanonis/stm/version_gen_4_5_default_config -type f -name '*.nxs' | xargs mv stm_4_5_default_config.nxs | ||
|
||
find tests/data/nanonis/stm/version_gen_4_5_with_described_nxdata -type f ! -name '*.nxs' | xargs dataconverter --nxdl NXstm --reader spm --output stm_4_5_with_described_nxdata.nxs | ||
find tests/data/nanonis/stm/version_gen_4_5_with_described_nxdata -type f -name '*.nxs' | xargs mv stm_4_5_with_described_nxdata.nxs | ||
|