Re: [Paraview] Viewing an Image Stack?

2010-04-20 Thread Christian Werner
As far as I know you will have to write your own ServerManager .xml file that adds the existing vtkTIFFReader in such a way that it will read a complete stack of images instead of just the first one. The vtkTIFFReader is definitely able to read volumes, so there will be a way to have a

[Paraview] Problem to compile Paraview (ifort)

2010-04-20 Thread Stéphane Le Borgne
Hi all, I try to compile Paraview but now i have this problem : [ 44%] Built target vtkChartsPython Linking CXX executable ../../../bin/pvtkpython /opt/cluster/intel/fce/10.1.021/lib/libimf.so: warning: warning: _feupdateenv is not implemented and will always fail_

[Paraview] Display given node IDs from Ensight Gold file

2010-04-20 Thread Manuel González
I would like to display the given node IDs in an Ensight Gold geometry file. I tried it with the Selection Inspector ( Display Style Point Label: visible (Label mode = Point IDs), but then Paraview displays numbers starting from 0, not the numbers given as node IDs in the geometry file. For

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-20 Thread Jalel Chergui (LIMSI-CNRS) jalel.cher...@limsi.fr
Hi, Paul == Paul Melis paul.me...@sara.nl writes: Paul Hi Sven, Sven Buijssen wrote: (off the list for the moment while discussing some technical details) Paul [taking back to the list] I managed to compile PV 3.8 RC1

Re: [Paraview] Display given node IDs from Ensight Gold file

2010-04-20 Thread David E DeMarle
You can choose from any of the arrays in the data to make selection labels, ParaView uses the vtk index by default. Is the ensight node ID array not available under the Label Mode drop down menu? David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone:

[Paraview] Magic Crop Filter

2010-04-20 Thread Christian Werner
Hi! Today, I made a very interesting experience. I wanted to have the vtkImageClip functionality available in Paraview and performed the same steps as always to get a Paraview-Plugin out of a VTK Filter. I compiled the plugin, called it ImageClip and copied it over to my Paraview Plugin

Re: [Paraview] Magic Crop Filter

2010-04-20 Thread Favre Jean
ParaView has already defined a filter with the following specs: SourceProxy name=ImageClip class=vtkImageClip label=Crop you may find the full description in the source code at Servers/ServerManager/Resources/filters.xml - Jean M. Favre Swiss National Supercomputing Center

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-20 Thread Sven Buijssen
Hi Paul, Sven Buijssen wrote: (off the list for the moment while discussing some technical details) [taking back to the list] I managed to compile PV 3.8 RC1 (http://www.paraview.org/files/v3.8/ParaView-3.8.0-RC1.tar.gz) on a 32bit openSuSE 11.1 system, with any of cmake 2.6.4, 2.8.0

[Paraview] Time dependant field in Ensight Gold Format

2010-04-20 Thread Thomas PEDOT
Hi, I have a set of 10 time dependant solutions written in Ensight Gold format. I try to open them with precompiled version 3.6.2 or 3.8-RC1 on linux and MacosX. The first time step file is well loaded. When I try to play a sequence or to watch another time step I have a segmentation fault

Re: [Paraview] Time dependant field in Ensight Gold Format

2010-04-20 Thread Zhanping Liu
Thomas: Is that possible to send me the dataset for me to debug it? Thanks. -Zhanping On Tue, Apr 20, 2010 at 8:10 AM, Thomas PEDOT pe...@cerfacs.fr wrote: Hi, I have a set of 10 time dependant solutions written in Ensight Gold format. I try to open them with precompiled version

Re: [Paraview] Display given node IDs from Ensight Gold file

2010-04-20 Thread Zhanping Liu
Hi Manuel: It works fine on my side (CVS head + WinXP + VS90) with a sample dataset (see the attached snapshot). Can you send me your dataset (if possible the state file)? Thanks. -Zhanping 2010/4/20 Manuel González iinmg...@ucv.udc.es No, the only option available in the Label

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-20 Thread Utkarsh Ayachit
Sven, Attached is a patch that may resolve this issue. Can you give it a try? Thanks Utkarsh On Tue, Apr 20, 2010 at 7:49 AM, Sven Buijssen sven.buijs...@tu-dortmund.de wrote: Hi Paul, Sven Buijssen wrote: (off the list for the moment while discussing some technical details) [taking back

Re: [Paraview] Accelerated volume rendering in 3.8.0-RC1?

2010-04-20 Thread Moreland, Kenneth
There is no direct way to do that. The problem is that image data is constrained to have uniform spacing and be axis aligned whereas structured grids are not. You could build a filter to do the conversion, but it would have to rely on resampling or warping of the grid. -Ken On 4/19/10 8:16

[Paraview] 3.8.0-rc1 compile error

2010-04-20 Thread Orion Poplawski
I'm getting the following compiling 3.8.0-rc1 on Fedora rawhide (with qt 4.7.0). I don't see it on Fedora 12 with qt 4.6.2 so it looks like a qt issue. Anyone tried compiling paraview with 4.7.0 yet? [or...@mock1 result]$ grep -F pqCameraDialog build.log [ 91%] Generating

Re: [Paraview] trouble reading in netCDF file

2010-04-20 Thread Moreland, Kenneth
This is odd. Your header states that it follows the CF convention, but your description of the data is clearly incompatible with the CF convention. Could you send me a sample data set? -Ken On 4/19/10 7:56 PM, Joel Culina joel.cul...@acadiau.ca wrote: Well, typing ncdump -h file, I get

Re: [Paraview] 3.8.0-rc1 compile error

2010-04-20 Thread Utkarsh Ayachit
Don't think anyone here has tried Qt 4.7 yet. Either case, ParaView will be officially supporting only Qt 4.6 for the next two releases so it's a bit too early for start switching to Qt 4.7 :). Utkarsh On Tue, Apr 20, 2010 at 11:25 AM, Orion Poplawski or...@cora.nwra.com wrote: I'm getting the

Re: [Paraview] Problem to compile Paraview (ifort)

2010-04-20 Thread Utkarsh Ayachit
You can set additional linker flags using CMAKE_EXE_LINKER_FLAGS, CMAKE_SHARED_LINKER_FLAGS and/or CMAKE_MODULE_LINKER_FLAGS 2010/4/20 Stéphane Le Borgne stephane.lebor...@univ-pau.fr: Hi all, I try to compile Paraview but now i have this problem : [ 44%] Built target vtkChartsPython

Re: [Paraview] Creating Animations in Paraview, where's the Animation Inspector

2010-04-20 Thread Utkarsh Ayachit
Test recording and animations are totally different things. However, if all you want to do perform a sequence of actions for your demo, then you may use the test playback functionality. Utkarsh On Mon, Apr 19, 2010 at 3:49 PM, Olumide 50...@web.de wrote: I'm running Paraview 3.8.0 (RC1). I've

Re: [Paraview] Use existing texture map for 3D surface

2010-04-20 Thread Eric E. Monson
Hey Olumide, If you're writing your data yourself and you already have texture coordinates calculated, then you shouldn't have to use my script at all -- you can just write the texture coordinates into your file and they will be loaded and ready to use when you open your vtp file. The script

Re: [Paraview] Find Data in Python

2010-04-20 Thread Utkarsh Ayachit
Christian, O-oh! We can't have our users going mad now can we :). Guess we are looking at this the wrong way, instead of working from the solution, let's start with the problem/use-case. Can you describe your use-case as simply as possibly. What's the goal here? What is the user doing? Utkarsh

Re: [Paraview] Magic Crop Filter

2010-04-20 Thread Eric E. Monson
Hey Christian, I'm definitely not an expert in this, but just so you know, there are some ways of getting information about your data set automatically to fill default values in the auto-generated GUI panels. All of this is covered in Ch 18.6, Server Manager XML, in the ParaView Guide, and

Re: [Paraview] Display given node IDs from Ensight Gold file

2010-04-20 Thread Manuel González
Zhanping: I send attached a minimal Ensight Gold dataset in ASCII format: - case file. - geometry file. - snapshot of the result I get. - state file after capturing the snapshot. As you can see in the snapshot, the problem is that Paraview displays 0 and 1 as node labels, instead of the

Re: [Paraview] 3.8.0-rc1 compile error

2010-04-20 Thread Orion Poplawski
On 04/20/2010 09:50 AM, Utkarsh Ayachit wrote: Don't think anyone here has tried Qt 4.7 yet. Either case, ParaView will be officially supporting only Qt 4.6 for the next two releases so it's a bit too early for start switching to Qt 4.7 :). It appears that Fedora 14 will have 4.7, so if I'm

Re: [Paraview] 3.8.0-rc1 compile error

2010-04-20 Thread Berk Geveci
It sounds like some us should start work with 4.7 day to day. It may be a good idea to have a dashboard or two testing with 4.7 in a month or two. We are focusing on the release right now so it won't happen right away. -berk On Tue, Apr 20, 2010 at 1:08 PM, Orion Poplawski or...@cora.nwra.com

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-20 Thread Sven Buijssen
Hi Utkarsh, The patch works partially. Both sequential and parallel builds are possible now, but only when not compiling against Mesa (and using VTK_USE_RPATH:BOOL=OFF). If one does, creating the help file fails, even though the mesa lib directory is part of my LD_LIBRARY_PATH: /usr/bin/cmake

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-20 Thread Utkarsh Ayachit
That's good news :). At least the dependency issue is solved. Dave will shortly commit a fix for not over-ridding the LD_LIBRARY_PATH when running SMExtractDocumentation. Utkarsh On Tue, Apr 20, 2010 at 1:33 PM, Sven Buijssen sven.buijs...@tu-dortmund.de wrote: Hi Utkarsh, The patch works

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-20 Thread Dave Partyka
It's checked in now. Give it a try and let me know. I am currently waiting for my own Linux build to finish rebuilding. On Tue, Apr 20, 2010 at 1:37 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: That's good news :). At least the dependency issue is solved. Dave will shortly commit a

Re: [Paraview] Display given node IDs from Ensight Gold file

2010-04-20 Thread Zhanping Liu
Manuel: Now I understand your question. This question was raised before by another user. It involves the choice of storing the points either on a global basis (based on the whole multi-block datatset) or on a local (per-block) basis (the one currently adopted by VTK for vtkMultiBlockDataSet).

Re: [Paraview] Display given node IDs from Ensight Gold file

2010-04-20 Thread Zhanping Liu
Manuel: If you go to the very beginning (the first paragraph) of page 483 of the EnSight manual ( http://vis.lbl.gov/NERSC/Software/ensight/docs82/UserManual.pdf), you will find out that the EnSight Gold format (unlike EnSight6) adopts the block-based point indexing scheme as VTK employs.

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-20 Thread Utkarsh Ayachit
Dave, here's the commit fixing the dependency issue. Should go in the 3.8 branch as well: 7b8697382093f427fcd803a38e76bf86307def62 Utkarsh On Tue, Apr 20, 2010 at 2:10 PM, Dave Partyka dave.part...@kitware.com wrote: It's checked in now. Give it a try and let me know. I am currently waiting

Re: [Paraview] PV 3.8 RC1 + Cmake 2.8.1 failing?

2010-04-20 Thread Dave Partyka
Got it. On Tue, Apr 20, 2010 at 2:50 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Dave, here's the commit fixing the dependency issue. Should go in the 3.8 branch as well: 7b8697382093f427fcd803a38e76bf86307def62 Utkarsh On Tue, Apr 20, 2010 at 2:10 PM, Dave Partyka

[Paraview] vtu converter

2010-04-20 Thread wastrel
Hi all, is there a standalone program which is able to convert vtu file from the append format to binary format? Thanks! ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

[Paraview] Problem compiling StreamingParaView 3.8.0-rc1

2010-04-20 Thread Orion Poplawski
Getting the following on Fedora 12 with 3.8.0-rc1. Looks like -I/usr/include/QtGui isn't being added here? It is being added elsewhere... [ 99%] Building CXX object Applications/StreamingParaView/CMakeFiles/streaming_paraview-real.dir/streamingMainWindow.cxx.o cd

Re: [Paraview] Problem compiling StreamingParaView 3.8.0-rc1

2010-04-20 Thread David E DeMarle
I will take a look. David E DeMarle Kitware, Inc. RD Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Tue, Apr 20, 2010 at 5:05 PM, Orion Poplawski or...@cora.nwra.com wrote: Getting the following on Fedora 12 with 3.8.0-rc1.  Looks like

Re: [Paraview] Problem compiling StreamingParaView 3.8.0-rc1

2010-04-20 Thread Orion Poplawski
On 04/20/2010 03:09 PM, David E DeMarle wrote: I will take a look. Actually, looks like a case issue - QShortCut vs QShortcut -- Orion Poplawski Technical Manager 303-415-9701 x222 NWRA/CoRA DivisionFAX: 303-415-9702 3380 Mitchell Lane

Re: [Paraview] Use existing texture map for 3D surface

2010-04-20 Thread Olumide
Thanks Eric. It worked like magic :) . ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the ParaView Wiki at:

Re: [Paraview] Fullscreen Screenshot/Animation

2010-04-20 Thread Olumide
Does this feature exist? If not, would Paraview developers kindly consider it for future releases? It would be a much welcome. Thanks, - Olumide ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] Use existing texture map for 3D surface

2010-04-20 Thread Olumide
Erm ... it appears I spoke in haste ... The some of the vertices of the objects I'm trying to texture have more than one texture coordinates. For example, refer to the right part of the screenshot (not mine): http://tinyurl.com/y3sqtbt You will see that vertices in the midline of the face

Re: [Paraview] Fullscreen Screenshot/Animation

2010-04-20 Thread Scott, W Alan
This is bug number 9072. Alan -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Olumide Sent: Tuesday, April 20, 2010 4:58 PM To: paraview@paraview.org Subject: Re: [Paraview] Fullscreen Screenshot/Animation Does this feature

Re: [Paraview] Export Fullscreen Screenshot/Export Fullscreen Animation

2010-04-20 Thread Olumide
Thanks Alan. Just to be absolutely sure I'm understood, I'm referring to the ability to export screenshots and and animations at fullscreen resolutions. I'm aware that Paraview 3.8 (RC1) has a fullscreen feature. The problem is that its not possible to export screenshots and animations at

Re: [Paraview] Export Fullscreen Screenshot/Export Fullscreen Animation

2010-04-20 Thread Scott, W Alan
I added a note to the bug requesting the ability to export fullscreen screenshots and animations. (Since it is my bug...) Thanks, Alan -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Olumide Sent: Tuesday, April 20, 2010 7:21