[Paraview] ParaView Digest, Vol 94, Issue 45

Abdullahi Sanusi scontact101 at gmail.com
Thu Feb 16 15:31:46 EST 2012


I downloaded and built ParaView 3.12.0 from source to my Window vista
(32bit) and Windows7 (64bit). When I try selecting more than one point
from     a point cloud by holding the control key and using mouse to select
I get     the output message below with only the new point selected
(without the     previous point selected).
Output Message: Generic Warning: In
C:\ParaView\ParaViewCore\ServerManager\vtkSMPropertyHelper.cxx, line 399
Call not supported for the current property type.
Please, can someone help me out.
Cheers.


On Thu, Feb 16, 2012 at 5:00 PM, <paraview-request at paraview.org> wrote:

> Send ParaView mailing list submissions to
>        paraview at paraview.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://www.paraview.org/mailman/listinfo/paraview
> or, via email, send a message with subject or body 'help' to
>        paraview-request at paraview.org
>
> You can reach the person managing the list at
>        paraview-owner at paraview.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of ParaView digest..."
>
>
> Today's Topics:
>
>   1. Re: troubles with pipeline asynchronous update
>      (Biddiscombe, John A.)
>   2. Python: opening time-series of files, adding glyphs
>      (V?clav ?milauer)
>   3. Re: Python: opening time-series of files, adding glyphs
>      (Deij, Menno)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 16 Feb 2012 07:33:49 +0000
> From: "Biddiscombe, John A." <biddisco at cscs.ch>
> Subject: Re: [Paraview] troubles with pipeline asynchronous update
> To: Nadir Raimondo <raimondo at ismb.it>, "paraview at paraview.org"
>        <paraview at paraview.org>
> Message-ID: <50320452A334BD42A5EC72BAD214509906A3ED71 at MBX20.d.ethz.ch>
> Content-Type: text/plain; charset="us-ascii"
>
> Nadir,
>
> sorry I missed this message so didn't reply.
>
> >
> TcpNotificationSocket is a QTcpSocket?
>
>  From the code, it seems that it is used only to send a signal to a slot
> to execute the pipeline update in the paraview gui thread (in fact, the
> socket is closed immediatly).
> Is this correct or is the socket used for "real" client/server
> communications?
> <
>
> you can ignore this, I just snipped a piece of our code, it is actually a
> message we received from 'somewhere else' to say that new data is ready and
> it is time for an update.
>
> the important part is
> >
> Is it possible to use something similar for sending the signal from a
> thread using Qt::BlockingQueuedConnection?
> <
> exactly. If you are going to update the pipeline, you have to do it on the
> same thread that the paraview gui uses, so from any other thread of your
> own, you send a message to the main paraview thread and from there you
> actually call updatepipeline etc.
>
> JB
>
>
> ------------------------------
>
> Message: 2
> Date: Thu, 16 Feb 2012 13:00:28 +0100
> From: V?clav ?milauer <eu at doxos.eu>
> Subject: [Paraview] Python: opening time-series of files, adding
>        glyphs
> To: paraview at paraview.org
> Message-ID: <4F3CEFDC.1040903 at doxos.eu>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> Hello,
>
> I would like to automatize my routine tasks with paraview, but perhaps
> my lack of better understanding of VTK makes
> http://paraview.org/Wiki/ParaView/Python_Scripting not as instructive as
> I would like to. Could I get short commands which will do the following?
>
> 1. Open a time-series of files with embedded number (File - Open -
> fileName...vtu). The OpenDataFile function does not hadle the ...
> ellipsis. I used the glob.glob module instead, but it does not sort
> numerically; moreover, repeated calls to OpenDataFile do not create new
> time points.
>
> 2. Once the pipeline is ready I would like to add Arrow/Spheres/...
> glyphs and make the original white points invisible.
>
> Thanks for help,
>
> Vaclav
>
>
> ------------------------------
>
> Message: 3
> Date: Thu, 16 Feb 2012 12:16:31 +0000
> From: "Deij, Menno" <M.Deij at marin.nl>
> Subject: Re: [Paraview] Python: opening time-series of files, adding
>        glyphs
> To: V?clav ?milauer <eu at doxos.eu>,      "paraview at paraview.org"
>        <paraview at paraview.org>
> Message-ID:
>        <73B078BEA820DF42BF6A144D69A9B315098D20 at MAR160N1.marin.local>
> Content-Type: text/plain; charset="iso-8859-2"
>
> Hi Vaclav,
>
> What helps me greatly in writing Python scripts is to use Tools->Start
> trace in ParaView. Then perform the actions you want, followed by
> Tools->Stop trace. This will show you which commands were executed in
> Python code.
>
> Also, if your tasks are always the same, but with different data sets, you
> can save and load state. Upon loading a statefile in ParaView, it will ask
> you to specify the readers. This lets you create a state and re-use it with
> other datasets.
>
> Both approaches have their limits and don't always work 100% in my (also
> limited) experience.
>
> Good luck!
>
>
> Menno
>
>
>
> dr. ir. Menno A. Deij
> Software Engineer
> Maritime Simulation Group
> E mailto:M.Deij at marin.nl
> T +31 317 49 35 06
>
> MARIN
> 2, Haagsteeg, P.O. Box 28, 6700 AA Wageningen, The Netherlands
> T +31 317 49 39 11, F , I www.marin.nl
>
> -----Original Message-----
> From: paraview-bounces at paraview.org [mailto:paraview-bounces at paraview.org]
> On Behalf Of V?clav ?milauer
> Sent: Thursday, February 16, 2012 1:00 PM
> To: paraview at paraview.org
> Subject: [Paraview] Python: opening time-series of files, adding glyphs
>
> Hello,
>
> I would like to automatize my routine tasks with paraview, but perhaps
> my lack of better understanding of VTK makes
> http://paraview.org/Wiki/ParaView/Python_Scripting not as instructive as
> I would like to. Could I get short commands which will do the following?
>
> 1. Open a time-series of files with embedded number (File - Open -
> fileName...vtu). The OpenDataFile function does not hadle the ...
> ellipsis. I used the glob.glob module instead, but it does not sort
> numerically; moreover, repeated calls to OpenDataFile do not create new
> time points.
>
> 2. Once the pipeline is ready I would like to add Arrow/Spheres/...
> glyphs and make the original white points invisible.
>
> Thanks for help,
>
> Vaclav
> _______________________________________________
> 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:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>
> ------------------------------
>
> _______________________________________________
> 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:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>
> End of ParaView Digest, Vol 94, Issue 45
> ****************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.paraview.org/pipermail/paraview/attachments/20120216/682639a7/attachment-0001.htm>


More information about the ParaView mailing list