-
Notifications
You must be signed in to change notification settings - Fork 11
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
Integration with yt
#18
Comments
Yes, this is a good point and something I definitely have thought about. At the moment (version |
I have some 3D data (attached here--zipped) that I wanted to render and I tried to do it with This is what how I visualize the data with from kuibit.grid_data_utils import load_UniformGridData
from numpy import log10
data = load_UniformGridData("rhob.xyz.npz")
mlab.contour3d(*data.coordinates_from_grid(as_same_shape=True),
log10(data.data), transparent=True) I don't know how to get something similar with I leave this data here, in case anyone with more experience with |
I might be able to get something out of |
@Yurlungur If you want a hand, let me know! |
It strikes me that it would be extremely easy to use
kuibit
as the backend for loading data intoyt
to enable, e.g., volume rendering. In fact, volume rendering a uniform grid, after resampling inkuibit
should work essentially out of the box.This isn't a feature request, just a suggestion for a straightforward enhancement, should you decide you want volume rendering.
The text was updated successfully, but these errors were encountered: