[Paraview] reader plugin error

2009-09-14 Thread Maxwell, Thomas P. (GSFC-606.2)[SCIENCE APPLICATIONS INTL CORP]
I have implemented a NetCDF4 reader plugin under MacOSX. When the client plugin is loaded into the paraview client it appears in the "local plugins" list of the "Plugin Manager" with an "Error" property. Is there any way to obtain some feedback on what error is being registered? -- Tom

Re: [Paraview] reader plugin error

2009-09-14 Thread Utkarsh Ayachit
If you expand the plugin, the "status" property should have some description of the error. Is there any status text reported? Utkarsh On Mon, Sep 14, 2009 at 1:35 PM, Maxwell, Thomas P. (GSFC-606.2)[SCIENCE APPLICATIONS INTL CORP] wrote: > I have implemented a NetCDF4 reader plugin under MacOSX.

Re: [Paraview] reader plugin error

2009-09-14 Thread Maxwell, Thomas P. (GSFC-606.2)[SCIENCE APPLICATIONS INTL CORP]
Yes, it says that my dylib is not a valid Qt plugin, and then it says that the QtChart lib was not loaded. Perhaps some library incompatibilities? Thanks, Tom On 9/14/09 1:36 PM, "Utkarsh Ayachit" wrote: If you expand the plugin, the "status" property should have some description of the erro

Re: [Paraview] reader plugin error

2009-09-14 Thread Utkarsh Ayachit
Did you compile the plugin with 3.6 by any chance and you trying to load it in a CVS build of ParaView? QtChart library is no longer available in CVS since it has been replaced by vtkQtChart. Utkarsh On Mon, Sep 14, 2009 at 1:54 PM, Maxwell, Thomas P. (GSFC-606.2)[SCIENCE APPLICATIONS INTL CORP]

[Paraview] ParaView reader plugin - error: Cannot volume render since no point (or cell) data available.

2013-12-17 Thread Radek Lonka
Hi, I am new here and to paraview. I have been trying to create reader plugin for some data but even it works on my simple qt based application together with vtk it does not work in paraview. It loads the data, I can see the Information with cell data and point data correctly but it deros not visu

Re: [Paraview] ParaView reader plugin - error: Cannot volume render since no point (or cell) data available.

2013-12-17 Thread Utkarsh Ayachit
Radek, For volume rendering image datasets, ParaView only supports point data. The "ImageScalars" array that you have as PointData doesn't seem to be valid since it doesn't have any tuples (Number of Tuples : 0). Number of point tuples must be exactly equal to : (dimx*dimy*dimz). There are several

Re: [Paraview] ParaView reader plugin - error: Cannot volume render since no point (or cell) data available.

2013-12-18 Thread Radek Lonka
Hi Utkarsh, thanks a lot for your help! I have followed your advice about ext and setting dim, extent, spacing and point data and now it works perfectly fine. Thank you radek On 12/17/2013 05:20 PM, Utkarsh Ayachit wrote: Radek, For volume rendering image datasets, ParaView only supports poi

Re: [Paraview] ParaView reader plugin - error: Cannot volume render since no point (or cell) data available.

2013-12-18 Thread Utkarsh Ayachit
Great. Glad to hear. On Wed, Dec 18, 2013 at 3:52 AM, Radek Lonka wrote: > Hi Utkarsh, > > thanks a lot for your help! > I have followed your advice about ext and setting dim, extent, spacing > and point data and now it works perfectly fine. > > Thank you > > radek > > On 12/17/2013 05:20 PM, Utk