MantisBT - ParaView
View Issue Details
0014682ParaView(No Category)public2014-04-10 08:372016-08-12 09:59
Alexey Gurin 
Kitware Robot 
highminorhave not tried
closedmoved 
4.1 
 
TBD
incorrect functionality
0014682: Incorrect fetching of rectilinear grid object
Error occurs when I try to get point coordinates with function GetPoint() from vtkRectilinearGrid object. vtkRectilinearGrid object obtained by servermanager.Fetch() function contains incorrect coordinate data - X, X, X instead of X, Y, Z.

Uploaded test case.
Open file "data.vtk" provided, make "data.vtk" source active and execute script "script.py".
Expected output: (0.0,2.0,4.0)
Output received: (0.0,0.0,0.0)

Error is in the vtkAppendRectilinearGrid::RequestData function in vtkAppendRectilinearGrid.cxx file.

Line 188: input->GetXCoordinates(), inputExtent);
Should be: input->GetYCoordinates(), inputExtent);

Line 190: input->GetXCoordinates(), inputExtent);
Should be: input->GetZCoordinates(), inputExtent);
No tags attached.
zip TestCase.zip (548) 2014-04-10 08:37
https://www.vtk.org/Bug/file/9632/TestCase.zip
Issue History
2014-04-10 08:37Alexey GurinNew Issue
2014-04-10 08:37Alexey GurinFile Added: TestCase.zip
2016-08-12 09:59Kitware RobotNote Added: 0038559
2016-08-12 09:59Kitware RobotStatusbacklog => closed
2016-08-12 09:59Kitware RobotResolutionopen => moved
2016-08-12 09:59Kitware RobotAssigned To => Kitware Robot

Notes
(0038559)
Kitware Robot   
2016-08-12 09:59   
Resolving issue as `moved`.

This issue tracker is no longer used. Further discussion of this issue may take place in the current ParaView Issues page linked in the banner at the top of this page.