I'm using Regridder wihtin a docker container and running into an issue with ESMF being unable to open the log file. The output to the console (I believe from Fortran) when I run regridder = xe.Regridder(da, target_grid, 'bilinear') says:
ValueError: ESMC_FieldRegridStoreFile() failed with rc = 22. Please check the log files (named "*ESMF_LogFile").
I'm wondering if this is a simple issue of file system permissions within the docker container, but I cant figure out where ESMF is trying to write the log file to, or how to specify where it could write to (where it has permissions).
I'm using Regridder wihtin a docker container and running into an issue with ESMF being unable to open the log file. The output to the console (I believe from Fortran) when I run
regridder = xe.Regridder(da, target_grid, 'bilinear')
says:And then python says:
I'm wondering if this is a simple issue of file system permissions within the docker container, but I cant figure out where ESMF is trying to write the log file to, or how to specify where it could write to (where it has permissions).