def read_netcdf_from_bytes(self, netcdf_bytes): """ read the netcdf from bytes """ return netcdf2array(netcdf_bytes)
def read_netcdf_from_path(self, netcdf_path): """ read the netcdf file back into memory """ return netcdf2array(netcdf_path)