-
Notifications
You must be signed in to change notification settings - Fork 144
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 #668 from py4dstem/lite
I like my coffee black, my py4DSTEM lite, and my tea in the river
- Loading branch information
Showing
13 changed files
with
83 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
from py4DSTEM import is_package_lite | ||
from py4DSTEM.io.filereaders.empad import read_empad | ||
from py4DSTEM.io.filereaders.read_dm import read_dm | ||
from py4DSTEM.io.filereaders.read_K2 import read_gatan_K2_bin | ||
from py4DSTEM.io.filereaders.empad import read_empad | ||
from py4DSTEM.io.filereaders.read_mib import load_mib | ||
from py4DSTEM.io.filereaders.read_arina import read_arina | ||
|
||
try: | ||
from py4DSTEM.io.filereaders.read_arina import read_arina | ||
except (ImportError, ModuleNotFoundError) as exc: | ||
if not is_package_lite: | ||
raise exc | ||
from py4DSTEM.io.filereaders.read_abTEM import read_abTEM |
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,9 +1,21 @@ | ||
from py4DSTEM import is_package_lite | ||
from py4DSTEM.process.polar import PolarDatacube | ||
from py4DSTEM.process.strain.strain import StrainMap | ||
|
||
from py4DSTEM.process import phase | ||
from py4DSTEM.process import calibration | ||
from py4DSTEM.process import utils | ||
from py4DSTEM.process import classification | ||
|
||
try: | ||
from py4DSTEM.process import classification | ||
except (ImportError, ModuleNotFoundError) as exc: | ||
if not is_package_lite: | ||
raise exc | ||
|
||
from py4DSTEM.process import diffraction | ||
from py4DSTEM.process import wholepatternfit | ||
|
||
try: | ||
from py4DSTEM.process import wholepatternfit | ||
except (ImportError, ModuleNotFoundError) as exc: | ||
if not is_package_lite: | ||
raise exc |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
author="Benjamin H. Savitzky", | ||
author_email="[email protected]", | ||
license="GNU GPLv3", | ||
keywords="STEM 4DSTEM", | ||
keywords="STEM,4DSTEM", | ||
python_requires=">=3.10", | ||
install_requires=[ | ||
"numpy >= 1.19", | ||
|