Re: [Paraview] Selected proxy value not in the list: Arrow

2013-04-11 Thread Utkarsh Ayachit
In that case, you're better of using the simplified Python API. Refer to http://www.paraview.org/Wiki/ParaView/Python_Scripting Your script can be written simply as: from paraview import simple prsource = simple.ProgrammableSource(OutputDataSetType='vtkStructuredGrid') prsource.Script = ...

[Paraview] unix GUI build with 3.98.0 or 3.98.1

2013-04-11 Thread Kashiwa, Bucky
Dear ParaView Friends: I'm trying to build the ParaView GUI with no success (unix OS). The make fails in pqComponents with a message (copied below with system info, and ccmake command): 'No rule to make target

Re: [Paraview] unix GUI build with 3.98.0 or 3.98.1

2013-04-11 Thread Patrick O'Leary
Bucky, You probably didn't run $ git submodule update after you checked out 3.98.1 $ git checkout -b v3.98.1 Just a guess. Patrick On Thu, Apr 11, 2013 at 7:09 AM, Kashiwa, Bucky b...@lanl.gov wrote: Dear ParaView Friends: I'm trying to build the ParaView GUI with no success (unix

[Paraview] pvpython WriteImage output corrupted

2013-04-11 Thread Taylor, Erin M.
Hi all, I have a pvpython script that I've been developing and running successfully on Mac OSX 10.6.8. It renders a csv data set as points, then saves an image to file.It basically boils down to this: cr = CSVReader() cr.FileName = filename cr.UpdatePipeline() tp = TableToPoints(cr)

Re: [Paraview] pvpython WriteImage output corrupted

2013-04-11 Thread Taylor, Erin M.
I should also add that I can output images from the ParaView GUI in the linux machine with no problems. It's just pvpython WriteImage output that is corrupted. On 4/11/13 11:08 AM, Taylor, Erin M. erin.tay...@jhuapl.edu wrote: Hi all, I have a pvpython script that I've been developing and

Re: [Paraview] ParaView Digest, Vol 108, Issue 36

2013-04-11 Thread Сергей Дмитриев
: 505-988-7332    Cell: 505-795-5581    ==­==­==­==­==­==­==­=73 -- next part -- An HTML attachment was scrubbed... URL: http://www.paraview.org/pipermail/paraview/attachments/20130411/69082b08/attachment-0001.htm

Re: [Paraview] Selected proxy value not in the list: Arrow

2013-04-11 Thread Сергей Дмитриев
/attachments/20130411/69082b08/attachment-0001.htm -- Message: 4 Date: Thu, 11 Apr 2013 07:41:58 -0600 From: Patrick O'Leary patrick.ole...@kitware.com Subject: Re: [Paraview] unix GUI build with 3.98.0 or 3.98.1 To: Kashiwa, Bucky b...@lanl.gov Cc: ParaView@paraview.org

[Paraview] graphics performance problems

2013-04-11 Thread O'Shea, James
Has anyone had any issues running paraview on the latest iMacs (os version 10.8.3)? We recently bought a new iMac and the graphics performance is poor when dealing with large models. Interaction is choppy and barely tolerable, but the same input file runs smoothly on an older macbookpro

Re: [Paraview] vtkProbeFilter in Programmable Filter

2013-04-11 Thread Berk Geveci
Hi Jean, Did you figure it out? This is a bug. For now, use this: from paraview.vtk import vtkFiltersCore as filters filters.vtkProbeFilter() I'll push a fix soon that makes sure vtkProbeFilter is part of the paraview.vtk module. -berk On Fri, Apr 5, 2013 at 11:39 AM, Favre Jean

Re: [Paraview] vtkProbeFilter in Programmable Filter

2013-04-11 Thread Berk Geveci
I added a fix for this. It should show up in git master after Friday's review. On Thu, Apr 11, 2013 at 11:45 AM, Berk Geveci berk.gev...@kitware.comwrote: Hi Jean, Did you figure it out? This is a bug. For now, use this: from paraview.vtk import vtkFiltersCore as filters

Re: [Paraview] pvpython WriteImage output corrupted

2013-04-11 Thread Masquelet, Matthieu (GE Global Research)
I have experienced similar issues to a lesser level. Say if I'm looping over 20 files to generate snapshots for a movie, sometimes, 1 or 2 of these will be corrupted in a fashion similar to what is reported here. Also using 3.98.1 on Linux 64-bit, writing png files. Hope this helps, Matthieu

[Paraview] Python API problem

2013-04-11 Thread Zach Mullen
Hi guys, I'm writing a ParaViewWeb application in python and I'm running into trouble. I load the data source, which is a volume image (.mha) as follows: srcObj = simple.OpenDataFile(fullpath) simple.SetActiveSource(srcObj) rep = simple.Show() I have managed to get the bounds and color array

Re: [Paraview] Python API problem

2013-04-11 Thread Sebastien Jourdain
You need to update your ParaView to ParaView/master. The version that you have has some python wrapping issue. Seb On Thu, Apr 11, 2013 at 5:22 PM, Zach Mullen zach.mul...@kitware.comwrote: Hi guys, I'm writing a ParaViewWeb application in python and I'm running into trouble. I load the

Re: [Paraview] Python API problem

2013-04-11 Thread Zach Mullen
I am on the current master branch, git pull shows everything up to date... Is there something else I need to do? On Thu, Apr 11, 2013 at 5:53 PM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: You need to update your ParaView to ParaView/master. The version that you have has some

Re: [Paraview] Python API problem

2013-04-11 Thread Zach Mullen
Actually when I blew away my build tree and rebuild it appears to work now, thanks. On Thu, Apr 11, 2013 at 5:56 PM, Zach Mullen zach.mul...@kitware.comwrote: I am on the current master branch, git pull shows everything up to date... Is there something else I need to do? On Thu, Apr 11,