TABLE Files
A file format for double indexed data


TABLE is a data directory which contains 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:

Licensing:

The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.

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:

Sample Files:

You can go up one level to the DATA page.


Last revised on 23 January 2006.