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
My geologist gave me a .grdecl file produced by RMS which contains a property ConnectedChannels_only.
ConnectedChannels_only
I am trying to read it with
with cwrap.open(file_path) as f: property = resdata.resfile.ResdataKW.read_grdecl(f, "ConnectedChannels_only", rd_type=ResDataType.RD_INT)
This obviously fails the check from rd_kw.py
rd_kw.py
if kw: if len(kw) > 8: raise TypeError( "Sorry keyword:%s is too long, must be eight characters or less." % kw )
I am wondering if it would be useful to reduce the strictness of the check with an optional flag to make the library useful for such .grdecl files?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My geologist gave me a .grdecl file produced by RMS which contains a property
ConnectedChannels_only
.I am trying to read it with
This obviously fails the check from
rd_kw.py
I am wondering if it would be useful to reduce the strictness of the check with an optional flag to make the library useful for such .grdecl files?
The text was updated successfully, but these errors were encountered: