This repo contains the downloaded and masked data files for the
After downloading, the mask and data files can be loaded using numpy:
import numpy as np
data = np.load('path/to/file.npy', allow_pickle=True)
Ensure that allow_pickle=True
to avoid complications.