silicon_ebsd_moving_screen_in#
- kikuchipy.data.silicon_ebsd_moving_screen_in(allow_download: bool = False, show_progressbar: bool | None = None, **kwargs) EBSD [source]#
[Deprecated] One EBSD pattern of (480, 480) pixels from a single crystal silicon sample, acquired on a NORDIF UF-420 detector [Ånes et al., 2022].
This pattern and two other patterns from the same sample position but with 5 mm and 10 mm greater sample-screen-distances were acquired to test the moving-screen projection center estimation technique [Hjelen et al., 1991].
- Parameters:
- allow_download
Whether to allow downloading the dataset from the internet to the local cache with the pooch Python package. Default is
False
.- show_progressbar
Whether to show a progressbar when downloading. If not given, the value of
hyperspy.api.preferences.General.show_progressbar
is used.- **kwargs
Keyword arguments passed to
load()
.
- Returns:
ebsd_signal
EBSD signal.
Notes
The dataset is hosted in the GitHub repository pyxem/kikuchipy-data.
The dataset carries a CC BY 4.0 license.
Examples
>>> import kikuchipy as kp >>> s = kp.data.si_ebsd_moving_screen(0, allow_download=True) >>> s <EBSD, title: si_in Scan 1, dimensions: (|480, 480)> >>> s.plot()
Deprecated since version 0.8: Function silicon_ebsd_moving_screen_in() is deprecated and will be removed in version 0.9. Use si_ebsd_moving_screen() instead.