Skip to contents

Class representing a PetroVisor dataset request object.

Public fields

entityName

The name of the entity for which data is requested.

signalName

The name of the requested signal.

unitName

The name of the unit the data is requested in.

Methods


Method new()

Create a new DataSetRequest instance.

Usage

DataSetRequest$new(entityName = NULL, signalName = NULL, unitName = NULL)

Arguments

entityName

The name of the entity for which data is requested.

signalName

The name of the requested signal.

unitName

The name of the unit the data is requested in.


Method toList()

Convert the object to a list. This function is mainly used by the DataServices to convert the objects to lists and then call the web API.

Usage

DataSetRequest$toList()


Method clone()

The objects of this class are cloneable with this method.

Usage

DataSetRequest$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

if (FALSE) { # \dontrun{
DataSetRequest$new(entityName = "Well01",
                   signalName = "surface x-coordinate",
                   unitName = "m")
} # }