Scope
Scope.Rd
Class representing a PetroVisor scope object.
Public fields
name
The name of the scope.
start
The scope's start date.
end
The scope's end date.
time_increment
The scope's time increment. Allowed values are:
"EveryMinute"
,"EveryFiveMinutes"
,"EveryFifteenMinutes"
,"Hourly"
,"Daily"
,"Monthly"
,"Quarterly"
,"Yearly"
depth_increment
The scope's depth increment. Allowed values are:
"Meter"
,"HalfMeter"
,"EighthMeter"
,"TenthMeter"
,"Foot"
,"HalfFoot"
start_depth
The scope's start depth.
end_depth
The scope's end depth.
formula
The scope's definition as string (P# syntax).
description
The description of the item.
labels
A list of strings holding the labels of the scope.
Methods
Method new()
Create a new Scope instance.
Usage
Scope$new(
name = NULL,
start = NULL,
end = NULL,
time_increment = c("", "EveryMinute", "EveryFiveMinutes", "EveryFifteenMinutes",
"Hourly", "Daily", "Monthly", "Quarterly", "Yearly"),
depth_increment = c("", "Meter", "HalfMeter", "EighthMeter", "TenthMeter", "Foot",
"HalfFoot"),
start_depth = NULL,
end_depth = NULL,
formula = NULL,
description = NULL,
labels = list()
)
Arguments
name
The name of the scope.
start
The scope's start date.
end
The scope's end date.
time_increment
The scope's time increment. Allowed values are:
"EveryMinute"
,"EveryFiveMinutes"
,"EveryFifteenMinutes"
,"Hourly"
,"Daily"
,"Monthly"
,"Quarterly"
,"Yearly"
depth_increment
The scope's depth increment. Allowed values are:
"Meter"
,"HalfMeter"
,"EighthMeter"
,"TenthMeter"
,"Foot"
,"HalfFoot"
start_depth
The scope's start depth.
end_depth
The scope's end depth.
formula
The scope's definition as string (P# syntax).
description
The description of the item.
labels
A list of strings holding the labels of the scope.