Last updated

API / geotoolkit3d / scene / volumetric / Constants / DataOrder

Enumeration: DataOrder

volumetric.Constants.DataOrder

Data order and coordinate system.
This enum is used to describe the coordinate system and reading/writing order of the data.

Table of contents

Enumeration Members

Contents

Enumeration Members

YUpXYZ

YUpXYZ = "YUpXYZ"

Data in Y-Up, right hand coordinate system.
Commonly used in medical and general volume imagery.
When in this mode, the raw data array needs to be provided in the order X Y Z, like so:

Example

+------+
/      /|
+------+ | <- Y
|      | +
|      |/ <- Z
+------+
X

ZUpZYX

ZUpZYX = "ZUpZYX"

Data in Z-Up, right hand coordinate system.
Commonly used to store seismic volumes, where samples (Z axis) are read the most frequently.
When in this mode, the raw data array needs to be provided in the order Z Y X, like so:

Example

+------+
/      /|
+------+ | <- Z
|      | +
|      |/ <- X
+------+
Y