Home

Quick Links

Software Manual
GitHub
API Reference

Documentation Versions

Latest Release
Dev
8.3.0
8.2.0
8.1.0
8.0.0
7.2.0
7.1.0
7.0.0
6.0.0
3.9.0
3.5.0
USGS

ISIS Application Documentation


table2cube

Printer Friendly View | TOC | Home

Converts a table to a cube

Overview Parameters Example 1

Description

This program converts a single field of a table into a cube. The table records will become lines in the output cube, and the table field data will become samples. So, a field with an array of size three and twenty records will produce a 3 sample by 20 line cube.

Categories


History

Steve Koechle and Steven Lambright2007-06-15 Original Version
Jeannie Backer2012-10-04 PROG: Changed references to TableField methods to lower camel case. Ordered includes. Added g_ prefix to global variables. References #1169.

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the USGS Astrogeology Discussion Board
To report a bug, or suggest a feature go to: ISIS Github
File Modified: 02/21/2025 19:28:14
X

Files: FROM


Description

Specify the input file containing table data.

Type filename
File Mode input
Close Window
X

Files: TO


Description

Specify the output file, which will be a cube populated with the data from the table.

Type cube
File Mode output
Pixel Type real
Filter *.cub
Close Window
X

Settings: TABLENAME


Description

Specify the table name inside of the table input file (FROM).

Type string
Close Window
X

Settings: FIELD


Description

Specify the field name inside of the cube to gather the data from. The size of the array inside of this field will be the same as the number of samples in the output cube (unless otherwise specified).

Type string
Close Window
X

Settings: STARTREC


Description

Specify the starting record inside of the table. Use this if you want to skip initial data. One Based.

Type integer
Default 1
Close Window
X

Settings: NUMREC


Description

Specify the number of records to convert, this starts with the first record specified by STARTREC. One Based.

Type integer
Internal Default All
Close Window
X

Settings: STARTELEM


Description

Specify the starting element in the field. For example, if you have an array of size three but only want the last element this should be set to three. One Based.

Type integer
Default 1
Close Window
X

Settings: NUMELEM


Description

Specify the number of elements in the field to convert into the output cube, this starts with the first record specified by STARTELEM. One Based.

Type integer
Internal Default All
Close Window