-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
ODE integrator for FF streamline produces NaNs #1451
Comments
Hi @kel85uk, could you add a minimal reproducible example that works in matplotlib but not in plotly? Thanks! |
Hi @jonmmease, thanks for the response. I have added an example notebook and the accompanying dataset. Any help in this would be much appreciated. |
Hi @jonmmease, I was wondering if there's any update on the issue? |
Hi @kel85uk, no I don't think anyone has looked at it yet. We're definitely open to help if anyone would like to take a look at https://github.com/plotly/plotly.py/blob/master/plotly/figure_factory/_streamline.py and try to track down the issue. |
hi @jonmmease, i have the same issue than @kel85uk so i decided to look further in _streamline.py. It's appear that the issue come from line 207 and 213 where self.value_at return 0. So dt_ds variable is infinite then f and g function return nan. The best 'quick fix' i found is replacing 'except IndexError:' line 238 by 'except (IndexError, ValueError):'. I know is not the best way to fix the issue, but it's the only one i found working well. (the interesting side effect is that create_streamline handle now the nan value in u and v) I hope you could add some fix in the next release. ps : i used the same dataset than @kel85uk |
hi @emmanuelle, have you seen my previous message ? Could you tell me if an update is considered ? |
While providing a current field to a FF streamline object, I get this error. This error happens even in current plotly version: e53e626 (The last commit I tested the workflow in)
The same field when provided to a matplotlib streamplot object produces the expected lines:

The only difference which I could see is the ODE integrator being used in matplotlib and plotly. I refer to
https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/streamplot.py with matplotlib using Heun's method.
The text was updated successfully, but these errors were encountered: