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
When using pillars to compute hc-contacts for fields with both gas and oil, only pillars that contains both phases are kept in the final result.
pillars
This comes from the default beaviour of pandas merge. Setting pd.merge(owc, goc, how="outer") below will fix the issue.
pd.merge(owc, goc, how="outer")
res2df/res2df/pillars.py
Line 326 in 546eb94
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using
pillars
to compute hc-contacts for fields with both gas and oil, only pillars that contains both phases are kept in the final result.This comes from the default beaviour of pandas merge.
Setting
pd.merge(owc, goc, how="outer")
below will fix the issue.res2df/res2df/pillars.py
Line 326 in 546eb94
The text was updated successfully, but these errors were encountered: