API / geotoolkit / seismic / data / DataTransformation / DataTransformation
data.DataTransformation.DataTransformation
The base class for data transformations.
Constructors
Methods
Methods
▸ Abstract applyConfiguration(config, size, data): void
Configures this data transform.
| Name | Type | Description |
|---|---|---|
config | any | The data transform configuration. |
size | Dimension | The size of the data transform. |
data | ArrayBuffer | TypedArray | The data on which this transform is applied. |
void
▸ dispose(): void
Dispose.
void
▸ getClassName(): string
string
▸ Abstract getInverseName(): string
Gets the name of this data transform's inverse.
string
The name of the transforms's inverse.
▸ Abstract getName(): string
Gets the name of this data transform.
string
The name of this transform.
▸ getSize(): Dimension
Gets the size of the transform.
The size of the transform.
▸ Abstract getVersion(): string
Gets the version of this transform
string
The version of the transform.
▸ Abstract loadBinaryData(config, data): TypedArray
Loads binary data into this transform.
| Name | Type | Description |
|---|---|---|
config | any | The data transform configuration |
data | TypedArray | The data that has to be loaded. |
▸ setSize(size): DataTransformation
Sets the size of the transform.
| Name | Type | Description |
|---|---|---|
size | Dimension | The size of the transform. |
this
▸ Abstract transform(data): TypedArray
Performs the transform on the data.
| Name | Type | Description |
|---|---|---|
data | TypedArray | The data that will be transformed. |
The transformed data.
▸ Static getClassName(): string
string