VTK/Writing VTK files using python: Difference between revisions

From KitwarePublic
< VTK
Jump to navigationJump to search
mNo edit summary
mNo edit summary
Line 9: Line 9:
Obviously, you can use your favourite programming language to write such files. Mine is python. No more, no less.
Obviously, you can use your favourite programming language to write such files. Mine is python. No more, no less.


In the following, the data you want to write to a VTK file is supposed issued from scipy/numpy arrays. Please browse [http://scipy.org scipy.org] to get more information if needed.
In the following, the data you want to write to a VTK file are supposed to arise from scipy/numpy arrays. Please browse [http://scipy.org scipy.org] to get more information if needed.


Before writing VTK files, you have to know that there are two kinds of VTK files: "legacy" VTK files and "XML" VTK files. The first kind is quite obsolete now, but still widely used. Although it is easier to write than the XML kind
Before writing VTK files, you have to know that there are two kinds of VTK files: "legacy" VTK files and "XML" VTK files. The first kind is quite obsolete now, but still widely used. Although it is easier to write than the XML kind
(understand: with low-level instructions like "printf" in C or "print" in python), this wiki will focus on the last kind, the XML format.
(understand: with low-level instructions like "printf" in C or "print" in python), this wiki will focus on the last kind, the XML format.

Revision as of 17:53, 11 August 2007

Before starting, you are strongly advised to read the VTK file formats documentation here.

Introduction

The purpose of this wiki is to show how one can write VTK files using python.

Why using python ? Because it's beautiful & powerful, of course ! ;-)

Obviously, you can use your favourite programming language to write such files. Mine is python. No more, no less.

In the following, the data you want to write to a VTK file are supposed to arise from scipy/numpy arrays. Please browse scipy.org to get more information if needed.

Before writing VTK files, you have to know that there are two kinds of VTK files: "legacy" VTK files and "XML" VTK files. The first kind is quite obsolete now, but still widely used. Although it is easier to write than the XML kind (understand: with low-level instructions like "printf" in C or "print" in python), this wiki will focus on the last kind, the XML format.