Re: [Paraview] ParaViewWeb Server on Linux

2011-06-01 Thread katsumi.sekido
Dear Sebastien, hello, I re-install cmake from binary distribution, ccmake becomes to work! And I tried the abusolute path instead of the relative path, so the situation progressed.(Makefile has generated) But in make process, following error has occered.

Re: [Paraview] ParaViewWeb Server on Linux

2011-06-01 Thread Sebastien Jourdain
Hi Katsumi, this issue is related to a miss-matching version of ParaView and ParaViewWeb. This previous message explain how to fix that issue. http://markmail.org/message/ws3rufiq3lni2ffs Seb On Wed, Jun 1, 2011 at 3:16 AM, katsumi.sek...@unisys.co.jp wrote: Dear Sebastien, hello, I

[Paraview] Picking values in the Object Inspector like the cut and contour filter

2011-06-01 Thread Paul Edwards
Hi, I have created a filter where I would like to let the user pick values in a similar way to the contour and slice filter. Here is an extract from my XML file: DoubleVectorProperty name=MyValues command=SetMyValue label=My Values

Re: [Paraview] Picking values in the Object Inspector like the cut and contour filter

2011-06-01 Thread Utkarsh Ayachit
Paul, Both cut (pqCutPanel) and contour (pqContourPanel) panels are custom panels. We haven;t added support for the autogenerated panels to add the values widget (pqSampleScalarWidget) yet. You'll have to create a custom panel for it. Utkarsh On Wed, Jun 1, 2011 at 9:07 AM, Paul Edwards

[Paraview] Changing the texture of a pqDataRepresentation

2011-06-01 Thread Christoffer Green
Hello! I was trying (and failing) to change the image texture of a pqDataRepresentation in a plugin and I was wondering if anyone could lend a hand. This is the code I have: //this-Representation is a pqDataRepresentation*

Re: [Paraview] Changing the texture of a pqDataRepresentation

2011-06-01 Thread Utkarsh Ayachit
The texture property does not take a filename, it's a proxy-property that needs a source that produces an image-data that can be used as the texture. Look at code in ParaView/Qt/Components/pqTextureComboBox.cxx to see how this is done especially pqTextureComboBox::loadTexture(const QString

[Paraview] Representation

2011-06-01 Thread Luca Cinquepalmi
Hi all, I'm trying to load a vtk file in Paraview using a simple python script. My script is: from paraview.simple import * obj = OpenDataFile(/home/luca/3dVoxView/Volumes_Storage/geostat_interp/Vol.vtk) obj.Representation = 'Volume'

[Paraview] PV 3.10.1 computing vorticity from vector field

2011-06-01 Thread Stephen Wornom
What are the steps to compute the vorticity vector from the velocity vector? Stephen -- stephen.wor...@inria.fr 2004 route des lucioles - BP93 Sophia Antipolis 06902 CEDEX Tel: 04 92 38 50 54 Fax: 04 97 15 53 51 attachment:

Re: [Paraview] Representation

2011-06-01 Thread Utkarsh Ayachit
You have to do something like: obj = OpenDataFile(/home/luca/3dVoxView/Volumes_Storage/geostat_interp/Vol.vtk) repr = Show() repr.Representation = 'Volume' But you also need to setup lookup table and scalar opacity function for volume rendering. I'd recommend using the Python-Trace

Re: [Paraview] PV 3.10.1 computing vorticity from vector field

2011-06-01 Thread Tim Gallagher
1. If it's cell centered data, apply the CellDataToPointData filter. If it's point data, skip this step 2. Apply the ComputeDerivatives filter. Choose your velocity vector as the Vectors argument, set the Output Vector Type to Vorticity. I usually also set Output Tensor Type to nothing unless

Re: [Paraview] Picking values in the Object Inspector like the cut and contour filter

2011-06-01 Thread Paul Edwards
Ok thanks - I've created a custom panel just like pqCutPanel but now my filter only updates when something earlier in the pipeline is updated. e.g. for this pipeline: Source - MyFilter Changing MyFilter properties will allow me to apply but nothing happens. But if I change a property in Source

Re: [Paraview] Time Annotation of a single global number (or text)

2011-06-01 Thread David E DeMarle
I would use a python programmable source to read the file and produce the appropriate value (s) when it is asked by the pipeline. See http://paraview.org/Wiki/Here_are_some_more_examples_of_simple_ParaView_3_python_filters.#CSV_Reader_.28Source.29 and

[Paraview] paraviewweb on Solaris

2011-06-01 Thread Luca Cinquepalmi
Hi Seb, can you please tell me if you've tested ParaviewWeb on Solaris and if it works with no problem? thank you. Luca ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [Paraview] Picking values in the Object Inspector like the cut and contour filter

2011-06-01 Thread Utkarsh Ayachit
Did you forget to call Modified() in the vtk-filter when the values were modified? Utkarsh On Wed, Jun 1, 2011 at 11:16 AM, Paul Edwards paul.m.edwa...@gmail.com wrote: Ok thanks - I've created a custom panel just like pqCutPanel but now my filter only updates when something earlier in the

Re: [Paraview] paraviewweb on Solaris

2011-06-01 Thread Sebastien Jourdain
Hi Luca, I did not tested ParaViewWeb on Solaris, but if Paraview is working on your solaris, I think you will have a good chance that everything should work just fine. Just use use gcc instead of the Sun compiler. Seb On Wed, Jun 1, 2011 at 11:21 AM, Luca Cinquepalmi cinquepa...@planetek.it

[Paraview] Lines, Splines and Tubes

2011-06-01 Thread Brian C. Panneton (CONTR)
I have a vtkUnstructuredGrid with a bunch of points and lines. For each of the lines I want to overlay a tube and change it so it arcs like a rainbow. What is the best way to go about doing this? Right now it looks like I need to use splines and tubes, however it seems difficult to create a

[Paraview] Concept: A world without the Apply button

2011-06-01 Thread Utkarsh Ayachit
Folks, I have been investigating the ability to create pipelines in ParaView without having to hit Apply at every single stage in the pipeline. This would make it much easier to deal with really large data in a usage scenario where the scientist is fairly familiar with the visualization pipeline

Re: [Paraview] Concept: A world without the Apply button

2011-06-01 Thread David Thompson
Hi Utkarsh, I like the idea. One possible problem that comes to mind is filters that produce different output types based on the input. Will enough of the metadata be passed through the pipeline before Execute() is called for those filters to hint at their output type? Otherwise, you'll be

Re: [Paraview] Concept: A world without the Apply button

2011-06-01 Thread David Thompson
I like the idea. One possible problem that comes to mind is filters that produce different output types based on the input. Will enough of the metadata be passed through the pipeline before Execute() is called for those filters to hint at their output type? Otherwise, you'll be forced to

Re: [Paraview] Concept: A world without the Apply button

2011-06-01 Thread Utkarsh Ayachit
Dave, Output types become a problem only for composite-datasets, for others data-types are known after RequestDataObject pass which happens before RequestData(). I am still not sure how (or if) to deal with composite datasets in this case. We can expect the reader to give meta-data for composite

Re: [Paraview] Concept: A world without the Apply button

2011-06-01 Thread David Thompson
Utkarsh, I agree that composite readers (and probably other composite filters) can provide the dataset structure in the RequestDataObject pass, but I don't know that many currently do. Certainly the ExodusIIReader doesn't. It would be easy enough to provide an empty hierarchy of *all the

[Paraview] Map Image To Plane

2011-06-01 Thread Brian C. Panneton (CONTR)
Is it possible from within a reader plugin to read in an image and map it to a plane? It seems that I must use a texture and an actor in order to do this. Thanks, Brian Panneton ___ Powered by www.kitware.com Visit other Kitware open-source projects

Re: [Paraview] Time Annotation of a single global number (or text)

2011-06-01 Thread David E DeMarle
Please keep the discussion on the list so that everyone can contribute to and benefit from the answers. I am not sure what you mean by create a container. I do not think you can do what you want purely via using GUI (hopefully someone out there will correct me) so unfortunately you will have to

Re: [Paraview] Time Annotation of a single global number (or text)

2011-06-01 Thread David E DeMarle
Actually I take some of that back. You can do it via the gui with the following hack. Use Sources - Time Source with default properties and save it to create a template file. Ascii pvd format or xdmf should work. Edit the cell values in the vtu files to contain what you have in column 2 and the

[Paraview] .deb packaging for PV

2011-06-01 Thread pratik
Hi Everyone, When building ParaView(3.10.1) If i set CPACK_BINARY_DEB to ON will a .deb package be created, or do i have to do something else too? If it is created can you please tell me where in my build tree can i find it? Thanks in advance, Pratik