Re: [Paraview] Can I generate a single file that contains data and filter settings?

2018-01-31 Thread Wyatt Spear
The data that I'm generating has a set of scalar values for every point in
the 2D matrix, so a single data row looks like
xcoord, ycoord, zcord(probably superfluous), scalar1, scalar2,...scalarN
Since the data in your example is being rendered as an image directly I'm
not sure how I could incorporate different scalar data which can be
selected from the UI, as I can when running the table-to-points filter on a
loaded CSV file.

Is there a way to have a python macro cause ParaView to request a file
selection through the UI? Then I could have this single macro loaded and it
could process any CSV file I select.

Thanks,
Wyatt

On Wed, Jan 31, 2018 at 8:23 AM, Cory Quammen <cory.quam...@kitware.com>
wrote:

> Wyatt,
>
> Here's a simple script that sets up a 200 x 200 image data object like
> you might use for displaying a heat map.
>
>  import the simple module from the paraview
> from paraview.simple import *
>  disable automatic camera reset on 'Show'
> paraview.simple._DisableFirstRenderCameraReset()
>
> # Create a 2D image data object
> from paraview import vtk
> vtk_image = vtk.vtkImageData()
> vtk_image.SetDimensions(200, 200, 1) # Your size may vary
>
> # Wrap data in numpy interface
> from vtk.numpy_interface import dataset_adapter as dsa
> image = dsa.WrapDataObject(vtk_image)
>
> # Create numpy array. Set your data here
> import numpy as np
> arr = np.zeros(200*200)
>
> # Set the data in the image object
> image.PointData.append(arr, 'myarray')
>
> # Now set up a ParaView proxy for the image data
> tp = PVTrivialProducer()
> tp.GetClientSideObject().SetOutput(vtk_image)
> Show(tp)
>
>
> # Set up filters, display options, etc. below
>
>
> You can modify it as needed to set up your data array as a numpy array.
>
> Hope that helps,
> Cory
>
> On Mon, Jan 29, 2018 at 3:27 PM, Wyatt Spear <wsp...@cs.uoregon.edu>
> wrote:
> > I think the python scripting with embedded data is worth a try. I'm not
> > familiar with the built-in vs other server modes so I'm not sure what
> kind
> > of restrictions that entails.  Probably my ultimate goal is to build a
> > reader plugin that will parse the data out of my application's native
> format
> > but generating a script seems like a decent interim solution.
> >
> > Thanks,
> > Wyatt
> >
> > On Mon, Jan 29, 2018 at 5:57 AM, Cory Quammen <cory.quam...@kitware.com>
> > wrote:
> >>
> >> Wyatt,
> >>
> >> ParaView provides extensive Python scriptability. One solution is to
> >> write out a Python script from your program. Within the Pythons
> >> script, you set up the data, set up filters and modify visualization
> >> settings just as you wish. Once it is loaded, you can continue to
> >> explore your data by creating new filters, changing visualization
> >> parameters, and so on.
> >>
> >> Creating example Python scripts is easy using the Trace functionality
> >> (Tools menu -> Start Trace) - you just interact with the UI and the
> >> equivalent Python operations will be written to the trace file. Use
> >> such a trace as a basis for what is written from your program.
> >>
> >> To save the data to the Python script and then load it is a different
> >> use case from what we typical support, but I think it is doable. It
> >> would just look a little ugly (and it would only work in built-in
> >> server mode). Basically, you could write out your data in a NumPy
> >> array within the script, as if you were entering the array information
> >> by hand, then provide that data to what's called a TrivialProducer
> >> source. This source would stand in place of a reader. There is a
> >> little bit of code required to do that that isn't super obvious -
> >> before sketching it out, would this approach work for your needs?
> >>
> >> Thanks,
> >> Cory
> >>
> >>
> >>
> >> On Sun, Jan 28, 2018 at 10:10 PM, Wyatt Spear <wsp...@cs.uoregon.edu>
> >> wrote:
> >> > Thanks, I'll take a look at this. My use case is pretty severely
> >> > underutilizing ParaView's capabilities though. I'm rendering very
> large
> >> > multi-variable heat maps. So color mapped 2d points are all I need
> >> > rendered,
> >> > (until I can figure out how to map glyph height to another variable).
> >> >
> >> > =Wyatt
> >> >
> >> >
> >> > On Sat, Jan 27, 2018 at 8:52 AM Samuel Key <samuel...@bresnan.net>
> >> > wrote:
> >> >>
> >>

Re: [Paraview] Can I tie Z Axis Grid labels to the unscaled range of the Scalar Value used in the Warp By Scalar filter?

2018-01-30 Thread Wyatt Spear
I've submitted the bug here:
https://gitlab.kitware.com/paraview/paraview/issues/17963 Thanks!
=Wyatt

On Tue, Jan 30, 2018 at 11:14 AM, Utkarsh Ayachit <
utkarsh.ayac...@kitware.com> wrote:

> Sounds like a bug. If you can put together a small example to
> reproduce the issue and report it here [1], we can track it down.
>
> Utkarsh
>
> [1] https://gitlab.kitware.com/paraview/paraview/issues
>
> On Tue, Jan 30, 2018 at 2:13 PM, Wyatt Spear <wsp...@cs.uoregon.edu>
> wrote:
> > In theory the Data Transform should be ideal. I didn't see it before
> because
> > I was looking at the 'Data Axes Grid' which doesn't have that option
> instead
> > of the 'Axes Grid' which does.
> >
> > It seemed to work on less extreme scales but when I had to scale my warp
> by
> > .1 and set the same value to the Z Axis Data Scale the axes exploded
> out
> > of view-ability. I'm not sure what's going on there; I had assumed that
> this
> > would only change the labels and not the size of the axes.
> >
> > Thanks,
> > Wyatt
> >
> > On Tue, Jan 30, 2018 at 6:29 AM, Utkarsh Ayachit
> > <utkarsh.ayac...@kitware.com> wrote:
> >>
> >> Another option is to use the "Data Transform" properties on the Axes
> >> Grid. In the "Edit" Axes Grid dialog, if you press the gear icon to
> >> show advanced properties, you'll see the "Data Transform" properties.
> >> For example, if I scale my dataset by (1, 1, 10), I can set the "Data
> >> Scale" to (1, 1, 10) and I'll get labels matching the original
> >> unscaled range.
> >>
> >> Hope that helps.
> >>
> >> Utkarsh
> >>
> >> On Mon, Jan 29, 2018 at 9:43 PM, Cory Quammen <cory.quam...@kitware.com
> >
> >> wrote:
> >> > On Mon, Jan 29, 2018 at 6:35 PM, Wyatt Spear <wsp...@cs.uoregon.edu>
> >> > wrote:
> >> >> I am trying to add a 3d-component to my heat maps and it looks like
> the
> >> >> Warp
> >> >> By Scalar filter is the most straightforward way to map a scalar
> value
> >> >> to
> >> >> the Z axis. My trouble is, the labels on the Z axis grid are not
> >> >> displaying
> >> >> the actual range of values provided by the scalar when I change the
> >> >> warp
> >> >> scale factor. A scale factor of 1 gives the expected axis labels, of
> >> >> course,
> >> >> but puts my Z axis out of visual range. Is there a reasonable way to
> >> >> tie the
> >> >> Z axis labels to the range provided by the raw scalar data, so
> changing
> >> >> the
> >> >> scale factor of the warp doesn't effect Z Axis labels and their
> values
> >> >> remain representative of my data?
> >> >
> >> > The axes are tied to the physical extent of the data, as you have
> >> > observed, not the scalar range of the array mapped to Z. You can edit
> >> > the Data Axes Grid "Z Axis Label Properties" and enable "Z Axis Use
> >> > Custom Labels" to manually set the label values to those of your data
> >> > array. It is not automatically tied to the scalar array range, though,
> >> > but the Z labels will be independent of changes to the warp scale
> >> > factor.
> >> >
> >> > HTH,
> >> > Cory
> >> >
> >> >>
> >> >> Thanks,
> >> >> Wyatt Spear
> >> >>
> >> >> ___
> >> >> 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
> >> >>
> >> >> Search the list archives at: http://markmail.org/search/?q=ParaView
> >> >>
> >> >> Follow this link to subscribe/unsubscribe:
> >> >> https://paraview.org/mailman/listinfo/paraview
> >> >>
> >> >
> >> >
> >> >
> >> > --
> >> > Cory Quammen
> >> > Staff R Engineer
> >> > Kitware, Inc.
> >> > ___
> >> > 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
> >> >
> >> > Search the list archives at: http://markmail.org/search/?q=ParaView
> >> >
> >> > Follow this link to subscribe/unsubscribe:
> >> > https://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

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


Re: [Paraview] Can I tie Z Axis Grid labels to the unscaled range of the Scalar Value used in the Warp By Scalar filter?

2018-01-30 Thread Wyatt Spear
In theory the Data Transform should be ideal. I didn't see it before
because I was looking at the 'Data Axes Grid' which doesn't have that
option instead of the 'Axes Grid' which does.

It seemed to work on less extreme scales but when I had to scale my warp by
.1 and set the same value to the Z Axis Data Scale the axes exploded
out of view-ability. I'm not sure what's going on there; I had assumed that
this would only change the labels and not the size of the axes.

Thanks,
Wyatt

On Tue, Jan 30, 2018 at 6:29 AM, Utkarsh Ayachit <
utkarsh.ayac...@kitware.com> wrote:

> Another option is to use the "Data Transform" properties on the Axes
> Grid. In the "Edit" Axes Grid dialog, if you press the gear icon to
> show advanced properties, you'll see the "Data Transform" properties.
> For example, if I scale my dataset by (1, 1, 10), I can set the "Data
> Scale" to (1, 1, 10) and I'll get labels matching the original
> unscaled range.
>
> Hope that helps.
>
> Utkarsh
>
> On Mon, Jan 29, 2018 at 9:43 PM, Cory Quammen <cory.quam...@kitware.com>
> wrote:
> > On Mon, Jan 29, 2018 at 6:35 PM, Wyatt Spear <wsp...@cs.uoregon.edu>
> wrote:
> >> I am trying to add a 3d-component to my heat maps and it looks like the
> Warp
> >> By Scalar filter is the most straightforward way to map a scalar value
> to
> >> the Z axis. My trouble is, the labels on the Z axis grid are not
> displaying
> >> the actual range of values provided by the scalar when I change the warp
> >> scale factor. A scale factor of 1 gives the expected axis labels, of
> course,
> >> but puts my Z axis out of visual range. Is there a reasonable way to
> tie the
> >> Z axis labels to the range provided by the raw scalar data, so changing
> the
> >> scale factor of the warp doesn't effect Z Axis labels and their values
> >> remain representative of my data?
> >
> > The axes are tied to the physical extent of the data, as you have
> > observed, not the scalar range of the array mapped to Z. You can edit
> > the Data Axes Grid "Z Axis Label Properties" and enable "Z Axis Use
> > Custom Labels" to manually set the label values to those of your data
> > array. It is not automatically tied to the scalar array range, though,
> > but the Z labels will be independent of changes to the warp scale
> > factor.
> >
> > HTH,
> > Cory
> >
> >>
> >> Thanks,
> >> Wyatt Spear
> >>
> >> ___
> >> 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
> >>
> >> Search the list archives at: http://markmail.org/search/?q=ParaView
> >>
> >> Follow this link to subscribe/unsubscribe:
> >> https://paraview.org/mailman/listinfo/paraview
> >>
> >
> >
> >
> > --
> > Cory Quammen
> > Staff R Engineer
> > Kitware, Inc.
> > ___
> > 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
> >
> > Search the list archives at: http://markmail.org/search/?q=ParaView
> >
> > Follow this link to subscribe/unsubscribe:
> > https://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

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


[Paraview] Can I tie Z Axis Grid labels to the unscaled range of the Scalar Value used in the Warp By Scalar filter?

2018-01-29 Thread Wyatt Spear
I am trying to add a 3d-component to my heat maps and it looks like the
Warp By Scalar filter is the most straightforward way to map a scalar value
to the Z axis. My trouble is, the labels on the Z axis grid are not
displaying the actual range of values provided by the scalar when I change
the warp scale factor. A scale factor of 1 gives the expected axis labels,
of course, but puts my Z axis out of visual range. Is there a reasonable
way to tie the Z axis labels to the range provided by the raw scalar data,
so changing the scale factor of the warp doesn't effect Z Axis labels and
their values remain representative of my data?

Thanks,
Wyatt Spear
___
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

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


Re: [Paraview] Can I generate a single file that contains data and filter settings?

2018-01-29 Thread Wyatt Spear
I think the python scripting with embedded data is worth a try. I'm not
familiar with the built-in vs other server modes so I'm not sure what kind
of restrictions that entails.  Probably my ultimate goal is to build a
reader plugin that will parse the data out of my application's native
format but generating a script seems like a decent interim solution.

Thanks,
Wyatt

On Mon, Jan 29, 2018 at 5:57 AM, Cory Quammen <cory.quam...@kitware.com>
wrote:

> Wyatt,
>
> ParaView provides extensive Python scriptability. One solution is to
> write out a Python script from your program. Within the Pythons
> script, you set up the data, set up filters and modify visualization
> settings just as you wish. Once it is loaded, you can continue to
> explore your data by creating new filters, changing visualization
> parameters, and so on.
>
> Creating example Python scripts is easy using the Trace functionality
> (Tools menu -> Start Trace) - you just interact with the UI and the
> equivalent Python operations will be written to the trace file. Use
> such a trace as a basis for what is written from your program.
>
> To save the data to the Python script and then load it is a different
> use case from what we typical support, but I think it is doable. It
> would just look a little ugly (and it would only work in built-in
> server mode). Basically, you could write out your data in a NumPy
> array within the script, as if you were entering the array information
> by hand, then provide that data to what's called a TrivialProducer
> source. This source would stand in place of a reader. There is a
> little bit of code required to do that that isn't super obvious -
> before sketching it out, would this approach work for your needs?
>
> Thanks,
> Cory
>
>
>
> On Sun, Jan 28, 2018 at 10:10 PM, Wyatt Spear <wsp...@cs.uoregon.edu>
> wrote:
> > Thanks, I'll take a look at this. My use case is pretty severely
> > underutilizing ParaView's capabilities though. I'm rendering very large
> > multi-variable heat maps. So color mapped 2d points are all I need
> rendered,
> > (until I can figure out how to map glyph height to another variable).
> >
> > =Wyatt
> >
> >
> > On Sat, Jan 27, 2018 at 8:52 AM Samuel Key <samuel...@bresnan.net>
> wrote:
> >>
> >> Wyatt--
> >>
> >> While ParaView can read CSV files and subsequently generate images, the
> >> CSV format for simulation results limits the functionality available to
> you
> >> in ParaView. My suggestion is that you write your simulation results in
> a
> >> format that contains geometry information, as well as, Point and Cell
> >> centered values like displacement, velocity, acceleration, temperature,
> >> concentrations, volume fractions, et cetera.
> >>
> >> The attached document is a good place to start. (This document is very
> >> concise and very complete, but the information is only written down
> once. As
> >> a result, the format information is sometimes not located where you need
> >> it.)
> >>
> >> If your simulations are concerned with the deformation of 3-D solids and
> >> structures, I can provide you with FORTRAN95 routines that you can use
> to
> >> write VTK-formatted simulation results.
> >>
> >> Once you can generate VTK-formatted datum sets, The File > Save State
> >> command will generate *.pvsm files that will let you "recreate" a
> previously
> >> constructed Browser Pipeline. (The PV *.pvsm reader gives you the
> >> opportunity to select a different datum set.)
> >>
> >> There is a small two-cell mesh file attached that might be helpful to
> you
> >> when constructing a VTK-formatted file writer in your application.
> >>
> >> --Sam
> >>
> >>
> >>
> >>
> >>
> >> On 1/27/2018 8:46 AM, Wyatt Spear wrote:
> >>
> >> Greetings,
> >>
> >> Currently I am using my own application to generate a simple CSV file
> >> which can be loaded up in ParaView. I then create the visualization I
> want
> >> with a few manual filter operations.
> >>
> >> What I would like is to generate a file, preferably still with a field
> for
> >> CSV-like raw data, that tells ParaView to load the data and then apply
> the
> >> filters I want, so the view I want is immediately available upon
> loading the
> >> file and the raw data is available if I want to try other filters.
> >>
> >> I've taken a look at vpt and pvd files saved from my intended view but
> I'm
> >

Re: [Paraview] Can I generate a single file that contains data and filter settings?

2018-01-28 Thread Wyatt Spear
Thanks, I'll take a look at this. My use case is pretty severely
underutilizing ParaView's capabilities though. I'm rendering very large
multi-variable heat maps. So color mapped 2d points are all I need
rendered, (until I can figure out how to map glyph height to another
variable).

=Wyatt


On Sat, Jan 27, 2018 at 8:52 AM Samuel Key <samuel...@bresnan.net> wrote:

> Wyatt--
>
> While ParaView can read CSV files and subsequently generate images, the
> CSV format for simulation results limits the functionality available to you
> in ParaView. My suggestion is that you write your simulation results in a
> format that contains geometry information, as well as, Point and Cell
> centered values like displacement, velocity, acceleration, temperature,
> concentrations, volume fractions, *et cetera.*
> The attached document is a good place to start. (This document is very
> concise and very complete, but the information is only written down once.
> As a result, the format information is sometimes not located where you need
> it.)
>
> If your simulations are concerned with the deformation of 3-D solids and
> structures, I can provide you with FORTRAN95 routines that you can use to
> write VTK-formatted simulation results.
>
> Once you can generate VTK-formatted datum sets, The File > Save State
> command will generate *.pvsm files that will let you "recreate" a
> previously constructed Browser Pipeline. (The PV *.pvsm reader gives you
> the opportunity to select a different datum set.)
>
> There is a small two-cell mesh file attached that might be helpful to you
> when constructing a VTK-formatted file writer in your application.
>
> --Sam
>
>
>
>
>
> On 1/27/2018 8:46 AM, Wyatt Spear wrote:
>
> Greetings,
>
> Currently I am using my own application to generate a simple CSV file
> which can be loaded up in ParaView. I then create the visualization I want
> with a few manual filter operations.
>
> What I would like is to generate a file, preferably still with a field for
> CSV-like raw data, that tells ParaView to load the data and then apply the
> filters I want, so the view I want is immediately available upon loading
> the file and the raw data is available if I want to try other filters.
>
> I've taken a look at vpt and pvd files saved from my intended view but I'm
> not seeing much correspondence between the CSV data I generate, the filters
> I apply and the data fields in there. I'm also pondering the save-state and
> trace/macro features of ParaView but I suspect those won't quite square
> with my aim of generating a file in an external application which includes
> data.
>
> Could someone point me toward a proper way to do this? If it comes down to
> plugin development I'm willing to take a look at that.
>
> Thanks,
> Wyatt Spear
>
>
> ___
> 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
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to 
> subscribe/unsubscribe:https://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
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> https://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

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


[Paraview] Can I generate a single file that contains data and filter settings?

2018-01-27 Thread Wyatt Spear
Greetings,

Currently I am using my own application to generate a simple CSV file which
can be loaded up in ParaView. I then create the visualization I want with a
few manual filter operations.

What I would like is to generate a file, preferably still with a field for
CSV-like raw data, that tells ParaView to load the data and then apply the
filters I want, so the view I want is immediately available upon loading
the file and the raw data is available if I want to try other filters.

I've taken a look at vpt and pvd files saved from my intended view but I'm
not seeing much correspondence between the CSV data I generate, the filters
I apply and the data fields in there. I'm also pondering the save-state and
trace/macro features of ParaView but I suspect those won't quite square
with my aim of generating a file in an external application which includes
data.

Could someone point me toward a proper way to do this? If it comes down to
plugin development I'm willing to take a look at that.

Thanks,
Wyatt Spear
___
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

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
https://paraview.org/mailman/listinfo/paraview


Re: [Paraview] Segfault with 'Hover Cells' over 3d glyphs

2017-12-05 Thread Wyatt Spear
I just tried it with my larger data set (easier to select individual cells)
and it crashed with 5.4.1. I'm not sure what the difference was with the
smaller data set in 5.4.1 that let it work.
=Wyatt

On Tue, Dec 5, 2017 at 12:00 PM, David E DeMarle <dave.dema...@kitware.com>
wrote:

> Crashes for me.
>
>
> David E DeMarle
> Kitware, Inc.
> Principal Engineer
> 21 Corporate Drive
> <https://maps.google.com/?q=21+Corporate+Drive+Clifton+Park,+NY+12065=gmail=g>
> Clifton Park, NY 12065
> <https://maps.google.com/?q=21+Corporate+Drive+Clifton+Park,+NY+12065=gmail=g>
> -8662
> Phone: 518-881-4909 <(518)%20881-4909>
>
> On Tue, Dec 5, 2017 at 2:59 PM, Wyatt Spear <wsp...@cs.uoregon.edu> wrote:
>
>> Nope, 5.4.1 seems to work correctly.
>> =Wyatt
>>
>> On Tue, Dec 5, 2017 at 11:29 AM, David E DeMarle <
>> dave.dema...@kitware.com> wrote:
>>
>>> The output warnings you are seeing are unrelated and fixed in master.
>>>
>>> Can reproduce the bug with 5.4.1 binary on linux.
>>>
>>>
>>>
>>>
>>> David E DeMarle
>>> Kitware, Inc.
>>> Principal Engineer
>>> 21 Corporate Drive
>>> <https://maps.google.com/?q=21+Corporate+Drive+Clifton+Park,+NY+12065=gmail=g>
>>> Clifton Park, NY 12065
>>> <https://maps.google.com/?q=21+Corporate+Drive+Clifton+Park,+NY+12065=gmail=g>
>>> -8662
>>> Phone: 518-881-4909 <(518)%20881-4909>
>>>
>>> On Tue, Dec 5, 2017 at 2:10 PM, Wyatt Spear <wsp...@cs.uoregon.edu>
>>> wrote:
>>>
>>>> Greetings,
>>>>
>>>> I'm using the SC17 preview of 5.5 of ParaView. I first noticed this
>>>> error with my own dataset but it appears with the simple test.csv I've
>>>> included. To reproduce the segfault:
>>>>
>>>> Load the attached (or presumably any) CSV points file.
>>>> Run the TableToPoints filter.
>>>> Assign the X/Y/Z column dropdowns to the x coord/y coord/z coord values.
>>>> Hit Apply
>>>> Hit the 'Hover Cells On' button in the 3d display and mouse over a
>>>> point to confirm it works.
>>>> In the 'Representation' drop down box select "3D Glyphs".
>>>> In the 'Glyph Type' drop down box select "Box" (I wasn't able to
>>>> reproduce the error with arrows)
>>>> Hover over one of the resulting box glyphs for instant segfault.
>>>>
>>>> Command line output from this session was:
>>>>
>>>> Generic Warning: In /home/buildslave/dashboards/bu
>>>> ildbot/paraview-pvbinsdash-linux-shared-release_superbuild/s
>>>> ource-paraview/ParaViewCore/ServerManager/Core/vtkSMPropertyHelper.cxx,
>>>> line 511
>>>> Failed to locate property: OSPRayMaterialLibrary
>>>>
>>>> Generic Warning: In /home/buildslave/dashboards/bu
>>>> ildbot/paraview-pvbinsdash-linux-shared-release_superbuild/s
>>>> ource-paraview/ParaViewCore/ServerManager/Core/vtkSMPropertyHelper.cxx,
>>>> line 831
>>>> Call not supported for the current property type.
>>>>
>>>> Segmentation fault (core dumped)
>>>>
>>>> Regards,
>>>> Wyatt Spear
>>>>
>>>>
>>>>
>>>> ___
>>>> 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
>>>>
>>>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>>>
>>>> Follow this link to subscribe/unsubscribe:
>>>> http://public.kitware.com/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

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Segfault with 'Hover Cells' over 3d glyphs

2017-12-05 Thread Wyatt Spear
Nope, 5.4.1 seems to work correctly.
=Wyatt

On Tue, Dec 5, 2017 at 11:29 AM, David E DeMarle <dave.dema...@kitware.com>
wrote:

> The output warnings you are seeing are unrelated and fixed in master.
>
> Can reproduce the bug with 5.4.1 binary on linux.
>
>
>
>
> David E DeMarle
> Kitware, Inc.
> Principal Engineer
> 21 Corporate Drive
> <https://maps.google.com/?q=21+Corporate+Drive+Clifton+Park,+NY+12065=gmail=g>
> Clifton Park, NY 12065
> <https://maps.google.com/?q=21+Corporate+Drive+Clifton+Park,+NY+12065=gmail=g>
> -8662
> Phone: 518-881-4909 <(518)%20881-4909>
>
> On Tue, Dec 5, 2017 at 2:10 PM, Wyatt Spear <wsp...@cs.uoregon.edu> wrote:
>
>> Greetings,
>>
>> I'm using the SC17 preview of 5.5 of ParaView. I first noticed this error
>> with my own dataset but it appears with the simple test.csv I've included.
>> To reproduce the segfault:
>>
>> Load the attached (or presumably any) CSV points file.
>> Run the TableToPoints filter.
>> Assign the X/Y/Z column dropdowns to the x coord/y coord/z coord values.
>> Hit Apply
>> Hit the 'Hover Cells On' button in the 3d display and mouse over a point
>> to confirm it works.
>> In the 'Representation' drop down box select "3D Glyphs".
>> In the 'Glyph Type' drop down box select "Box" (I wasn't able to
>> reproduce the error with arrows)
>> Hover over one of the resulting box glyphs for instant segfault.
>>
>> Command line output from this session was:
>>
>> Generic Warning: In /home/buildslave/dashboards/bu
>> ildbot/paraview-pvbinsdash-linux-shared-release_superbuild/
>> source-paraview/ParaViewCore/ServerManager/Core/vtkSMPropertyHelper.cxx,
>> line 511
>> Failed to locate property: OSPRayMaterialLibrary
>>
>> Generic Warning: In /home/buildslave/dashboards/bu
>> ildbot/paraview-pvbinsdash-linux-shared-release_superbuild/
>> source-paraview/ParaViewCore/ServerManager/Core/vtkSMPropertyHelper.cxx,
>> line 831
>> Call not supported for the current property type.
>>
>> Segmentation fault (core dumped)
>>
>> Regards,
>> Wyatt Spear
>>
>>
>>
>> ___
>> 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
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://public.kitware.com/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

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Segfault with 'Hover Cells' over 3d glyphs

2017-12-05 Thread Wyatt Spear
Greetings,

I'm using the SC17 preview of 5.5 of ParaView. I first noticed this error
with my own dataset but it appears with the simple test.csv I've included.
To reproduce the segfault:

Load the attached (or presumably any) CSV points file.
Run the TableToPoints filter.
Assign the X/Y/Z column dropdowns to the x coord/y coord/z coord values.
Hit Apply
Hit the 'Hover Cells On' button in the 3d display and mouse over a point to
confirm it works.
In the 'Representation' drop down box select "3D Glyphs".
In the 'Glyph Type' drop down box select "Box" (I wasn't able to reproduce
the error with arrows)
Hover over one of the resulting box glyphs for instant segfault.

Command line output from this session was:

Generic Warning: In
/home/buildslave/dashboards/buildbot/paraview-pvbinsdash-linux-shared-release_superbuild/source-paraview/ParaViewCore/ServerManager/Core/vtkSMPropertyHelper.cxx,
line 511
Failed to locate property: OSPRayMaterialLibrary

Generic Warning: In
/home/buildslave/dashboards/buildbot/paraview-pvbinsdash-linux-shared-release_superbuild/source-paraview/ParaViewCore/ServerManager/Core/vtkSMPropertyHelper.cxx,
line 831
Call not supported for the current property type.

Segmentation fault (core dumped)

Regards,
Wyatt Spear
x coord, y coord, z coord, scalar
0, 0, 0, 0
1, 0, 0, 1
0, 1, 0, 2
1, 1, 0, 3
-0.5, -0.5, 1, 4
0.5, -0.5, 1, 5
-0.5, 0.5, 1, 6
0.5, 0.5, 1, 7
___
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

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview