-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
merge streamplot_demo_features streamplot_demo_masking streamplot_demo_start_points #8155
New issue
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Merging these three files does not just mean copy&paste together; redundant stuff needs to be removed and documentation needs to be made consistent.
@@ -31,3 +31,56 @@ | |||
ax2.streamplot(X, Y, U, V, density=0.6, color='k', linewidth=lw) | |||
|
|||
plt.show() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove; there's one at the end.
|
||
""" | ||
================================ | ||
Streamplot function with masking |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You'll need to merge this docstring with the one at the beginning to make something coherent.
masked regions and NaN values. | ||
""" | ||
w = 3 | ||
Y, X = np.mgrid[-w:w:100j, -w:w:100j] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can X
and Y
be reused from above?
ax.imshow(~mask, extent=(-w, w, -w, w), alpha=0.5, | ||
interpolation='nearest', cmap=plt.cm.gray) | ||
|
||
plt.show() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove.
|
||
""" | ||
======================================== | ||
Streamplot function with starting points |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, you need to merge this with the first docstring.
""" | ||
Y, X = np.mgrid[-3:3:100j, -3:3:100j] | ||
U = -1 - X**2 + Y | ||
V = 1 + X - Y**2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can any of these be reused from before?
Wouldn't this be a duplicate effort of #8082? |
@afvincent @QuLogic Should I continue with the suggested changes in review? |
I suggest combining efforts with @tmcclintock . The comments between the two PRs are very similar. I suggest starting from the branch in #8082 , addressing both sets of comments and opening a new PR with the combined efforts. |
@patniharshit I agree with @tacaswell on the idea of merging the two PRs. In the case where some review comments about English are overlapping between @QuLogic's ones and mine, just trust @QuLogic ;). |
Replaced by #8336. |
refs #7956