1 | initial version |
Hmm, this is a tiny bit odd, since the code for spherical_plot3d
is just
return plot3d(f, urange, vrange, transformation=Spherical('radius', ['azimuth', 'inclination']), **kwds)
Can you give a toy version of your data (since we obviously can't reproduce this faithfully as it stands) in an edit to your question? It makes looking at the traceback easier. (For sure do please include the full error message, though, as that will help a lot.)
2 | No.2 Revision |
Hmm, this is a tiny bit odd, since the code for spherical_plot3d
is just
return plot3d(f, urange, vrange, transformation=Spherical('radius', ['azimuth', 'inclination']), **kwds)
So probably the transformation is having trouble handling something nonsymbolic (the Scipy interpolation function).
Can you give a toy version of your data (since we obviously can't reproduce this faithfully as it stands) in an edit to your question? It makes looking at the traceback easier. (For sure do please include the full error message, though, as that will help a lot.)