Hi Everyon.
I am using an open-source model in Python called LISFLOOD. While running it, I encountered a segmentation fault. Upon investigation, I traced the error to a line that reads a NetCDF file using the xarray package. Here is the relevant code (https://github.com/ec-jrc/lisflood-code/blob/master/src/lisflood/global_modules/netcdf.py):
ds = xr.open_mfdataset(
data_path, engine='netcdf4',
chunks={'time': time_chunk}, combine='by_coords',
mask_and_scale=True
)
This code is supposed to read seven files. I am running the code on an HPC system where I can allocate cores and memory. I would like to understand what could be causing this error.
Please help me.
Thank you!