Support for reading Array
types, or, support for reading data where some are not DataArray
#63
Labels
enhancement
New feature or request
It would be useful to be able to read cell or point data that is not of
DataArray
type. One use case is string data, which is of theArray
type, e.g.:<Array type="String" Name="Container" format="ascii">
Currently this is not implemented in
ReadVTK.jl
:ReadVTK.jl/src/ReadVTK.jl
Line 399 in 09aea36
Alternatively, if
Array
type data is not readable, it would still be nice to be able to read theDataArray
components (without considering theArray
components). Currently inReadVTK.jl
, if there is even one XML element that is notDataArray
(even if that's not the one you want to read), the@assert
referenced above will fail, and the data cannot be read. Ideally, one should be able to readDataArray
components, even ifArray
components exist in the XML tree.The text was updated successfully, but these errors were encountered: