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
Hi!
My favorite (though awkward) choice of visualization tool would like to have the vtu-output of Trixi2Vtk in full ASCII format. Currently, the vtu-files show the metadata in ASCII, but the actual data is binary (which is of course a good choice as default...)
Ideally, Trixi2VTK would offer a flag 'format=ASCII' to switch. Apparently, you can load into paraview and save as ASCII, but having a flag would be really neat...
Thanks!
The text was updated successfully, but these errors were encountered:
This boils down to telling WriteVTK.jl to store the output in an ASCII format. An easy approach could thus be to add a new flag such as ascii=true/false (default false) to trixi2vtk
that then in turn sets the appropriate keyword arguments in WriteVTK.jl's vtk_grid. For example, for ultimate compatibility it would make sense to pass compress=false, append=false, ascii=true to vtk_grid.
Hi!
My favorite (though awkward) choice of visualization tool would like to have the vtu-output of Trixi2Vtk in full ASCII format. Currently, the vtu-files show the metadata in ASCII, but the actual data is binary (which is of course a good choice as default...)
Ideally, Trixi2VTK would offer a flag 'format=ASCII' to switch. Apparently, you can load into paraview and save as ASCII, but having a flag would be really neat...
Thanks!
The text was updated successfully, but these errors were encountered: