Last updated

API / geotoolkit3d / data / seismic / SeismicVolume / SeismicVolume

Class: SeismicVolume

seismic.SeismicVolume.SeismicVolume

Defines an abstract implementation of a seismic volume data.

Hierarchy

Table of contents

Constructors
Methods

Contents

Constructors

new SeismicVolume()

Protected new SeismicVolume()

Overrides

EventDispatcher.constructor

Methods

dispose

dispose(): void

Dispose.

Returns

void

Inherited from

EventDispatcher.dispose


getClassName

getClassName(): string

Returns

string

Inherited from

EventDispatcher.getClassName


getIJK

Abstract getIJK(): IJKCoordinates

Volume IJK information

Returns

IJKCoordinates


getIndexCoordinates

Abstract getIndexCoordinates(): IndexCoordinates

Volume coordinates

Returns

IndexCoordinates


getOriginalIndexCoordinates

Abstract getOriginalIndexCoordinates(): IndexCoordinates

Volume original coordinates

Returns

IndexCoordinates


getReader

Abstract getReader(location, lod?): Promise<SeismicReader>

Returns seismic reader for spectified location

Parameters

Name Type Description
locationLocationslice location
Optional lodnumber

Returns

Promise<SeismicReader>


hasEventListener

hasEventListener(type, callback?): boolean

Check if a list of event listeners for this type contains this listener

Parameters

Name Type Description
typestringtype of event or property
Optional callbackFunctionto be called, if null, check if any callback is registered

Returns

boolean

Inherited from

EventDispatcher.hasEventListener


isDisposed

isDisposed(): boolean

Returns whether this object has been disposed

Returns

boolean

Inherited from

EventDispatcher.isDisposed


isSilent

isSilent(): boolean

Return true if the event dispatcher doesn't notify any events

Returns

boolean

Inherited from

EventDispatcher.isSilent


notify

notify(type, source, args?): SeismicVolume

Notify listeners

Parameters

Name Type Description
typestringevent types
sourceanyof the event
Optional argsanyarguments of the event

Returns

SeismicVolume

this

Inherited from

EventDispatcher.notify


off

off(type?, callback?): SeismicVolume

Detach listener on event. Calling .off() with no arguments removes all attached listeners. Calling .off(type) with no callback removes all attached listeners for specific type.

Parameters

Name Type Description
Optional typestringtype of the event
Optional callbackEventListenerfunction to be called

Returns

SeismicVolume

this

Inherited from

EventDispatcher.off

off<E>(type, callback): SeismicVolume

Type parameters

NameType
Eextends string

Parameters

Name Type
typeE
callback(eventType: E, sender: SeismicVolume, args: EventMap[E]) => void

Returns

SeismicVolume

Inherited from

EventDispatcher.off


on

on(type, callback, options?): SeismicVolume

Attach listener on event that will be called whenever the specified event is delivered to the target

If the callback function is already in the list of event listeners for this target, the function is not added a second time.

If a particular anonymous function is in the list of event listeners registered for a certain target, and then later in the code, an identical anonymous function is given in an "on" call, the second function will also be added to the list of event listeners for that target.

Parameters

Name Type Description
typestringtype of event or property
callbackEventListenerto be called
Optional optionsOptionsoptions of subscription

Returns

SeismicVolume

this

Inherited from

EventDispatcher.on

on<E>(type, callback, options?): SeismicVolume

Type parameters

NameType
Eextends string

Parameters

Name Type
typeE
callback(eventType: E, sender: SeismicVolume, args: EventMap[E]) => void
Optional optionsOptions

Returns

SeismicVolume

Inherited from

EventDispatcher.on


open

Abstract open(): Promise<SeismicVolume>

Open seismic volume and return itself when it is ready to display

Returns

Promise<SeismicVolume>


setSilent

setSilent(bool): SeismicVolume

Set silent mode

Parameters

Name Type Description
boolbooleanflag to enable silent mode

Returns

SeismicVolume

this

Inherited from

EventDispatcher.setSilent


getClassName

Static getClassName(): string

Returns

string

Inherited from

EventDispatcher.getClassName