 | CSEGYREADER.SetZOffsetConfiguration Method |
Specifies where the z-offset (time delay) comes from: can be a field in the binary file header, a field in the trace header, or a value specified by the user.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SetZOffsetConfiguration(
string which_header,
int location,
double value
)
public void SetZOffsetConfiguration(
string which_header,
int location,
double value
)
Public Sub SetZOffsetConfiguration (
which_header As String,
location As Integer,
value As Double
)
Public Sub SetZOffsetConfiguration (
which_header As String,
location As Integer,
value As Double
)
public:
void SetZOffsetConfiguration(
String^ which_header,
int location,
double value
)
public:
void SetZOffsetConfiguration(
String^ which_header,
int location,
double value
)
member SetZOffsetConfiguration :
which_header : string *
location : int *
value : float -> unit
member SetZOffsetConfiguration :
which_header : string *
location : int *
value : float -> unit
Parameters
- which_header
- Type: System.String
Which header contains the z offset: "file_header", "trace_header" or "none" - location
- Type: System.Int32
If `which_header` is "file_header" or "trace_header", then this parameter is the offset of the field. If `which_header` is "none", then this parameter is ignored. - value
- Type: System.Double
If `which_header` is "file_header" or "trace_header", then this parameter is ignored. If `which_header` is "none", then this parameter is the z offset.
See Also