You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use plotly (offline mode) in python along with orca to export contour plots to SVG.
Given below is the function I use to create contour plots and export it to SVG
It takes roughly 20s to create an SVG every single time. Is this expected behavior?
I though maybe file IO part of the write command is causing that delay so instead of the write_image, I used the to_image to get a bytes representation of the same. That didnt help with the runtime either
I ran the orca server manually in debug mode (looked at a few posts in forums) but I dont know how to make sense of it.
I am trying to use plotly (offline mode) in python along with orca to export contour plots to SVG.
Given below is the function I use to create contour plots and export it to SVG
It takes roughly 20s to create an SVG every single time. Is this expected behavior?
I though maybe file IO part of the write command is causing that delay so instead of the
write_image, I used theto_imageto get a bytes representation of the same. That didnt help with the runtime eitherI ran the orca server manually in debug mode (looked at a few posts in forums) but I dont know how to make sense of it.
Can someone help me out?