Re: [Paraview] [import error] Paraview Python on Windows

2015-05-01 Thread Ben Boeckel
[ Adding the list back to CC. ] On Fri, May 01, 2015 at 15:55:26 +0200, Jonas Asche wrote: Thank you for the reply, Are you only using P:\ParaView 4.2.0\bin or do you link to other folders as well? I ran with the following from Git bash (so that the environment was more easily modified). All

Re: [Paraview] Beginner's question: new data set with same filters. How?

2015-05-01 Thread Samuel Key
Utkarsh, I have had a similar problem as reported by S. T. Cohen. Your solution of manually removing the EndTime properties from XML State *.pvsm file has worked for me as well. (In my case, I was picking up two simulation results files both with a growing number of time steps. I removed

Re: [Paraview] [EXTERNAL] Re: coords not available

2015-05-01 Thread Scott, W Alan
Good explanation. Would it be worthwhile creating a filter that exposes them (i.e., coords, normals, texture coordinates, etc) if available, and creates them if not? Alan From: David E DeMarle [mailto:dave.dema...@kitware.com] Sent: Friday, May 01, 2015 10:58 AM To: Scott, W Alan Cc:

[Paraview] coords not available

2015-05-01 Thread Scott, W Alan
Why aren't coords available to filters in ParaView? I have a user that wants to threshold on one of the components of coord, and every time he has to use the calculator to get at this variable. Thanks, Alan ___ Powered by www.kitware.com Visit

[Paraview] Question about ParaView

2015-05-01 Thread Wu, James
Does ParaView supports selection in 3D volume render window? I want to get current mouse clicked x,y,z coordinates. ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please

Re: [Paraview] coords not available

2015-05-01 Thread David E DeMarle
Technically it is because VTK treats them differently than other arrays, and because for some data types (image data and rectilinear grid) you can't modify them without altering the data type and potentially blowing up memory consumption in the process. That said, I've often wanted an easy to use

Re: [Paraview] coords not available

2015-05-01 Thread Andy Bauer
Remember that image data and rectilinear grids don't explicitly store point locations. Can the cut filter be used instead? He can do the crinkle cut if he wants the entire cell. On Fri, May 1, 2015 at 12:51 PM, Scott, W Alan wasc...@sandia.gov wrote: Why aren’t coords available to filters in

Re: [Paraview] [EXTERNAL] Re: coords not available

2015-05-01 Thread Scott, W Alan
Andy, You are correct regarding image and rectilinear grids. And yes, in this particular case, a slice would probably work. But the real question isn’t about clipping, it’s about exposing the coords variable, making it available to users if they need it for something... Alan From: Andy

Re: [Paraview] Beginner's question: new data set with same filters. How?

2015-05-01 Thread Utkarsh Ayachit
Good to know. Like I said, it has been fixed in the development version of ParaView. Feel free to try the nightly binaries, if you'd like to test it out. Thanks Utkarsh On Fri, May 1, 2015 at 11:27 AM, Samuel Key samuel...@bresnan.net wrote: Utkarsh, I have had a similar problem as reported

Re: [Paraview] python script loading state file and replace the datafile

2015-05-01 Thread Utkarsh Ayachit
Fabian, The only way to this currently, is to use some of the XML processing libraries (either from ParaView) or modules provided by Python (https://docs.python.org/2/library/xml.html) to process the XML to change the filename in the state file before loading it. Utkarsh On Tue, Apr 28, 2015

Re: [Paraview] coords not available

2015-05-01 Thread David Thompson
Remember that image data and rectilinear grids don't explicitly store point locations. Can the cut filter be used instead? He can do the crinkle cut if he wants the entire cell. Now that we have data array subclasses that provide only iterator-based access, it might be a good idea to

[Paraview] [import error] Paraview Python on Windows

2015-05-01 Thread Jonas Asche
Hello, I am using ParaView-4.2.0-Linux-64bit-gl on Kubuntu 12.04. . I have some python scripts that create pictures and it is working fine. Now i want to use those scripts on Windows 7 64bit. I downloaded ParaView-4.2.0-Windows-64bit and changed PythonPath and Path variable as described in this

Re: [Paraview] [import error] Paraview Python on Windows

2015-05-01 Thread Ben Boeckel
On Fri, May 01, 2015 at 14:32:40 +0200, Jonas Asche wrote: Now i want to use those scripts on Windows 7 64bit. I downloaded ParaView-4.2.0-Windows-64bit and changed PythonPath and Path variable as described in this http://www.paraview.org/Wiki/ParaView/Python_Scriptingarticle: Are you running