I have a .VTU file with all ASCII data values which loads fine into ParaView.  I&#39;m trying to instead write the data as format=binary or format=appended base64 encoded which doesn&#39;t seem to be working.  I get the error:<div>
<br></div><div><span style=" font-family:&#39;Courier&#39;; font-size:8.25pt; color:#800000;">ERROR: In ..\..\..\src\VTK\IO\vtkXMLDataReader.cxx, line 544</span><p></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&#39;Courier&#39;; font-size:8.25pt; color:#800000;">vtkXMLUnstructuredGridReader (0D842188): Cannot read cell data array &quot;material&quot; from PointData in piece 0.  The data array in the element may be too short.</p>
<div><br></div><div>Here&#39;s the last dataarray input as binary.  Correct me if I&#39;m wrong but 0 written as an UInt32 then encoded to base64 is &quot;AAAAAA==&quot;.  So what am I doing wrong?</div><div><br></div><div>
<div>...</div><div>&lt;DataArray type=&quot;UInt32&quot; Name=&quot;material&quot; format=&quot;binary&quot;&gt;</div><div>AAAAAA==</div><div>&lt;/DataArray&gt;</div><div>...</div></div><div><br></div><div>Here is my data file (.vtu) as ASCII which works:</div>
<div><br></div><div><div>&lt;?xml version=&quot;1.0&quot;?&gt;</div><div>&lt;VTKFile type=&quot;UnstructuredGrid&quot; version=&quot;0.1&quot; byte_order=&quot;LittleEndian&quot;&gt;</div><div>  &lt;UnstructuredGrid&gt;</div>
<div>    &lt;Piece NumberOfPoints=&quot;8&quot; NumberOfCells=&quot;1&quot;&gt;</div><div>      &lt;Points&gt;</div><div>        &lt;DataArray type=&quot;Float32&quot; NumberOfComponents=&quot;3&quot; format=&quot;ascii&quot;&gt;</div>
<div> 0 0 1 2 0 1 2 2 1 0 2 1 0 0 2 2 0 2 2 2 2 0 2 2</div><div>        &lt;/DataArray&gt;</div><div>      &lt;/Points&gt;</div><div>      &lt;Cells&gt;</div><div>        &lt;DataArray type=&quot;Int32&quot; Name=&quot;connectivity&quot; format=&quot;ascii&quot;&gt;</div>
<div> 0 1 2 3 4 5 6 7</div><div>        &lt;/DataArray&gt;</div><div>        &lt;DataArray type=&quot;Int32&quot; Name=&quot;offsets&quot; format=&quot;ascii&quot;&gt;</div><div> 8</div><div>        &lt;/DataArray&gt;</div>
<div>        &lt;DataArray type=&quot;Int32&quot; Name=&quot;types&quot; format=&quot;ascii&quot;&gt;</div><div> 12</div><div>        &lt;/DataArray&gt;</div><div>      &lt;/Cells&gt;</div><div>      &lt;PointData Scalar=&quot;stresses&quot;&gt;</div>
<div>        &lt;DataArray type=&quot;Float32&quot; Name=&quot;vm_stress&quot; format=&quot;ascii&quot;&gt;</div><div> 0 1 2 1 0 3 0 0</div><div>        &lt;/DataArray&gt;</div><div>      &lt;/PointData&gt;</div><div>      &lt;CellData Scalar=&quot;material&quot;&gt;</div>
<div>        &lt;DataArray type=&quot;UInt32&quot; Name=&quot;material&quot; format=&quot;ascii&quot;&gt;</div><div>0</div><div><span class="Apple-tab-span" style="white-space:pre">                </span>&lt;/DataArray&gt;</div><div>      &lt;/CellData&gt;</div>
<div>    &lt;/Piece&gt;</div><div>  &lt;/UnstructuredGrid&gt;</div><div>&lt;/VTKFile&gt;</div><div><br></div></div><div>Thanks in advance,</div><div>Tim</div><div><br></div></div>