We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On https://github.com/eWaterCycle/ewatercycle/blob/29d3aed18fb39b3bedb41bac2fd8e9c7277e31be/ewatercycle/models/wflow.py#L59 Path(forcing.netcdfinput).name is used. Some wflow examples use inmaps/inmaps.nc, These examples will not be able to run by ewatercycle.models.Wflow class. As only storing the name (inmaps.nc) will cause the model to not find the file.
Path(forcing.netcdfinput).name
inmaps/inmaps.nc
ewatercycle.models.Wflow
inmaps.nc
Can the .name be replaced with something that works when inmaps.nc is in a subdirectory of the parameter set?
.name
The text was updated successfully, but these errors were encountered:
something like relative_to(...)?
relative_to(...)
Sorry, something went wrong.
There should be a folder inmaps according to wflow documentation .
inmaps
No branches or pull requests
On https://github.com/eWaterCycle/ewatercycle/blob/29d3aed18fb39b3bedb41bac2fd8e9c7277e31be/ewatercycle/models/wflow.py#L59
Path(forcing.netcdfinput).name
is used. Some wflow examples useinmaps/inmaps.nc
, These examples will not be able to run byewatercycle.models.Wflow
class.As only storing the name (
inmaps.nc
) will cause the model to not find the file.Can the
.name
be replaced with something that works when inmaps.nc is in a subdirectory of the parameter set?The text was updated successfully, but these errors were encountered: