Error reading dimension

Hi,
I’m trying to load a file .vtk but paraview give me this error:

ERROR: In /builds/gitlab-kitware-sciviz-ci/build/superbuild/paraview/src/VTK/IO/Legacy/vtkRectilinearGridReader.cxx, line 103
vtkRectilinearGridReader (0x1b4551c0): Error reading dimensions!

The file .vtk is:

Thank
Paul

Even if you only have 2D data, you still need to specify the data in 3 dimensions. Add a Z dimension of size 1.

DIMENSIONS 100 50 1
X_COORDINATES 100 float
# All those coordinate you have listed
Y_COORDINATES 50 float
# All those coordinate you have listed
Z_COORDINATES 1 float
0.0