Fesapi 2.9.0.1
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | List of all members
resqml2::PlaneSetRepresentation Class Referenceabstract

Defines a plane representation, which can be made up of multiple patches. Commonly represented features are fluid contacts or frontiers. Common geometries of this representation are titled or horizontal planes. More...

#include <PlaneSetRepresentation.h>

Inheritance diagram for resqml2::PlaneSetRepresentation:
resqml2::AbstractSurfaceRepresentation resqml2::AbstractRepresentation

Public Member Functions

virtual ~PlaneSetRepresentation ()=default
 
common::DataObjectReference getHdfProxyDor () const
 Gets the data object reference of the HDF proxy which is used for storing the numerical values of this representation (i.e. its geometry).
 
virtual void pushBackHorizontalPlaneGeometryPatch (double zCoordinate, resqml2 ::AbstractLocal3dCrs *localCrs=nullptr)=0
 
virtual void pushBackTiltedPlaneGeometryPatch (double x1, double y1, double z1, double x2, double y2, double z2, double x3, double y3, double z3, resqml2 ::AbstractLocal3dCrs *localCrs=nullptr)=0
 
virtual std::string getXmlTag () const final
 
- Public Member Functions inherited from resqml2::AbstractSurfaceRepresentation
virtual ~AbstractSurfaceRepresentation ()=default
 
unsigned int getBoundariesCount () const
 
common::DataObjectReference getOuterRingDor (unsigned int index) const
 
void pushBackOuterRing (PolylineRepresentation *outerRing)
 
void setSurfaceRole (gsoap_resqml2_0_1::resqml20__SurfaceRole surfaceRole)
 
gsoap_resqml2_0_1::resqml20__SurfaceRole getSurfaceRole () const
 
- Public Member Functions inherited from resqml2::AbstractRepresentation
virtual ~AbstractRepresentation ()=default
 
class AbstractLocal3dCrsgetLocalCrs (unsigned int patchIndex) const
 
virtual common::DataObjectReference getLocalCrsDor (unsigned int patchIndex) const
 
void setTimeIndex (uint64_t timeIndex, eml2 ::TimeSeries *timeSeries)
 
uint64_t getTimeIndex () const
 Gets the time index of this representation in the associated TimeSeries. Be sure to first check that a TimeSeries is associated this representation by calling getTimeSeriesDor or getTimeSeries;.
 
eml2::TimeSeriesgetTimeSeries () const
 
common::DataObjectReference getTimeSeriesDor () const
 Gets the data object reference of the TimeSeries containing the time of this representation at a particular index. For now, this method only look for a TimeSeries at the first patch containing a point geometry.
 
std::vector< class AbstractProperty * > getPropertySet () const
 
void setInterpretation (class AbstractFeatureInterpretation *interp)
 
class AbstractFeatureInterpretationgetInterpretation () const
 
common::DataObjectReference getInterpretationDor () const
 
virtual uint64_t getXyzPointCountOfPatch (unsigned int patchIndex) const =0
 
uint64_t getXyzPointCountOfAllPatches () const
 
virtual void getXyzPointsOfPatch (unsigned int patchIndex, double *xyzPoints) const =0
 Gets all the xyz points of a particular patch of this representation. xyz points are given in the local CRS.
 
void getXyzPointsOfPatchInGlobalCrs (unsigned int patchIndex, double *xyzPoints) const
 Gets all the xyz points of a particular patch of this representation. xyz points are given in the global CRS.
 
void getXyzPointsOfAllPatches (double *xyzPoints) const
 Gets all the xyz points of all patches of this representation. xyz points are given in the local CRS.
 
bool isInSingleLocalCrs () const
 
bool isInSingleGlobalCrs () const
 
void getXyzPointsOfAllPatchesInGlobalCrs (double *xyzPoints) const
 
AbstractRepresentationgetSeismicSupportOfPatch (const unsigned int &patchIndex) const
 
std::set< AbstractRepresentation * > getAllSeismicSupport () const
 
virtual uint64_t getPatchCount () const =0
 
void pushBackIntoRepresentationSet (class RepresentationSetRepresentation *repSet)
 
void addSeismic3dCoordinatesToPatch (unsigned int patchIndex, double *inlines, double *crosslines, uint64_t pointCount, resqml2 ::AbstractRepresentation *seismicSupport, eml2 ::AbstractHdfProxy *proxy)
 
void addSeismic3dCoordinatesToPatch (unsigned int patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, resqml2 ::AbstractRepresentation *seismicSupport)
 
void addSeismic2dCoordinatesToPatch (unsigned int patchIndex, double *lineAbscissa, resqml2 ::AbstractRepresentation *seismicSupport, eml2 ::AbstractHdfProxy *proxy)
 
void getSeismicLineAbscissaOfPointsOfPatch (unsigned int patchIndex, double *values) const
 
void getInlinesOfPointsOfPatch (unsigned int patchIndex, double *values) const
 
void getCrosslinesOfPointsOfPatch (unsigned int patchIndex, double *values) const
 

Static Public Attributes

static constexpr char const * XML_TAG = "PlaneSetRepresentation"
 
- Static Public Attributes inherited from resqml2::AbstractRepresentation
static constexpr char const * XML_TAG = "AbstractRepresentation"
 

Detailed Description

Defines a plane representation, which can be made up of multiple patches. Commonly represented features are fluid contacts or frontiers. Common geometries of this representation are titled or horizontal planes.

BUSINESS RULE: If the plane representation is made up of multiple patches, then you must specify the outer rings for each plane patch.

Constructor & Destructor Documentation

◆ ~PlaneSetRepresentation()

virtual resqml2::PlaneSetRepresentation::~PlaneSetRepresentation ( )
virtualdefault

Destructor does nothing since the memory is managed by the gSOAP context.

Member Function Documentation

◆ getHdfProxyDor()

common::DataObjectReference resqml2::PlaneSetRepresentation::getHdfProxyDor ( ) const
inlinevirtual

Gets the data object reference of the HDF proxy which is used for storing the numerical values of this representation (i.e. its geometry).

Returns
Empty DOR since plane set representation values do not rely a HDF proxy (it is XML only).

Implements resqml2::AbstractRepresentation.

◆ pushBackHorizontalPlaneGeometryPatch()

virtual void resqml2::PlaneSetRepresentation::pushBackHorizontalPlaneGeometryPatch ( double zCoordinate,
resqml2 ::AbstractLocal3dCrs * localCrs = nullptr )
pure virtual

Pushes back a new patch which is an horizontal plane.

Exceptions
std::invalid_argumentIf localCrs == nullptr and no default CRS is defined in the repository.
Parameters
zCoordinateThe z coordinate of the horizontal plane.
[in]localCrs(Optional) If non-null, the local CRS. If nullptr (default), the repository default local CRS will be used.

◆ pushBackTiltedPlaneGeometryPatch()

virtual void resqml2::PlaneSetRepresentation::pushBackTiltedPlaneGeometryPatch ( double x1,
double y1,
double z1,
double x2,
double y2,
double z2,
double x3,
double y3,
double z3,
resqml2 ::AbstractLocal3dCrs * localCrs = nullptr )
pure virtual

Pushs back a new patch which is not a horizontal plane. Its geometry is given by means of 3 xyz points.

Exceptions
std::invalid_argumentIf localCrs == nullptr and no default CRS is defined in the repository.
Parameters
x1The x value of the first point.
y1The y value of the first point.
z1The z value of the first point.
x2The x value of the second point.
y2The y value of the second point.
z2The z value of the second point.
x3The x value of the third point.
y3The y value of the third point.
z3The z value of the third point.
[in]localCrs(Optional) If non-null, the local CRS. If nullptr (default), the repository default local CRS will be used.

Member Data Documentation

◆ XML_TAG

constexpr char const* resqml2::PlaneSetRepresentation::XML_TAG = "PlaneSetRepresentation"
staticconstexpr

The standard XML tag without XML namespace for serializing this data object.


The documentation for this class was generated from the following file: