 | CSEGYREADERSetSampleIntervalConfiguration Method |
Specifies where the sample interval 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 SetSampleIntervalConfiguration(
string which_header,
int location,
double location_or_value
)
public void SetSampleIntervalConfiguration(
string which_header,
int location,
double location_or_value
)
Public Sub SetSampleIntervalConfiguration (
which_header As String,
location As Integer,
location_or_value As Double
)
Public Sub SetSampleIntervalConfiguration (
which_header As String,
location As Integer,
location_or_value As Double
)
public:
void SetSampleIntervalConfiguration(
String^ which_header,
int location,
double location_or_value
)
public:
void SetSampleIntervalConfiguration(
String^ which_header,
int location,
double location_or_value
)
member SetSampleIntervalConfiguration :
which_header : string *
location : int *
location_or_value : float -> unit
member SetSampleIntervalConfiguration :
which_header : string *
location : int *
location_or_value : float -> unit
Parameters
- which_header
- Type: SystemString
Which header contains the sample interval: "file_header", "trace_header" or "none" - location
- Type: SystemInt32
If `which_header` is "file_header" or "trace_header", then this parameter is the offset of the field containing the sample interval. If `which_header` is "none", thenthis parameter is ignored. - location_or_value
- Type: SystemDouble
If `which_header` is "file_header" or "trace_header", then this parameter is ignored. If `which_header` is "none", thenthis parameter is the sample interval.
See Also