Fesapi 2.10.1.0
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
Loading...
Searching...
No Matches
SeismicWellboreFrameRepresentation.h
1/*-----------------------------------------------------------------------
2Licensed to the Apache Software Foundation (ASF) under one
3or more contributor license agreements. See the NOTICE file
4distributed with this work for additional information
5regarding copyright ownership. The ASF licenses this file
6to you under the Apache License, Version 2.0 (the
7"License"; you may not use this file except in compliance
8with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing,
13software distributed under the License is distributed on an
14"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15KIND, either express or implied. See the License for the
16specific language governing permissions and limitations
17under the License.
18-----------------------------------------------------------------------*/
19#pragma once
20
21#include "WellboreFrameRepresentation.h"
22
23namespace RESQML2_NS
24{
27 {
28 public:
29
30 virtual ~SeismicWellboreFrameRepresentation() = default;
31
38 DLL_IMPORT_OR_EXPORT void setTimeValues(double const * timeValues, uint64_t timeValueCount, EML2_NS::AbstractHdfProxy* proxy = nullptr);
39
46 DLL_IMPORT_OR_EXPORT void setTimeValues(double firstTimeValue, double incrementTimeValue, unsigned int timeValueCount);
47
52 DLL_IMPORT_OR_EXPORT bool areTimeValuesRegularlySpaced() const;
53
58 DLL_IMPORT_OR_EXPORT double getTimeConstantIncrementValue() const;
59
63 DLL_IMPORT_OR_EXPORT double getTimeFirstValue() const;
64
68 DLL_IMPORT_OR_EXPORT unsigned int getTimeValuesCount() const;
69
73 DLL_IMPORT_OR_EXPORT COMMON_NS::AbstractObject::numericalDatatypeEnum getTimeHdfDatatype() const;
74
78 DLL_IMPORT_OR_EXPORT void getTimeAsDoubleValues(double* values) const;
79
83 DLL_IMPORT_OR_EXPORT void getTimeAsFloatValues(float* values) const;
84
90 DLL_IMPORT_OR_EXPORT virtual COMMON_NS::DataObjectReference getTimeCrsDor() const = 0;
91
97 DLL_IMPORT_OR_EXPORT EML2_NS::AbstractLocal3dCrs* getTimeCrs() const;
98
102 DLL_IMPORT_OR_EXPORT double getSeismicReferenceDatum() const;
103
107 DLL_IMPORT_OR_EXPORT double getWeatheringVelocity() const;
108
112 DLL_IMPORT_OR_EXPORT static constexpr char const* XML_TAG = "SeismicWellboreFrameRepresentation";
113
117 DLL_IMPORT_OR_EXPORT virtual std::string getXmlTag() const final { return XML_TAG; }
118
119 protected:
120
121 /*
122 * Default constructor
123 */
125
129 SeismicWellboreFrameRepresentation(gsoap_resqml2_0_1::eml20__DataObjectReference* partialObject) :
130 WellboreFrameRepresentation(partialObject) {}
131
135 SeismicWellboreFrameRepresentation(gsoap_eml2_3::resqml22__SeismicWellboreFrameRepresentation * fromGsoap) :
136 WellboreFrameRepresentation(fromGsoap) {}
137 };
138}
A seismic wellbore frame representation. This class cannot be inherited.
Definition SeismicWellboreFrameRepresentation.h:27
void getTimeAsDoubleValues(double *values) const
void setTimeValues(double firstTimeValue, double incrementTimeValue, unsigned int timeValueCount)
eml2::AbstractLocal3dCrs * getTimeCrs() const
void getTimeAsFloatValues(float *values) const
void setTimeValues(double const *timeValues, uint64_t timeValueCount, eml2::AbstractHdfProxy *proxy=nullptr)
virtual common::DataObjectReference getTimeCrsDor() const =0
common::AbstractObject::numericalDatatypeEnum getTimeHdfDatatype() const
virtual std::string getXmlTag() const final
Definition SeismicWellboreFrameRepresentation.h:117
Proxy class for a wellbore frame representation. A wellbore frame representation is a representation ...
Definition WellboreFrameRepresentation.h:35