sdss_austenite#

orix.data.sdss_austenite(allow_download: bool = False, **kwargs) CrystalMap[source]#

Return a single phase Austenite crystallographic map produced with dictionary indexing of electron backscatter diffraction patterns of a super duplex stainless steel (SDSS) sample containing both Austenite and Ferrite grains.

Parameters:
allow_download

Whether to allow downloading the dataset from the internet to the local cache with the pooch Python package. Default is False.

**kwargs

Keyword arguments passed to file_reader().

Returns:
xmap

Crystal map of shape (100, 117).

Notes

The EBSD data was acquired by Jarle Hjelen from the Norwegian University of Science and Technology and carries the CC BY 4.0 license.

Examples

Read only refined orientations from the EMsoft HDF5 file by passing keyword arguments on to the reader and plot the dot product map

>>> from orix import data, plot
>>> xmap = data.sdss_austenite(allow_download=True, refined=True)
>>> xmap
Phase    Orientations       Name  Space group  Point group  Proper point group     Color
    0  11700 (100.0%)  austenite         None         m-3m                 432  tab:blue
Properties: AvDotProductMap, CI, IQ, ISM, KAM, OSM, RefinedDotProducts, TopDotProductList, TopMatchIndices
Scan unit: um
>>> ipf_key = plot.IPFColorKeyTSL(xmap.phases[0].point_group)
>>> xmap.plot(ipf_key.orientation2color(xmap.orientations), overlay="RefinedDotProducts")
../../_images/orix-data-sdss_austenite-1.png