Skip to main content

Universal VTK Writer

Project description

UVW - Universal VTK Writer

UVW is a small utility library to write VTK files from data contained in Numpy arrays. It handles fully-fledged ndarrays defined over {1, 2, 3}-d domains, with arbitrary number of components. There are no constraints on the particular order of components, although copy of data can be avoided if the array is Fortran contiguous, as VTK files are written in Fortran order. Future developments will include multi-process write support.

Getting Started

Here is how to install and use uvw.

Prerequisites

  • Python 3. It may work with python 2, but it hasn't been tested.
  • Numpy. This code has been tested with Numpy version 1.14.3.

Installing

This library can be installed with pip:

pip install --user git+https://c4science.ch/source/uvw.git

Writing Numpy arrays

As a first example, let us write a multi-component numpy array into a rectilinear grid:

lang=python import numpy as np from uvw import RectilinearGrid, DataArray

Creating coordinates

x = np.linspace(-0.5, 0.5, 10) y = np.linspace(-0.5, 0.5, 20) z = np.linspace(-0.9, 0.9, 30)

Creating the file

grid = RectilinearGrid('grid.vtr', (x, y, z))

A centered ball

x, y, z = np.meshgrid(x, y, z, indexing='ij') r = np.sqrt(x2 + y2 + z**2) ball = r < 0.3

Some multi-component multi-dimensional data

data = np.zeros([10, 20, 30, 3, 3]) data[ball, ...] = np.array([[0, 1, 0], [1, 0, 0], [0, 1, 1]])

Adding the point data (see help(DataArray) for more info)

grid.addPointData(DataArray(data, range(3), 'data')) grid.write()

UVW also supports writing data on 2D and 1D physical domains, for example:

lang=python import numpy as np from uvw import RectilinearGrid, DataArray

Creating coordinates

x = np.linspace(-0.5, 0.5, 10) y = np.linspace(-0.5, 0.5, 20)

Creating the file

grid = RectilinearGrid('grid.vtr', (x, y))

A centered disk

x, y = np.meshgrid(x, y, indexing='ij') r = np.sqrt(x2 + y2) R = 0.3 disk = r < R

data = np.zeros([10, 20]) data[disk] = np.sqrt(1-(r[disk]/R)**2)

Adding the point data (see help(DataArray) for more info)

grid.addPointData(DataArray(data, range(2), 'data')) grid.write()

List of features

Here is a list of what is available in UVW:

VTK file formats

  • Image data (.vti)
  • Rectilinear grid (.vtr)
  • Structured grid (.vts)

Data representation

  • ASCII
  • Base64 (uncompressed)

Planned developments

Here is a list of future developments:

  • Image data
  • Unstructured grid
  • Structured grid
  • Parallel writing (multi-process)
  • Benchmarking + performance comparison with pyevtk

Developing

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Git repository

First clone the git repository:

git clone https://c4science.ch/source/uvw.git

Then you can use pip in development mode (possibly in virtualenv):

pip install --user -e .

Running the tests

The tests can be run using pytest:

cd tests; pytest

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Acknowledgments

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uvw-0.0.3.tar.gz (5.6 kB view hashes)

Uploaded Source

Built Distribution

uvw-0.0.3-py3-none-any.whl (6.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page