Re: [Paraview] Exporting VRML file series with python script

2015-03-24 Thread Sebastien Jourdain
try vrml.SetView(GetActiveView().SMProxy) On Tue, Mar 24, 2015 at 3:22 PM, Léo Pessanha wrote: > Hi, > > I would like to export a series of vtk files in the VRML format trough > scripting, i found a script in the mailing list but it doesnt seem to work > anymore > > http://public.kitware.com/p

Re: [Paraview] Build ParaViewWeb on windows

2015-05-18 Thread Sebastien Jourdain
Replace the following CMake lines # ParaViewWeb on Windows needs win32api which is not provided by default # For now the default behavior would be to disable it on Windows build if (WIN32) set(PARAVIEW_ENABLE_WEB OFF CACHE BOOL "" FORCE) else() cmake_dependent_option(PARAVIEW_ENABLE_WEB "Enabl

Re: [Paraview] Build ParaViewWeb on windows

2015-05-19 Thread Sebastien Jourdain
esolved externals >> D:\Files\ParaView431\build11\bin\Release\vtkPVAnimation-pv4.3.dll >> vtkPVAnimation >> >> Do I need vtkPVAnimation ? I only interested in ParaViewWeb, how can I >> turn that off from cmake (if ParaViewWeb do not require vtkPVAnimation). >> &

Re: [Paraview] Build ParaViewWeb on windows

2015-05-22 Thread Sebastien Jourdain
ite-packages\win32; > C:\Python27\Lib\site-packages\win32\lib; > > Thanks for your help > > > On Tue, May 19, 2015 at 9:49 PM, Sebastien Jourdain < > sebastien.jourd...@kitware.com> wrote: > >> Try to add that path to the following environment variable: >>

Re: [Paraview] Mismatched image size returned from ViewPort image render

2015-07-01 Thread Sebastien Jourdain
Can you change the remote X setting to have a larger resolution? Seb On Wed, Jul 1, 2015 at 4:22 PM, Scott Wittenburg < scott.wittenb...@kitware.com> wrote: > The "viewport.image.render" rpc call includes the browser viewport size as > a parameter, and the server-side peer window should resize i

Re: [Paraview] Zooming through the ParaViewWeb API

2015-07-01 Thread Sebastien Jourdain
Scott is right, the x,y values are normalized, so depending on your screen size if your image is 1000 pixel wide and you want to reflect a move of 10 pixel, you should send a x of 10/1000=0.01. On Wed, Jul 1, 2015 at 4:28 PM, Scott Wittenburg < scott.wittenb...@kitware.com> wrote: > Here is a sam

Re: [Paraview] using python or pvpython with Paraview

2015-09-02 Thread Sebastien Jourdain
1) /Applications/paraview2.app/Content/bin/pvpython ${your_script} 2) /{path_to_paraview}/bin/pvpython ${your_script} On Tue, Sep 1, 2015 at 4:01 PM, Ishan Tembhekar wrote: > Hello everyone, > > I have been using Paraview for a while with python scripts but every time > I used a script, I used t

Re: [Paraview] Cross Site collaborative visualization

2015-10-01 Thread Sebastien Jourdain
certainly setup a meeting before that and talk in more details about your goals and what that other project could do for you. Sebastien Jourdain ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/openso

Re: [Paraview] LiveArticles example with paraview 4.4

2015-10-06 Thread Sebastien Jourdain
Hi Livia, The error seems related to the following issue: http://localhost:9442/ws [HTTP/1.1 400 This server only speaks WebSocket subprotocols wamp.2.json.batched, wamp.2.json 10ms] Connection could not be established. embed.html:134:25 I'm not sure to understand why that could be, but I was wo

Re: [Paraview] LiveArticles example with paraview 4.4

2015-10-06 Thread Sebastien Jourdain
sn’t able to > replicate). > > Sorry for the noise > > > > Thanks > > Livia > > > > > > *From:* Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] > *Sent:* 06 October 2015 16:50 > *To:* Barazzetti, Livia (ISTB) > *Cc:* paraview@paravi

Re: [Paraview] pvpython and H5Part Issues

2015-10-21 Thread Sebastien Jourdain
Hi Amit, inside pvpython you should do the following from paraview.simple import * LoadDistributedPlugin('H5PartReader', ns=globals()) Then you should be good. Seb On Wed, Oct 21, 2015 at 12:36 PM, Amit Goel wrote: > I used GUI to generate a python script from the actions of visualizing > a

Re: [Paraview] ParaViewWeb on remote machine w/ port forwarding

2015-11-17 Thread Sebastien Jourdain
Hi Ken, One thing to be aware is that Apache 2.4.6 has a bug in the rewrite module for web socket. Hence the need to have 2.4.7+. Seb On Tue, Nov 17, 2015 at 3:12 PM, Scott Wittenburg < scott.wittenb...@kitware.com> wrote: > Hi Ken, > >Yes, ParaViewWeb supports either option, though optio

Re: [Paraview] ParaViewWeb on remote machine w/ port forwarding

2015-11-18 Thread Sebastien Jourdain
Sounds good. Thanks for trying this out. Seb On Wed, Nov 18, 2015 at 1:43 PM, Ken Mankoff wrote: > Hi Scott and Sebastien, > > Thanks for the replies. I will work though this with the IT team here > after Thanksgiving break, and post more questions then if they arise. > > -k. > ​ > _

Re: [Paraview] ParaViewWeb JS API: get camera position

2015-12-01 Thread Sebastien Jourdain
I don't see any but you can add your own method such as @exportRpc("viewport.camera.get") def getCamera(self, view_id): view = self.getView(view_id) return { focal: view.CameraFocalPoint, up: view.CameraViewUp, position: view.CameraPositi

Re: [Paraview] ParaviewWeb - Python Script

2015-12-30 Thread Sebastien Jourdain
Hi Ruggiero, It is definitely possible with ParaViewWeb. Either you embedded your initialization code within the Python Script that define the ParaViewWeb server or you can extend the pv_web_visualizer.py one to add a new argument which could be the path to the script you want to run at initializa

Re: [Paraview] ParaviewWeb - Python Script

2015-12-30 Thread Sebastien Jourdain
erver(options=args, protocol=_VisualizerServer) > > I am not very familiar with VTK programming. > > Thanks > Ruggiero > > > > On 30 December 2015 at 19:18, Sebastien Jourdain < > sebastien.jourd...@kitware.com> wrote: > >> Hi Ruggiero, >> >> It is definit

Re: [Paraview] ParaviewWeb - Python Script

2015-12-30 Thread Sebastien Jourdain
on, but I am not sure how I can run a script on > the server once it has been initiated with > > server.start_webserver(options=args, protocol=_VisualizerServer) > > I am not very familiar with VTK programming. > > Thanks > Ruggiero > > > > On 30 December 2015 at

Re: [Paraview] ParaViewWeb

2016-01-05 Thread Sebastien Jourdain
Just catching up here... ParaViewWeb is not built on Windows by default. It is possible but as it require an external dependency, we didn't make the jump on building it for Windows in our SuperBuild. Seb On Tue, Jan 5, 2016 at 9:46 AM, Nima Maftoon via ParaView < paraview@paraview.org> wrote: >

Re: [Paraview] Incorrect shading results in ParaViewWeb Local(VGL) mode

2016-01-18 Thread Sebastien Jourdain
Did you try the other WebGL option that is marked 'deprecated' ? On Mon, Jan 18, 2016 at 1:12 AM, Xue Junjie wrote: > It seems the Local(VGL) rendering mode in ParaViewWeb has issues with some > model files. > > How to reproduce the issue: > open the visualiser, selecte the data file: 'can.ext2'

Re: [Paraview] Incorrect shading results in ParaViewWeb Local(VGL) mode

2016-01-18 Thread Sebastien Jourdain
modify the frustum parameter(modify the 'far' value from 1e4 t > 1e5) to test the model in 'deprecated' mode. The code of 'local(cgl)' mode > is located in '/.../ext/core/vgl.min.js'. Do you know where is the WebGL > code of 'deprecated' mode? >

Re: [Paraview] Paraview Web communication with external program

2016-01-24 Thread Sebastien Jourdain
Hi Ruggiero, I'm not sure I understand each of the pieces here. But I'm pretty sure it is possible. For example, your second (python?) script could connect using the autobahn library with the server of the visualizer app to customize some settings. Seb On Sat, Jan 23, 2016 at 1:00 PM, Ruggiero

Re: [Paraview] Incorrect min/max valuedisplayed on the color legend in ParaViewWeb Local(VGL) mode

2016-01-27 Thread Sebastien Jourdain
This seems to be a bug with our VGL library. On Wed, Jan 27, 2016 at 8:21 PM, Junjie Xue wrote: > The min/max values on the color legend in ParaViewWeb Local(VGL) mode is > always displayed as '0.00'. The displayed well in remote and > Local(deprecated)modes. Don't know How to figure it out. A

Re: [Paraview] Paraview Web communication with external program

2016-01-28 Thread Sebastien Jourdain
Glad I was able to provide some hints... ;-) On Wed, Jan 27, 2016 at 8:47 PM, Ruggiero Guida wrote: > Thanks Sebastien for the tip. I have been doing some reading on the > subject and this seems exactly what I need. > > On Sun, 24 Jan 2016 at 23:50 Sebastien Jourdain < &g

Re: [Paraview] ParaViewWeb issues

2016-02-02 Thread Sebastien Jourdain
Hi Amit, I'm not familiar with the system package of ParaView on your OS, but usually the Python dependencies are managed within ParaView. So either you have a conflict between your system python library and the one embedded inside ParaView, or if that package is properly managed by the system, t

Re: [Paraview] ParaViewWeb issues

2016-02-02 Thread Sebastien Jourdain
matically installed using pip. I > guess they removed RouterSession to somewhere else. Installation > of autobahn==0.8.13 started the webserver and I was able to see pvweb home > page at local:8080 > > Thanks once again. > > Regards > > Amit > > > > On Feb 2,

Re: [Paraview] WebSocket connection failed: Error during WebSocket handshake: Unexpected response code: 404

2016-03-11 Thread Sebastien Jourdain
Hi Gabriel, do you mind sharing (privately if you prefer) your apache config as well as your launcher config? Thanks, Seb On Fri, Mar 11, 2016 at 4:12 AM, Gabriel Álvarez Castro < gabriel.alva...@usc.es> wrote: > Hi: > > > > We've installed ParaviewWeb 5.0 in a configuration of two machines: A

Re: [Paraview] WebSocket connection failed: Error during WebSocket handshake: Unexpected response code: 404

2016-03-14 Thread Sebastien Jourdain
gt; Regards, > > > > Gabriel. > > > > > > *De:* Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] > *Enviado el:* viernes, 11 de marzo de 2016 16:03 > *Para:* Gabriel Álvarez Castro > *CC:* paraview@paraview.org > *Asunto:* Re:

Re: [Paraview] WebSocket connection failed: Error during WebSocket handshake: Unexpected response code: 404

2016-03-14 Thread Sebastien Jourdain
ne". Perhaps, it is not enough explained in the guide... > > > > Thanks a lot. Regards, > > > > Gabriel. > > > > > > *De:* Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] > *Enviado el:* lunes, 14 de marzo

Re: [Paraview] WebSocket connection failed: Error during WebSocket handshake: Unexpected response code: 404

2016-03-15 Thread Sebastien Jourdain
; In the launcher configuration file in order to get it working. It would be > neccesary to correct it in updated documentation? > > > > > > Regards, > > > >Gabriel. > > > > > > *De:* Sebastien Jourdain [mailto:s

Re: [Paraview] WebSocket connection failed: Error during WebSocket handshake: Unexpected response code: 404

2016-03-15 Thread Sebastien Jourdain
nts > to “lo” network interface instead “eth0”, and doesn’t work. With > ${launcher_IP} is ok… > > > > Thanks again, > > > > Gabriel. > > > > > > *De:* Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] > *Enviado el:

Re: [Paraview] libGL error: failed to load driver: swrast

2016-03-21 Thread Sebastien Jourdain
Hi Rob, Are you planning to have a GPU on the server, or just a CPU? If you are targeting just CPU, you will have to build ParaView with OSMesa and llvmpipe (Which will provide somewhat slow rendering). Here is a documentation on how to build both of them: http://kitware.github.io/paraviewweb/docs

Re: [Paraview] libGL error: failed to load driver: swrast

2016-03-21 Thread Sebastien Jourdain
Hi Rob, Is it a headless machine or not? The pvw-setup is targeting a regular desktop computer with GPU and proper OpenGL drivers. The setup that I was mentioning earlier is a special setup when no GPU is available hence the need to build ParaView specifically for your hardware. So my question i

Re: [Paraview] libGL error: failed to load driver: swrast

2016-03-21 Thread Sebastien Jourdain
Yes the link I gave you is the good one for that: http://kitware.github.io/paraviewweb/docs/guides/os_mesa.html We have EC2/GPU images that are public and fully setup if you want to. I can give you the ami-xxx names if you want to. (Still have to publish that in a proper documentation online...)

Re: [Paraview] libGL error: failed to load driver: swrast

2016-03-21 Thread Sebastien Jourdain
The public AMI are below. Just beware that they require GPU. Otherwise, I agree with you, a docker image and/or some ansible playbook would be nice. I am not sure I will get to it that soon, so if you happen to build any of that and are willing to share with the community, then let me know, that wi

Re: [Paraview] building Paraview with OSMesa from source on Linux

2016-04-08 Thread Sebastien Jourdain
What did you set in CMake for your install path? Maybe you let the default be /usr/local or something like that which you don't have access to? If that's the case, just set the path to be something else where you can write. Seb On Sat, Apr 9, 2016 at 5:44 AM, Hart, Cynthia Joyce - (cyndyb) < cyn.

Re: [Paraview] Compile PV with Paraviewweb on Windows

2016-05-04 Thread Sebastien Jourdain
Hi Daniel, We are going to work on the Windows support in June for the next release of ParaView 5.1+. At the moment, building ParaViewWeb for windows won't be easy. But once we iron out the process, it will be back by default in our binaries. Seb 2016-05-04 4:45 GMT-06:00 Daniel Zuidinga : > He

Re: [Paraview] Mesa compilation

2016-05-04 Thread Sebastien Jourdain
Hi Daniel, here is an updated version of the documentation. We are in the process of migrating the documentation and code base. Once it will be done the later will be the official one. http://kitware.github.io/paraviewweb/docs/guides/os_mesa.html Moreover, if you are on linux and you are using t

Re: [Paraview] Setting up Paraview Web on a headless Fedora server with GPU

2016-05-05 Thread Sebastien Jourdain
You were on the right track with DISPLAY=:0 but I'm wondering if you setup a "virtual" monitor or if your "paraview" user is auto logged in a X session or if it stuck at the "login" panel? You can find some information about the virtual screen here: (Search for "Screen") http://kitware.github.io/

Re: [Paraview] Problem importing vtk inside pvpython

2016-05-05 Thread Sebastien Jourdain
I think you have VTK installed on your system which conflict with your ParaView one. Hence the segfault inside ParaView. Otherwise nothing should prevent you from doing pure VTK code in ParaView as long as you are aware of the possible issue when running remotely and/or in parallel. On Thu, May

Re: [Paraview] Setting up Paraview Web on a headless Fedora server with GPU

2016-05-06 Thread Sebastien Jourdain
+++ > > > and a lot of lines which contain just the repeating plus signs. > > > > > > > > On 05/05/16 16:23, Sebastien Jourdain wrote: > > You were on the right track with DISPLAY=:0 but I&

Re: [Paraview] Setting up Paraview Web on a headless Fedora server with GPU

2016-05-06 Thread Sebastien Jourdain
tc/pki/tls/certs/vblpar.crt > SSLCertificateKeyFile /etc/pki/tls/private/vblpar.key > > > Options Indexes FollowSymLinks > Order allow,deny > Allow from all > AllowOverride None > Require all granted > > > > > >

Re: [Paraview] ParaviewWeb with remote, distributed data

2016-05-06 Thread Sebastien Jourdain
Hi Sven, 1) Yes, assuming you are using pv_web_visualizer.py you can look here: https://github.com/Kitware/ParaView/blob/master/Web/Applications/Visualizer/server/pv_web_visualizer.py#L18-L28 2) The server can push notification to the client. Need to slightly edit the client and server to match

Re: [Paraview] ParaviewWeb with remote, distributed data

2016-05-06 Thread Sebastien Jourdain
k them as "Applicable only to Paraview > Is http://www.paraview.org/ParaView3/Doc/Nightly/www/js-doc/index.html > the most recent documentation? Or is it also not valid for Paraview 4.x and > 5.x as ".../Paraview3/..." in the link address suggests? > > Thank you > Sven > > 20

Re: [Paraview] ParaviewWeb with remote, distributed data

2016-05-09 Thread Sebastien Jourdain
rect, > without --rs-host? It is working in principle, but the renderview update > rate is not more than 2 updates/second for a tiny datasource even when > everything is running on the same machine. > > Thank you > Sven > > 2016-05-06 22:26 GMT+02:00 Sebastien Jourdain < &g

Re: [Paraview] Paraview Web 5 show Widget‏

2016-05-19 Thread Sebastien Jourdain
Hi Michal, That feature is not currently available as a protocol on the Python side. It is possible to add it back, but will take some time especially since we have other focus regarding the Visualizer improvements... Moreover, we dynamically generate the UI, which will make the 3D widget toggle

Re: [Paraview] Connect ParaViewWeb to Catalyst

2016-05-20 Thread Sebastien Jourdain
Hi Sven, Live catalyst connection require a specific socket connection to the in-situ process with some special handling. We did not (yet) wrote the Python code to perform that specific action for ParaViewWeb so it could be triggered by the web client or configured via an argument at launch time.

Re: [Paraview] Connect ParaViewWeb to Catalyst

2016-05-20 Thread Sebastien Jourdain
are the necessary steps much more > involved? > > Thank you > Sven > > > 2016-05-20 15:42 GMT+02:00 Sebastien Jourdain < > sebastien.jourd...@kitware.com>: > >> Hi Sven, >> >> Live catalyst connection require a specific socket connection to the >

Re: [Paraview] Connect ParaViewWeb to Catalyst

2016-05-22 Thread Sebastien Jourdain
Sven > > > 2016-05-20 18:59 GMT+02:00 Sebastien Jourdain < > sebastien.jourd...@kitware.com>: > >> Hi Sven, >> >> I am not aware on any specific developer documentation for Catalyst on >> the ParaView side (but I haven't worked on that subject for yea

Re: [Paraview] Connect ParaViewWeb to Catalyst

2016-05-23 Thread Sebastien Jourdain
. > If it helps, I can try to reconstruct all the lines I have modified and > clean up the stuff. However, you'll probably find a cleaner solution to > invoke pqCatalystConnectReaction::connect() from the web client. > > Sven > > 2016-05-23 7:22 GMT+02:00 Sebastien Jourdai

Re: [Paraview] Connect ParaViewWeb to Catalyst

2016-05-29 Thread Sebastien Jourdain
nd >> clean up the stuff. However, you'll probably find a cleaner solution to >> invoke pqCatalystConnectReaction::connect() from the web client. >> >> Sven >> >> 2016-05-23 7:22 GMT+02:00 Sebastien Jourdain < >> sebastien.jourd...@kitware.com>: >

Re: [Paraview] load plugin through python scripts

2016-08-11 Thread Sebastien Jourdain
Are you missing? from paraview.simple import * On Thu, Aug 11, 2016 at 4:10 PM, 曹智选 wrote: > Hi, > I am trying to write a python scripts to "visualize" simulation results. > > I need load a plugin through GUI of paraview before opening data. If I > first load plugin in the GUI and then run my p

Re: [Paraview] ParaView over the internet

2016-08-11 Thread Sebastien Jourdain
ParaViewWeb - Visualizer is meant for that. Although, selection is not implemented currently. http://kitware.github.io/paraviewweb/applications/ But that version of Visualizer require ParaView/master. Otherwise an older version of Visualizer is provided along with ParaView binaries (except for W

Re: [Paraview] ParaView over the internet

2016-08-11 Thread Sebastien Jourdain
itional logging details can be found in: > npm ERR! /home/ffan/npm-debug.log > npm not ok > ffan@caelinux2013-VirtualBox:~$ > > It says "failed to fetch from registry: pvw-visualizer". Did I do > something wrong? Thanks. > > - ffan > > > On

Re: [Paraview] ParaView over the internet

2016-08-11 Thread Sebastien Jourdain
BTW, if you plan to run ParaView in a VM, the rendering performance will be pretty low unless you properly setup the VM to use a GPU with the proper drivers. On Thu, Aug 11, 2016 at 8:17 PM, Sebastien Jourdain < sebastien.jourd...@kitware.com> wrote: > You seem to have a very old nod

Re: [Paraview] PV Web scrollwheel for zoom, wrong legend

2016-08-12 Thread Sebastien Jourdain
1) Yes, the client code should send the proper event to the server. But that event might not be properly handle by the ParaView backend while it is for VTK. Look at ${pv_src}/Web/Python/paraview/web/protocols.py #ParaViewWebMouseHandler vs ${pv_src}/VTK/Web/Python/vtk/web/protocols.py #vtkWebMous

Re: [Paraview] load plugin through python scripts

2016-08-12 Thread Sebastien Jourdain
e new functions will not appear in the global namespace.""" On Fri, Aug 12, 2016 at 6:15 AM, 曹智选 wrote: > No, I have this in the scripts. > > 2016-08-11 19:52 GMT-04:00 Sebastien Jourdain com>: > >> Are you missing? >> >> from paraview.simple im

Re: [Paraview] ParaviewWeb security

2016-08-15 Thread Sebastien Jourdain
Hi Sven, We do take security seriously. Several actions have been made to make the exposed protocols more secured. It is true, that legacy protocol like ParaViewWebPipelineManager does not check for code injection. But that protocol is deprecated and will be removed for the next ParaView release

Re: [Paraview] VTK File Format Question

2010-12-12 Thread Sebastien Jourdain
Hi Jeff, on the help page of vtk (http://www.vtk.org/VTK/help/documentation.html) you do have a link on the VTK file format. You should be able to find all the informations that you need here: http://www.vtk.org/VTK/img/file-formats.pdf Seb On Sat, Dec 11, 2010 at 8:44 PM, Jeff Johnson wrote: >

Re: [Paraview] VTK File Format Question

2010-12-13 Thread Sebastien Jourdain
values that is associated with scalar data, but what > does the scalar data represent, and how do I associated it with the cubes? > > -Jeff > > > On Dec 12, 2010, at 03:27 , Sebastien Jourdain wrote: > >> Hi Jeff, >> >> on the help page of vtk (http://www.vtk.

Re: [Paraview] place 2-D png file in 3-D field

2010-12-16 Thread Sebastien Jourdain
If you create a plane source, you can use your image as a texture. Hope this helps, Seb On Thu, Dec 16, 2010 at 10:47 AM, Xueli Wang wrote: > Dear ParaView users, > > I made a movie in 3-D space, but I want to put a 2-D image file on one of > the corners. It is so difficult to fix it on a 2-D p

Re: [Paraview] [paraviewweb] trouble with paraviewweb on windows

2011-01-07 Thread Sebastien Jourdain
Hi Pjotr, few comments before getting further for solving the problem that you are facing. As Utkarsh said we didn't try to have a Windows server for ParaViewWeb and as a client IE is not the best browser available specially with the JavaScript renderer. In fact, if the targeted client is IE, you

Re: [Paraview] [paraviewweb] trouble with paraviewweb on windows

2011-01-07 Thread Sebastien Jourdain
you get an error, this should help you to identify the miss-matching network configuration on that computer. Seb On Fri, Jan 7, 2011 at 3:57 PM, Sebastien Jourdain wrote: > Hi Pjotr, > > few comments before getting further for solving the problem that you are > facing. > > As U

Re: [Paraview] Some tests and questions about PV 3.10.0-RC1

2011-02-04 Thread Sebastien Jourdain
Hi Richard, I've just talked to Rob about your problem and explained your point. Rob is going to report a bug for that. One solution we were thinking of is when several files are selected in the OpenFile process, if we already have define a reader for a given extension, we reuse that same reader a

Re: [Paraview] Multiblock dataset, ghost nodes and problem with rendering contours with opacity

2011-02-06 Thread Sebastien Jourdain
Hi Mohamad, Did you add a data array "GhostLevels" to specify for each cell its ghost level ? It's an unsigned char data array where the values are the depth into the next block for of each cell. By that I mean: - 0 is the cells of the current block - 1 is the set of cells that share points in the

Re: [Paraview] Multiblock dataset, ghost nodes and problem with rendering contours with opacity

2011-02-08 Thread Sebastien Jourdain
048032"             /> >        >      >    >    > * > (And many more datafiles similar to this). > As you can see, the two files have one layer of ghost nodes > File0.vatr >    > File1.vtr >    > > Now

Re: [Paraview] scripting beginner

2011-02-19 Thread Sebastien Jourdain
Hi, you forget to call Render() before and after the ResetCamera(). Seb On Sat, Feb 19, 2011 at 9:59 AM, Tim Gallagher wrote: > Without looking at the script in detail, have you tried using the Python > Trace feature in the GUI? Since, at this stage anyway, all of your tasks are > straight fo

Re: [Paraview] Visit Reader crash

2011-03-11 Thread Sebastien Jourdain
Hi Guys, to give you some heads up, the issue that you are facing where the client is not working with a server which has a different proxy definition set, such as the SILO and CGNS readers will be solved in ParaView 4. Now the client will get the Proxy definition from the server, so no more mism

Re: [Paraview] Getting line data into Paraview 3.10.0

2011-03-11 Thread Sebastien Jourdain
is it because you are using "\" in your path ? It seems that your command to open the file is wrong.. On Fri, Mar 11, 2011 at 11:28 AM, Lester Anderson wrote: > Hello > > I am having problems getting line data into Paraview like below: > >>  @D0|802 > 71.544281294689512 -70.195276311658077 > 71.6

Re: [Paraview] Updating an Information Only Property

2011-03-21 Thread Sebastien Jourdain
Hi Brian, on the proxy itself, you can call either of the two methods UpdatePropertyInformation() / UpdatePropertyInformation(vtkSMProperty*) Seb On Mon, Mar 21, 2011 at 3:38 PM, Brian Panneton wrote: > I currently have a custom panel with two QComboBoxes. Box2 depends on the > selection of Box

Re: [Paraview] Getting a raytraced picture from Manta

2011-03-22 Thread Sebastien Jourdain
Hi Sohail, you should just close the default 3D view and create the Manta one by clicking on its button. Then any object that you create will be shown in that raytracer view... And with the latest implementation, you don't need a remote server anymore. Seb On Tue, Mar 22, 2011 at 4:18 PM, Sohail

Re: [Paraview] Getting a raytraced picture from Manta

2011-03-22 Thread Sebastien Jourdain
of Manta. > > Sohail > > --- On *Tue, 3/22/11, Sebastien Jourdain > *wrote: > > > From: Sebastien Jourdain > Subject: Re: [Paraview] Getting a raytraced picture from Manta > To: "Sohail Shafii" > Cc: paraview@paraview.org > Date: Tuesday, March 22, 20

Re: [Paraview] Information Only Property Parameters

2011-03-23 Thread Sebastien Jourdain
Unfortunately that's the way you have to do it. Or the other way is to use GatherInformation() but it won't be much better. On Wed, Mar 23, 2011 at 10:23 AM, Brian Panneton wrote: > If I have an information_only property with a command to get a > vtkStringArray, is there a way to pass a paramete

Re: [Paraview] Information Only Property Parameters

2011-03-23 Thread Sebastien Jourdain
I just loaded it. > > How should I be pushing the variable to the server? > > > On Wed, Mar 23, 2011 at 11:11 AM, Sebastien Jourdain > wrote: >> >> Unfortunately that's the way you have to do it. Or the other way is to >> use GatherInformation() but it won&

Re: [Paraview] Information Only Property Parameters

2011-03-24 Thread Sebastien Jourdain
ecause DataList depends on what is selected in DataTypeList which depends > on TypeList. If either DataList or DataTypeList is run first it defaults to > none. > > Is there a way to make them load data in order? > > On Wed, Mar 23, 2011 at 2:23 PM, Sebastien Jourdain > wrot

Re: [Paraview] Information Only Property Parameters

2011-03-24 Thread Sebastien Jourdain
Next I called UpdatePropertyInformation on the second combobox. > For the order issue, I just ended up renaming them so they followed the > order I needed. > > Thanks, > Brian Panneton > > On Thu, Mar 24, 2011 at 9:47 AM, Sebastien Jourdain > wrote: >> >> Hi Brian, >&g

[Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-28 Thread Sebastien Jourdain
Folks, For those of you who haven't follow the topic in the paraview-developers mailing list here is a quick summary on what's going on in the coming weeks. We've been working for a while now on restructuring the Server Manager of ParaView to make it more efficient as well as allowing it to suppor

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
Hi Takuya, I'm glad that you gave a try and you managed to make your plugin work. Moreover, thanks for that "cheat sheet". Here is my feedback about it: > OLD: pxy->Set/GetServers() (where pxy is a vtkSMProxy) > NEW: pxy->Set/GetLocation() Yes > OLD: pxy->Set/GetConnectionID() > NEW: pxy->Set/

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
that use the proxy session and location to send and execute the stream that may not be related in any other way to that proxy. thanks, Seb > > Takuya > > Takuya OSHIMA, Ph.D. > Faculty of Engineering, Niigata University > 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181,

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
fication! > > Takuya > > Takuya OSHIMA, Ph.D. > Faculty of Engineering, Niigata University > 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN > > From: Sebastien Jourdain > Subject: Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager > Date: Tue, 29

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
gt; vtkSMSourceProxy (0x11a4730): GlobalID must NOT be changed once it has been > assigned. > Try to set 145 to replace the current 289 value. > > Any idea what might need to be changed in order to get this working? > A different syntax for the ADD_PARAVIEW_OBJECT_PANEL in CMakeLists.

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-30 Thread Sebastien Jourdain
ged in order to get this working? > A different syntax for the ADD_PARAVIEW_OBJECT_PANEL in CMakeLists.txt maybe? > > Thanks for any hint. > > Sven > > > Sebastien Jourdain wrote, On 03/28/11 21:29: >> Folks, >> >> For those of you who haven't follow the topic

Re: [Paraview] paraviewWeb linux 64bits

2011-04-06 Thread Sebastien Jourdain
BTW, you can disable the flex component and build the rest of the application. Seb PS: The current version of our Flex component do not work with Flex4, it has to be a SDK 3.x. PS2: I know that at least 3 community members managed to build and install ParaViewWeb. On Wed, Apr 6, 2011 at 8:48 AM,

Re: [Paraview] paraviewWeb linux 64bits

2011-04-06 Thread Sebastien Jourdain
wser without > installing it? I Googled it but didn't find any information about it. > Can you give a instruction page? > > Thanks. > > Best regards, > http://code-saturne.blogspot.com/ > > On 6 April 2011 13:58, Sebastien Jourdain > wrote: >> BTW, you can

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-04-06 Thread Sebastien Jourdain
PM, Sebastien Jourdain wrote: > Folks, > > For those of you who haven't follow the topic in the > paraview-developers mailing list here is a quick summary on what's > going on in the coming weeks. > We've been working for a while now on restructuring the Server Mana

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-04-08 Thread Sebastien Jourdain
Hi Folks, We finally merge to master. So next time you build from a fresh update, don't forget to do a clean build. Thanks, Seb On Wed, Apr 6, 2011 at 3:43 PM, Sebastien Jourdain wrote: > Hi Folks, > > The time has gone and we plan to merge the Collaboration branch to > m

Re: [Paraview] error after last git update: protobuf

2011-04-19 Thread Sebastien Jourdain
Did you update your submodules ? > git submodule update Seb On Tue, Apr 19, 2011 at 10:55 AM, Ricardo Reis wrote: > > >  I've got this error after my last git update: > >  CMake Error at CMake/ParaViewCommon.cmake:514 (ADD_SUBDIRECTORY): >   The source directory > >     /home/rreis/src/ParaView

Re: [Paraview] Problem loading multiple volumes in ParaviewWeb

2011-04-28 Thread Sebastien Jourdain
Hi Raj, The reason why you are not seeing the same settings across your data is because you need to apply your SetDisplayProperties for each loaded data. The reason why only the last one is set correctly, it's because ParaView has a stack of active objects. And since the SetDisplayProperties requi

Re: [Paraview] image bufferin ParaviewWeb

2011-04-28 Thread Sebastien Jourdain
Hi Luigi, the bug you are facing was a bug inside VTK that I fixed maybe just after 3.10.0. But you can patch your VTK, as it's a really small fix. Seb PS: I've paste the fix bellow commit e938db39c2bbd730a060cb0cf95fec52e15d281a Author: Sebastien Jourdain Date: Mon Jun 28 13:

Re: [Paraview] paraviewweb on windows

2011-04-28 Thread Sebastien Jourdain
Hi Katsumi, when you've got questions on ParaView/ParaViewWeb, you should post them on the Paraview mailing list. So other could benefit from it. Thanks Seb On Thu, Apr 28, 2011 at 7:49 AM, Sebastien Jourdain wrote: > Hi Katsumi, > > ParaViewWeb should work on windows. But it

Re: [Paraview] ParaViewWeb Building problem

2011-04-28 Thread Sebastien Jourdain
Hi Kelly, Right now you should use ParaView 3.10.1 for ParaViewWeb, but I should push a fix today for ParaView master. After my fix, for the ones that wants to use ParaView 3.10.1, you should used the ParaViewWeb version that come with the tag "pv-3.10.1". To get that given version from your git

Re: [Paraview] Problem loading multiple volumes in ParaviewWeb

2011-04-28 Thread Sebastien Jourdain
On Thu, Apr 28, 2011 at 4:13 PM, Rajvikram Singh wrote: > > Thanks Sebastien .. that was the problem :) It works fine now and I can > switch the different datasets on/off. > > > > > --- On *Thu, 28/4/11, Sebastien Jourdain > *wrote: > > > From: Sebastie

[Paraview] ParaViewWeb update

2011-04-28 Thread Sebastien Jourdain
Hi Folks, I've just push today some fix to the ParaViewWeb repository to support the latest ParaView git/master. But for the users of ParaViewWeb that want to use the latest ParaView release (3.10.1) instead, you should checkout the tag "pv-3.10.1" in the ParaViewWeb repository. In order to do th

Re: [Paraview] servermanager XML

2011-04-29 Thread Sebastien Jourdain
Hi Patrik, you can also find some documentation in the vtkSMProxyManager.h and vtkSMProxy.h files. Seb On Fri, Apr 29, 2011 at 9:48 AM, pratik wrote: > Hi, > Where can i find a good resource to learn server manager configuration XML? > Currently, the paraview Guide seems to be the only source,

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-02 Thread Sebastien Jourdain
Hi Raj, You are not getting the propers bounds when you directly access them like that: > reader.Bounds In fact, if you validate each line that you wrote inside the JavaScript console of your browser, you could have seen that Bounds was not part of the reader proxy. Moreover, it goes against the

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-02 Thread Sebastien Jourdain
, May 2, 2011 at 8:59 AM, Sebastien Jourdain < sebastien.jourd...@kitware.com> wrote: > Hi Raj, > > You are not getting the propers bounds when you directly access them like > that: > > > reader.Bounds > > In fact, if you validate each line that you wrote inside

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Sebastien Jourdain
', > //ColorArrayName : 'ImageFile', > LookupTable : lut1 > } ); > > pv.Hide({proxy : reader1}); > var dataRep1 = pv.Show({proxy : slice}); > pv.Render(); > > // Create and bind renderer > var renderer = new JavaScriptRenderer(&q

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Sebastien Jourdain
Hi Raj, I managed to show the correct color by executing that: sliceType.setNormal(0,0,1); sliceType.setOrigin(view1.getCenterOfRotation()); pv.SetDisplayProperties( {proxy : slice, view : view1, Representation : 'Surface', ColorArrayName : 'ImageFile'} ); In fact you shouldn't set any normal/o

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Sebastien Jourdain
show up correctly and though now the interactive > widget has disappeared I think I'm going to work around it by having a UI > slider which lets the users slice through the data in X, Y or Z.. > > Thanks once again for all the patience and help. > > Raj > > > > --- On

Re: [Paraview] ParaviewWeb two sessions, two views, two volume datasets

2011-05-09 Thread Sebastien Jourdain
Hi Raj, first of all you only need one session. A session is basically a dedicated connection to a ParaView server. So by creating 2 session, you were creating 2 server where you could have created 2 views in the same session and setup a mechanism to keep both camera of the views in synch. Moreove

Re: [Paraview] paraviewweb on windows

2011-05-10 Thread Sebastien Jourdain
ake" ) > > So it is very helpful for me to know more detailed building procedure for > Windows. > And as you wrote, now getting activemq-cpp 3.1.0. is very difficult... > Please let me know how to get/build activemq-cpp 3.1.0. > > Best regards, > > Katsumi SEK

  1   2   3   4   5   6   7   >