GithubHelp home page GithubHelp logo

Comments (10)

GuillaumeFavelier avatar GuillaumeFavelier commented on June 19, 2024

With this totally unoptimized snippet:

import numpy as np
import pyvista as pv
import csv
from pyvista.utilities import lines_from_points

xfile = open('x_coordinates.csv', 'r')
xreader = csv.reader(xfile, delimiter=',')
x = []
for row in xreader:
    x.append(row)
xfile.close()

yfile = open('y_coordinates.csv', 'r')
yreader = csv.reader(yfile, delimiter=',')
y = []
for row in yreader:
    y.append(row)
yfile.close()

zfile = open('z_coordinates.csv', 'r')
zreader = csv.reader(zfile, delimiter=',')
z = []
for row in zreader:
    z.append(row)
zfile.close()

plotter = pv.Plotter()
plotter.background_color = 'white'
for idx in range(len(x)):
    cx = x[idx]
    cy = y[idx]
    cz = z[idx]
    pts = np.column_stack((cx, cy, cz)).astype(np.float)
    line = lines_from_points(pts)
    plotter.add_mesh(line, show_edges=True)
plotter.show()

I got the following:
image

Did you expect something similar?

Also, I think it should be possible to append/create an UnstructuredGrid dataset and use only one call to add_mesh(). Note that I had to use show_edges=True to actually visualize the result.

from pyvista-support.

Sunil7545 avatar Sunil7545 commented on June 19, 2024

from pyvista-support.

GuillaumeFavelier avatar GuillaumeFavelier commented on June 19, 2024

I modified a bit the previous (unoptimized) snippet:

...
plotter = pv.Plotter()
plotter.background_color = 'white'
for idx in range(len(x)):
    cx = x[idx]
    cy = y[idx]
    cz = z[idx]
    pts = np.column_stack((cx, cy, cz)).astype(np.float)

    lines = lines_from_points(pts)
    lines.lines = lines.faces
    tube = lines.tube(0.01).elevation()
    plotter.add_mesh(tube, show_edges=False)
plotter.show()

image

The main modifications are lines.lines = lines.faces which basically updates the lines of the PolyData required by the tube filter. The rest is pretty straightforward, we apply the filters: first the tube with a radius of 0.01 then the elevation filter to add a scalar field corresponding to the Z height.

There is maybe a better/efficient way to achieve this, what do you think @pyvista/developers ?

from pyvista-support.

Sunil7545 avatar Sunil7545 commented on June 19, 2024

from pyvista-support.

akaszynski avatar akaszynski commented on June 19, 2024

Good start @GuillaumeFavelier!

Here's a little bit of an improvement using splines, which leads to smoother plotting with no breaks along the line.

I'm adding splines to pyvista for the next release, so you won't need to use make_spline and will instead use pv.Spline

import numpy as np
import pyvista as pv

x = np.loadtxt('x_coordinates.csv', delimiter=',')
y = np.loadtxt('y_coordinates.csv', delimiter=',')
z = np.loadtxt('z_coordinates.csv', delimiter=',')


def make_spline(points, n_points=None):
    """Create a spline from points

    Parameters
    ----------
    points : np.ndarray
        Array of points to build a spline out of.  Array must be 3D
        and directionally ordered.

    n_points : int, optional
        Number of points to interpolate along the points array.

    Returns
    -------
    spline : pyvista.PolyData
        Line mesh of spline.

    Examples
    --------
    Construct a spline
    >>> import numpy as np
    >>> import pyvista as pv
    >>> theta = np.linspace(-4 * np.pi, 4 * np.pi, 100)
    >>> z = np.linspace(-2, 2, 100)
    >>> r = z**2 + 1
    >>> x = r * np.sin(theta)
    >>> y = r * np.cos(theta)
    >>> points = np.column_stack((x, y, z))
    >>> spline = pv.Spline(points, 1000)
    """
    import vtk
    spline = vtk.vtkParametricSpline()
    vtk_points = pv.vtk_points(points, False)
    spline.SetPoints(vtk_points)
    spline.GetPoints().Modified()
    spline.Modified()

    # get interpolation density
    u_res = n_points
    if u_res is None:
        u_res = points.shape[0]

    return pv.geometric_objects.surface_from_para(spline, u_res)


# convert points to splines
splines = []
for idx in range(x.shape[0]):
    points = np.column_stack((x[idx], y[idx], z[idx]))

    spline = make_spline(points)
    # spline = pv.Spline(points)  # in the next release
    splines.append(spline)


# boring plot
pv.plot(splines)

# exciting plot with scalars
tubes = []
for spline in splines:
    # add scalars here...
    spline['scalars'] = np.arange(spline.n_points)
    tubes.append(spline.tube(0.01))

pv.plot(tubes, smooth_shading=True)

cool

from pyvista-support.

Sunil7545 avatar Sunil7545 commented on June 19, 2024

from pyvista-support.

akaszynski avatar akaszynski commented on June 19, 2024

Are you running the latest pyvista?

from pyvista-support.

Sunil7545 avatar Sunil7545 commented on June 19, 2024

from pyvista-support.

Sunil7545 avatar Sunil7545 commented on June 19, 2024

from pyvista-support.

akaszynski avatar akaszynski commented on June 19, 2024

Not sure what you’re trying to do. Can you provide a code example?

from pyvista-support.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.