claireyung
Results
3
comments of
claireyung
Thank you @marshallward!
I agree it's less of a priority! Only thing I could think that it might be useful for is if you want to calculate transport over a moving SSH contour...
FYI this is how I made gifs @AndyHoggANU ``` import imageio from pathlib import Path image_path = Path('.') images = list(image_path.glob('*.png')) image_list = [] for file_name in images: image_list.append(imageio.imread(file_name)) ```...