This should be an incredibly simple question, but I can’t get this to work. What is wrong with the XML file below such that I can’t plot the the points as XYZ in ParaView?
However, without cell elements, quite a few filters will not be able to operate on your data. The default view representation “Points” will also not work. “Point Gaussian” will work.
After reading your data, you may use a Glyph filter with “2D Glyph” and “Vertex” types to add cell elements.
As @jfavre mentioned, you’ll typically also need some ‘cells’.
For the lightest format, you should be targeting a vtp output.
Generating offsets and connectivity is dead easy.
Thanks! Using the @jfavre and @olesenm’s advice I was able to get this to work. I have included the XML text below in case anyone else needs to do this. I needed to add ‘Type=’ to the ‘Vert’ data arrays and include a ‘PointData’ section to get the values associated with the point coordinates:
@datathing
FWIW, I generally lump all of my geometry together (Points, Verts, etc) and have the PointData and CellData after. Makes it easier to stream data like that, if you have a writeGeometry() method and later various write field methods.