TABLE Files
A file format for double indexed data


These are some examples of TABLE files, which are a simple homegrown storage format for doubly indexed data.

A TABLE file has a simple structure. There are three kinds of records:

Example TABLE Files:

Example: 3 points in 2D


        #  Corners of a triangle
        #
        0.0  0.0
        1.0  0.0
        0.0  1.0
      

Example: 4 points in 3D


        #  Corners of a tetrahedron
        #
        0.0  0.0  0.0
        1.0  0.0  0.0
        0.0  1.0  0.0
        0.0  0.0  1.0
      

Example: 3 points in 7D


        #  Three points in 7 dimensions.
        #
        0.7  0.2  0.2  0.3  0.5  0.6  0.3
        1.9  1.3  1.2  2.2  2.2  2.2  9.1
        0.9  0.7  1.1  0.4  0.8  2.7  0.0
      

Related Data and Programs:

Two special cases of this format are

TABLE File Characteristics:

Programs to create a TABLE file:

Programs to view a TABLE file:

Programs to process a TABLE file:

Routines to read a TABLE file:

Routines to write a TABLE file:

Examples of TABLE files:

You can go up one level to the DATA page.


Last revised on 23 January 2006.