[Paraview] Fwd: vtkStripper with programmable source

2012-11-15 Thread edd cmaugo
Hi, Is it possible to use a vtkStripper with the 3.98.0-RC1 on a programmable filter ? If I do : from paraview import vtk stripper = vtk.vtkStripper() I've got : AttributeError: 'module' object has no attribute 'vtkStripper' With the 3.14, there's no error. Also, there is much more things

Re: [Paraview] Fwd: vtkStripper with programmable source

2012-11-15 Thread Sebastien Jourdain
Hi Eddy, the reason for that is we are missing a bunch of import in ${PV_SRC}/Wrapping/Python/paraview/vtk/__init__.py But if you add that line, that will solve your vtk.vtkStripper() call. from vtkFiltersCorePython import * I'll push more vtk module into __init__.py so that should be

Re: [Paraview] Paraview-VTK Legacy Format Data File

2012-11-15 Thread Samuel Key
Dan, Your question is not entirely clear to me. Possibly the simplest way is to use two separate *.vtk files, one that only has the lines and the other that only has the "Rect's." ParaView will read both files and display the results either overlaid or in two

Re: [Paraview] Paraview-VTK Legacy Format Data File

2012-11-15 Thread Daniel Levitus
Sam, While that would work, my goal is to maintain 1 data file. The two files I attached are the same except one has lines and one doesn't. I only included both so it wouldn't be necessary for you to delete the code yourself. Eventually, there is more I would like to include in this file (node

Re: [Paraview] Paraview - VTKExtensions

2012-11-15 Thread Utkarsh Ayachit
*** THIS IS EXPERIMENTAL AND NOT REGULARLY TESTED YET So there is some support for doing that on linux. When configuring with Cmake, set your CMAKE_INSTALL_PREFIX correctly and then turn on PARAVIEW_INSTALL_DEVELOPMENT_FILES, which is an advanced CMake option. Then on make install, ParaView

Re: [Paraview] netcdf time series

2012-11-15 Thread Moreland, Kenneth
Yes, having the variable with a different name as the dimension is a problem. If the name is not the same, then the reader will not pick up the variable as a description of the dimension. Another problem is that the Time variable should only have one dimension that is Time. Your variable has a

Re: [Paraview] pvtu files

2012-11-15 Thread Utkarsh Ayachit
This is currently no supported. Looking at vtkXMLPDataReader::CreatePieceFileName(..), the value of Source attribute is always treated as a being relative to the location of the pvtu file. Utkarsh On Wed, Nov 14, 2012 at 11:52 AM, Tom T tomt...@yahoo.com wrote: Hi everyone, I am trying to

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Fred Nugen
Awesome, thanks! It was located at git://git.cscs.ch/ArrowGlyph.git it may still be there, I don't know. I have a tarball at http://users.ices.utexas.edu/~nooj/tacc/ArrowGlyph.gitrepo.tgz I'm trying to push it to github.com/nooj/ArrowGlyph but don't hold your breath. i don't know how

Re: [Paraview] ANN: ParaView 3.98.0, Release Candidate 1 now available for download

2012-11-15 Thread Utkarsh Ayachit
Gena, The fonts issue seem to be resolved on the nightly binaries. Can you give them a try? http://paraview.org/paraview/resources/software.php (pick Nightly in the Version combo-box). Utkarsh On Sat, Nov 10, 2012 at 5:36 AM, Gena Bug archaero...@mail.ru wrote: Oops, forgot about screenshot

Re: [Paraview] Paraview-VTK Legacy Format Data File

2012-11-15 Thread Daniel Levitus
Sam, I feel I should go back an elaborate a little bit. My goal is to create an arbitrary data file that will represent a crack in a material. This crack will be modeled as a triangular mesh with the following data defined by the user: Nodes (points) Connectivities (polygons) Crack Fronts

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Robert Maynard
This should work: git remote add github g...@github.com:nooj/ArrowGlyph git push github master:master On Thu, Nov 15, 2012 at 2:32 PM, Fred Nugen noo...@gmail.com wrote: Awesome, thanks! It was located at git://git.cscs.ch/ArrowGlyph.git it may still be there, I don't know. I have a

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Utkarsh Ayachit
I've added a bug: http://www.vtk.org/Bug/view.php?id=13660 It's on it's way (current in git-next). On Thu, Nov 15, 2012 at 2:32 PM, Fred Nugen noo...@gmail.com wrote: Awesome, thanks! It was located at git://git.cscs.ch/ArrowGlyph.git it may still be there, I don't know. I have a

Re: [Paraview] paraview 3.98rc1 and protobuf

2012-11-15 Thread Utkarsh Ayachit
VTK_USE_SYSTEM_PROTOBUF ON is not supported currently. However if someone in the community is interested in supporting that and would like us to integrate patches into ParaView to enable the same, we'll be more than happy to do it. Utkarsh On Mon, Nov 12, 2012 at 9:08 PM,

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Fred Nugen
Maybe I needed nooj@github, instead of git@github? I thought maybe it would work since the repo is created and public... Now I don't know how to remove or modify the remote. Here is my command history: cozumel:~/www nooj$ cd tacc/ArrowGlyph/ (master) cozumel:~/www/tacc/ArrowGlyph nooj$ git

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Fred Nugen
Cool! My role here is to get this into the public domain so anyone can do with it what they please. Is my work done? If not, what else should I do? Utkarsh Ayachit wrote: I've added a bug: http://www.vtk.org/Bug/view.php?id=13660 It's on it's way (current in git-next). On Thu, Nov 15,

Re: [Paraview] system hdf5 and 3.98rc1

2012-11-15 Thread Utkarsh Ayachit
What cmake version are you using and what is your HDF5_DIR variable set to, if at all? Utkarsh On Mon, Nov 12, 2012 at 9:45 PM, fbis...@slingshot.co.nz wrote: Another problem I have now is with system hdf5. I get the following: Disabling NETCDF4 support since HDF5_HL is missing. Yet I have

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Robert Maynard
I believe the way to delete a remote is by name not url so it would be: git remote rm github On Thu, Nov 15, 2012 at 3:38 PM, Fred Nugen noo...@gmail.com wrote: Cool! My role here is to get this into the public domain so anyone can do with it what they please. Is my work done? If not,

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Fred Nugen
I believe the way to delete a remote is by name not url so it would be: git remote rm github so right! but they still hung up on me when I tried to do the push. (master) cozumel:~/www/tacc/ArrowGlyph nooj$ git remote rm github (master) cozumel:~/www/tacc/ArrowGlyph nooj$ git remote add

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Robert Maynard
Have you verified that your ssh key is working with github? You can follow steps 4 and 5 on the github generating ssh key page( https://help.github.com/articles/generating-ssh-keys) to make sure everything is good. On Thu, Nov 15, 2012 at 3:55 PM, Fred Nugen noo...@gmail.com wrote: I

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Fred Nugen
Have you verified that your ssh key is working with github? I haven't. I deleted all the id_rsa keys and the known_hosts file and hoped it would go back to password authentication. Same problem. Then I tried https, and got something else I don't understand (see below). I read the note

Re: [Paraview] [EXTERNAL] Re: Still cannot add to selection with Crtl key

2012-11-15 Thread Utkarsh Ayachit
And it works for me just fine for me on Windows too :/. Here is the exact sequence of actions in a clean paraview 1. Create Sphere 2. Hit Apply 3. Type s, ParaView enters selection mode (Select Cells On) 4. Click and drag in the 3D view, some cells get selected. 5. Type s, ParaView enters

Re: [Paraview] [EXTERNAL] Re: Still cannot add to selection with Crtl key

2012-11-15 Thread Utkarsh Ayachit
I tried this windows (master pull from about last Friday, November 10), and it does not work. Not sure if it is related, but my debug build outputs the following warning: Generic Warning: In ..\..\..\..\..\src\ParaView3\ParaViewCore\ServerManager\Core\vtkSMPropertyHelper.cxx, line 408

Re: [Paraview] I have a working module I'd like to contribute

2012-11-15 Thread Fred Nugen
PUFECT! you are wonderful! it is now living at https://github.com/nooj/ArrowGlyph ___ 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

Re: [Paraview] [EXTERNAL] Re: Still cannot add to selection with Crtl key

2012-11-15 Thread Scott, W Alan
Can.ex2. I just selected cells on the base. Note that I was testing remote desktop, sometimes that is a factor. Alan From: Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com] Sent: Thursday, November 15, 2012 2:35 PM To: Zenker, Dr. Matthias Cc: Scott, W Alan; paraview@paraview.org Subject:

[Paraview] help with a simple script?

2012-11-15 Thread Celia Bremer
Hello, I want to write a script that would open a saved state, select one of the objects, and save data from that object as a VTI file series. I can do this with the GUI, but it takes many hours to do this to each file and I have about 60 of them, so a script would be nice since I could loop

Re: [Paraview] ANN: ParaView 3.98.0, Release Candidate 1 now available for download

2012-11-15 Thread Gena Bug
On Thursday 15 November 2012 23:33:08 Utkarsh Ayachit wrote: Gena, Hi, Utkarsh The fonts issue seem to be resolved on the nightly binaries. Can you give them a try? http://paraview.org/paraview/resources/software.php (pick Nightly in the Version combo-box). Can't check because it built with