API / geotoolkit / welllog / data / LogDrillingSection / LogDrillingSection
data.LogDrillingSection.LogDrillingSection
Define a drilling section to provide information about start and end depth and start and end time
Example
const section = new LogDrillingSection({
'depthFrom': 100,
'depthTo': 500,
'valueFrom': {'Date': new Date('July 7, 2011 05:00 AM')},
'valueTo': {'Date': new Date('July 7, 2011 06:00 AM')},
'hint': [{
'Depth': 200,
'Time': new Date('July 7, 2011 05:15 AM')
}, {
'Depth': 300,
'Time': new Date('July 7, 2011 05:30 AM')
}, {
'Depth': 400,
'Time': new Date('July 7, 2011 05:45 AM')
}]
});Constructors
| [new LogDrillingSection(depthFrom, depthTo, valueFrom, valueTo, hint)](/solutions/geotoolkit/apis/classes/geotoolkit.welllog.data-4.logdrillingsection.logdrillingsection.md#new logdrillingsection(depthfrom, depthto, valuefrom, valueto, hint)) | [new LogDrillingSection(params)](/solutions/geotoolkit/apis/classes/geotoolkit.welllog.data-4.logdrillingsection.logdrillingsection.md#new logdrillingsection(params)) |
|---|
Methods
Css Properties
Constructors
• new LogDrillingSection(depthFrom?, depthTo?, valueFrom?, valueTo?, hint?)
Constructor
| Name | Type | Description |
|---|---|---|
Optional depthFrom | number | from depth |
Optional depthTo | number | to depth |
Optional valueFrom | Value | value from |
Optional valueTo | Value | value to |
Optional hint | Hint[] | array of rendering hints that will value markers at specified depths, defined by a depth Depth: and time Time: |
• new LogDrillingSection(params?)
Constructor
| Name | Type | Description |
|---|---|---|
Optional params | Options | properties object |
Methods
▸ getClassName(): string
string
▸ getDepthFrom(): number
Gets depth from
number
▸ getDepthTo(): number
Get DepthTo
number
▸ getHint(): Hint[]
Gets hints associated with this LogDrillingSection
Hint[]
array of hints
▸ getProperties(): OptionsOut
Gets all the properties pertaining to this object
properties object
▸ getValueFrom(): Value
Get value from Used by the DateTimeTickGenerator such that if Break, label is drawn at beginning or end of section instead of middle
▸ getValueTo(): Value
Get value to Used by the DateTimeTickGenerator such that if Break, label is drawn at beginning or end of section instead of middle
▸ setProperties(properties?): LogDrillingSection
Sets all the properties pertaining to this object
| Name | Type | Description |
|---|---|---|
Optional properties | Options | An object containing the properties to set |
▸ Static getClassName(): string
string