Fractured high purity carbonate. Additional details to be published in a journal paper. LA-UR-18-27419.
To read these *.npy format microtomography files using python 2.7:
"
import numpy as np
import pylab
stack = np.load('BA01-05_3D_CT_python_array.npy')
view = pylab.imshow(stack[300,:,:], cmap='gray')
pylab.show()
"