-
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
Constraint on the VTK version #43
Comments
I checked and indeed, there is no official VTK XML spec file findable on the internet. We thus do not know what version 1 or higher (or lower) really means. Thus, feel free to create a PR that removes this check and we will be happy to merge it. |
I know nothing about the specific differences, but let's hope it doesn't break anything. The VTKFileFormats briefly mentioned that |
Yes, but they refer to the legacy formats, while we only support the XML file formats, for which no version information has ever been released publicly (see also https://gitlab.kitware.com/vtk/vtk/-/issues/17675). |
I use a rather recent version of VTK (9.3.0 from https://archlinux.org/packages/extra/x86_64/vtk) and the written image data has version 0.1. Would it be possible to further relax the version and essentially accept everything until the different versions are documented? |
Yes, that's fine with me. If you create a PR that removes the checks, I'll merge it 😊 |
Hi,
While testing to read one ImageData generated by ParaView 5.11, I noticed that the VTK file version was asserted to be
v"1.0"
. The file version generated by ParaView 5.11 is 2.2, and the latest VTK version is 3.0.I am wondering if there is a reason for only supporting version 1.0? If I remove
it seems that the reader still works in my limited attempts.
Thanks!
The text was updated successfully, but these errors were encountered: