Manuel González writes: > Hi, > > I need to display (as labels) the user-defined point IDs and cell IDs in > ASCII Ensight6 geometry files. These IDs are neither zero-based nor > contiguous. > > Ensight does it correctly, but Paraview displays zero-based contiguous IDs > instead of the user-defined IDs given in the file. > The user-defined IDs neither show in the spreadsheet view of Paraview.
From VTK/IO/EnSight/vtkEnSight6Reader.cxx, line 1752, it can be seen that VTK discards explicit ids (the first element on the line): if (!(sscanf(line, " %*d %d %d %d", &intIds[0], &intIds[1],... Does VTK support unstructured IDs on cells? -- Alberto _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Search the list archives at: http://markmail.org/search/?q=ParaView Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview
