[Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Fabian Wein
Hi, I searched and googled but could not find the python call for SaveData(). I import my data by my own reader and want to export it as VTK file by scripting. Any hints? Is there a doxygen documentation or something like that for the complete python interface? I just have the examples from the

Re: [Paraview] problems with xdmf-files

2010-02-16 Thread Natalie Happenhofer
Yes, I noticed that CVS ParaView has a newer version of Xdmf Reader, the problem is, that the files, that were read without problems in ParaView 3.4.0, now throw this error I spoke of. In the version I built from source, I just copied the old XdmfReader in the Code, but I´m wondering why this

Re: [Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Adriano Gagliardi
I was looking for this the other week too. To save a state: servermanager.SaveState() To load a state: servermanager.LoadState() If there is a command you are looking for that doesn't appear using dir(), then try dir(servermanager) as it may be hiding in there somewhere. Cheers, Adriano

Re: [Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Fabian Wein
Hi Adriano, To save a state: servermanager.SaveState() To load a state: servermanager.LoadState() If there is a command you are looking for that doesn't appear using dir(), then try dir(servermanager) as it may be hiding in there somewhere. Thanks a lot. Fabian

Re: [Paraview] image (2d) in a 3D plot

2010-02-16 Thread Rafael Pacheco
Utkarsh What is the problem that you are facing? How are you trying to import the image? I am simply opening the png file when I have my 3D plot, what happens is that paraview opens a new window for a 2D plot. How should I import the image? thanks Rafael

Re: [Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Jean M. Favre
Fabian Wein wrote: Hi, I searched and googled but could not find the python call for SaveData(). All the writers can be found under... servermanager.writers dir(servermanager.writers) ['AnimationSceneImageWriter', 'CSVWriter', 'DataSetCSVWriter', 'DataSetWriter', 'EnSightWriter',

Re: [Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Berk Geveci
Also, make sure to check these out: http://paraview.org/Wiki/ParaView/Python_Scripting http://paraview.org/Wiki/Python_GUI_Tools http://paraview.org/Wiki/Python_recipes Best, -berk On Tue, Feb 16, 2010 at 6:20 AM, Fabian Wein fabian.w...@am.uni-erlangen.de wrote: Hi Adriano, To save a

Re: [Paraview] image (2d) in a 3D plot

2010-02-16 Thread Sven Buijssen
Rafael, Just close the 2D view after importing the image, switch back to a 3D view and turn on visibility of the imported image by clicking on the grayed out eye next to it in the pipeline browser. You might have to reset the camera, though, to auto-adjust zoom etc. in order to be able to see the

Re: [Paraview] image (2d) in a 3D plot

2010-02-16 Thread Utkarsh Ayachit
Opps hit the reply a bit too quickly what I was adding as a prefix was follows: if you directly import the image, it may be a bit tricky to position it in the 3D view. On Tue, Feb 16, 2010 at 9:46 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: If you directly You can alternatively

Re: [Paraview] problems with xdmf-files

2010-02-16 Thread Utkarsh Ayachit
Natalie, Can you post a sample of your xdmf? Utkarsh On Tue, Feb 16, 2010 at 5:43 AM, Natalie Happenhofer natalieh...@hotmail.com wrote: Yes, I noticed that CVS ParaView has a newer version of Xdmf Reader, the problem is, that the files, that were read without problems in ParaView 3.4.0, now

[Paraview] Wave propagation animation

2010-02-16 Thread Javier Cabezas Rodríguez
Hello, I am simulating a wave propagation in a discretized 3D volume. I have a sequence of raw float data files that contain the intensity of all the discretized cells of the wavefield for each time step. I would like to create an animation to see how the wave propagates within the volume but I

[Paraview] Adding interface to vtkVertexGlyphFilter

2010-02-16 Thread David Doria
Can we add an interface to vtkVertexGlyphFilter? Many times a data set will have geometry which is supposed to be interpreted as 0D topology, but in Paraview nothing is displayed. A sphere glyph with a small radius works, but for big data sets it is not practical. Either the Filters-Glyph could

Re: [Paraview] Adding interface to vtkVertexGlyphFilter

2010-02-16 Thread David E DeMarle
The current glyph filter will let you pick 2D glyph, vertex, which just draws a GL_POINT. Alternatively their is the point sprite mapper plugin, which does much much more. David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Tue,

Re: [Paraview] Adding interface to vtkVertexGlyphFilter

2010-02-16 Thread David Doria
On Tue, Feb 16, 2010 at 3:17 PM, David E DeMarle dave.dema...@kitware.com wrote: The current glyph filter will let you pick 2D glyph, vertex, which just draws a GL_POINT. Alternatively their is the point sprite mapper plugin, which does much much more. David E DeMarle Ah, 2D Glyph then shows