<div dir="ltr">Before you load the data, re-make the keys so that VTK will register them as valid keys:<div><br></div><div><div>quantity_key = keys.MakeKey(vtk.vtkInformationStringKey, "Quantity", "1")</div></div><div><div>increment_key = keys.MakeKey(vtk.vtkInformationIntegerKey, "Increment", "2")</div></div><div># the keys are defined now, so you should be able to load the data</div><div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Dec 3, 2017 at 4:00 PM, scotsman60 <span dir="ltr"><<a href="mailto:doug@beachmailing.com" target="_blank">doug@beachmailing.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello!!<br>
<br>
I'm using the Python API to vtk and I'm unable to import custom<br>
vtkInformation from a vtkUnstructuredGrid.<br>
<br>
First of all I'm associating custom information to CellData in a<br>
vtkUnstructuredGrid using the following code - where self.mesh is the<br>
vtkUnstructuredGrid<br>
<br>
    #Add the information keys<br>
    info = densityScalars.GetInformation(<wbr>)<br>
<br>
    # First the Quantity type<br>
    quantity_key = keys.MakeKey(vtk.<wbr>vtkInformationStringKey, "Quantity",<br>
"1")<br>
    quantity_key.Set(info, "Topology Density")<br>
<br>
    #Now the Increment number<br>
    increment_key = keys.MakeKey(vtk.<wbr>vtkInformationIntegerKey, "Increment",<br>
"2")<br>
    increment_key.Set(info, increment)<br>
<br>
<br>
    #Add the array to the mesh<br>
    self.mesh.GetCellData().<wbr>AddArray(densityScalars)<br>
<br>
<br>
Later I save the vtkUnstructuredGrid using vtkUnstructuredGridWriter, then<br>
Import it into a new Python session (Basically my program uses the<br>
vtkUnstructuredGrid as its persistence mechanism.........)<br>
<br>
When I read the grid using vtkUnstructuredGridReader I get a whole bunch of<br>
warnings from vtk<br>
<br>
    Warning: In ..\IO\Legacy\vtkDataReader.<wbr>cxx, line 2668<br>
    vtkUnstructuredGridReader (00000000044D7520): Could not locate key<br>
2::Increment. Is the module<br>
    in which it is defined linked?<br>
<br>
    Warning: In ..\IO\Legacy\vtkDataReader.<wbr>cxx, line 2907<br>
    vtkUnstructuredGridReader (00000000044D7520): Ignoring line in<br>
INFORMATION block: DATA 1<br>
<br>
    Warning: In ..\IO\Legacy\vtkDataReader.<wbr>cxx, line 2668<br>
    vtkUnstructuredGridReader (00000000044D7520): Could not locate key<br>
2::Increment. Is the module<br>
    in which it is defined linked?<br>
<br>
    Warning: In ..\IO\Legacy\vtkDataReader.<wbr>cxx, line 2907<br>
    vtkUnstructuredGridReader (00000000044D7520): Ignoring line in<br>
INFORMATION block: DATA 2<br>
<br>
    Warning: In ..\IO\Legacy\vtkDataReader.<wbr>cxx, line 2668<br>
    vtkUnstructuredGridReader (00000000044D7520): Could not locate key<br>
1::Quantity. Is the module in<br>
    which it is defined linked?<br>
<br>
    Warning: In ..\IO\Legacy\vtkDataReader.<wbr>cxx, line 2907<br>
    vtkUnstructuredGridReader (00000000044D7520): Ignoring line in<br>
INFORMATION block: DATA<br>
    Topology%20Density<br>
<br>
<br>
Any ideas on what's going on here?<br>
<br>
Thanks in advance,<br>
<br>
Doug<br></blockquote></div></div></div>