API / geotoolkit / las / LasSectionGroup / LasSectionGroup
las.LasSectionGroup.LasSectionGroup
A grouping of LAS sections. Used by calling getCurveData with a specific curve mnemonic to get that curve's data
Constructors
• new LasSectionGroup(name, parameters, curves, curveData)
| Name | Type |
|---|---|
name | string |
parameters | LasParameterSection |
curves | LasParameterSection |
curveData | LasDataSection |
Methods
▸ getCurveData(mnemonic): string[] | number[]
Returns the curve data section for specific mnemonic (single curve data as an array)
| Name | Type | Description |
|---|---|---|
mnemonic | string | number | OR index of column for desired data |
string[] | number[]
▸ getCurveInfo(mnemonic): LasParameter
Returns the curve parameter
| Name | Type | Description |
|---|---|---|
mnemonic | string | number | OR index of column for desired data |
▸ getCurveMnemonics(): string[]
Returns the curve mnemonics section
Throws
throws error if the section group's data element is not LasParameter
string[]
mnemonics
▸ getName(): string
Gets the name of this group (prefix)
string
▸ getParameters(): LasParameterSection
Returns the parameter section
▸ getSections(): Object
Gets an array of the sections within this group
Object
| Name | Type |
|---|---|
curves | LasParameterSection |
data | LasDataSection |
parameters | LasParameterSection |
▸ isCurveNumeric(mnemonic): boolean
Return is this data set numeric
| Name | Type | Description |
|---|---|---|
mnemonic | string | number | OR index of column for desired data |
boolean