This file contains hidden or 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
| """ | |
| Make movie of 3D cloud fields | |
| """ | |
| import xarray as xr | |
| import matplotlib.pyplot as plt | |
| from mpl_toolkits.mplot3d import Axes3D | |
| from matplotlib.colors import LightSource | |
| from skimage import measure | |
| from scipy.interpolate import interp1d | |
| from scipy.ndimage import gaussian_filter |