Added the option to export the FWHM grid as a compressed numpy .npz file (View > Functions > Export FWHM).
- The array is flipped before saving -> np.flipud()
- The stored grid file neglects any rotation or tilt!
- use np.load('path/to/file/) to load it, the key is 'fwhm'.
e.g.
npz = np.load('path/to/file.npz')
arr = npz['fwhm']
**Full Changelog**: https://github.com/LennardKrause/xrdPlanner/compare/xrdPlanner-2.2.0...xrdPlanner-2.2.1