xtgeo 4.10.1__cp313-cp313-macosx_11_0_arm64.whl → 4.14.0__cp313-cp313-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of xtgeo might be problematic. Click here for more details.
- cxtgeo.py +0 -18
- cxtgeoPYTHON_wrap.c +0 -843
- xtgeo/__init__.py +2 -0
- xtgeo/_cxtgeo.cpython-313-darwin.so +0 -0
- xtgeo/_internal.cpython-313-darwin.so +0 -0
- xtgeo/common/version.py +16 -3
- xtgeo/cube/_cube_window_attributes.py +60 -127
- xtgeo/grid3d/_ecl_grid.py +6 -2
- xtgeo/grid3d/_ecl_inte_head.py +6 -2
- xtgeo/grid3d/_grdecl_format.py +43 -0
- xtgeo/grid3d/_grdecl_grid.py +24 -12
- xtgeo/grid3d/_grid_etc1.py +183 -69
- xtgeo/grid3d/_grid_export.py +4 -3
- xtgeo/grid3d/_grid_hybrid.py +13 -29
- xtgeo/grid3d/_grid_refine.py +1 -1
- xtgeo/grid3d/_grid_translate_coords.py +154 -0
- xtgeo/grid3d/_gridprop_export.py +34 -12
- xtgeo/grid3d/_gridprop_op1.py +74 -8
- xtgeo/grid3d/_gridprop_roxapi.py +87 -25
- xtgeo/grid3d/grid.py +198 -36
- xtgeo/grid3d/grid_property.py +5 -27
- xtgeo/include/eigen3/Eigen/Cholesky +45 -0
- xtgeo/include/eigen3/Eigen/CholmodSupport +48 -0
- xtgeo/include/eigen3/Eigen/Core +384 -0
- xtgeo/include/eigen3/Eigen/Dense +7 -0
- xtgeo/include/eigen3/Eigen/Eigen +2 -0
- xtgeo/include/eigen3/Eigen/Eigenvalues +60 -0
- xtgeo/include/eigen3/Eigen/Geometry +59 -0
- xtgeo/include/eigen3/Eigen/Householder +29 -0
- xtgeo/include/eigen3/Eigen/IterativeLinearSolvers +48 -0
- xtgeo/include/eigen3/Eigen/Jacobi +32 -0
- xtgeo/include/eigen3/Eigen/KLUSupport +41 -0
- xtgeo/include/eigen3/Eigen/LU +47 -0
- xtgeo/include/eigen3/Eigen/MetisSupport +35 -0
- xtgeo/include/eigen3/Eigen/OrderingMethods +70 -0
- xtgeo/include/eigen3/Eigen/PaStiXSupport +49 -0
- xtgeo/include/eigen3/Eigen/PardisoSupport +35 -0
- xtgeo/include/eigen3/Eigen/QR +50 -0
- xtgeo/include/eigen3/Eigen/QtAlignedMalloc +39 -0
- xtgeo/include/eigen3/Eigen/SPQRSupport +34 -0
- xtgeo/include/eigen3/Eigen/SVD +50 -0
- xtgeo/include/eigen3/Eigen/Sparse +34 -0
- xtgeo/include/eigen3/Eigen/SparseCholesky +37 -0
- xtgeo/include/eigen3/Eigen/SparseCore +69 -0
- xtgeo/include/eigen3/Eigen/SparseLU +50 -0
- xtgeo/include/eigen3/Eigen/SparseQR +36 -0
- xtgeo/include/eigen3/Eigen/StdDeque +27 -0
- xtgeo/include/eigen3/Eigen/StdList +26 -0
- xtgeo/include/eigen3/Eigen/StdVector +27 -0
- xtgeo/include/eigen3/Eigen/SuperLUSupport +64 -0
- xtgeo/include/eigen3/Eigen/UmfPackSupport +40 -0
- xtgeo/include/eigen3/Eigen/src/Cholesky/LDLT.h +688 -0
- xtgeo/include/eigen3/Eigen/src/Cholesky/LLT.h +558 -0
- xtgeo/include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
- xtgeo/include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h +682 -0
- xtgeo/include/eigen3/Eigen/src/Core/ArithmeticSequence.h +413 -0
- xtgeo/include/eigen3/Eigen/src/Core/Array.h +417 -0
- xtgeo/include/eigen3/Eigen/src/Core/ArrayBase.h +226 -0
- xtgeo/include/eigen3/Eigen/src/Core/ArrayWrapper.h +209 -0
- xtgeo/include/eigen3/Eigen/src/Core/Assign.h +90 -0
- xtgeo/include/eigen3/Eigen/src/Core/AssignEvaluator.h +1010 -0
- xtgeo/include/eigen3/Eigen/src/Core/Assign_MKL.h +178 -0
- xtgeo/include/eigen3/Eigen/src/Core/BandMatrix.h +353 -0
- xtgeo/include/eigen3/Eigen/src/Core/Block.h +448 -0
- xtgeo/include/eigen3/Eigen/src/Core/BooleanRedux.h +162 -0
- xtgeo/include/eigen3/Eigen/src/Core/CommaInitializer.h +164 -0
- xtgeo/include/eigen3/Eigen/src/Core/ConditionEstimator.h +175 -0
- xtgeo/include/eigen3/Eigen/src/Core/CoreEvaluators.h +1741 -0
- xtgeo/include/eigen3/Eigen/src/Core/CoreIterators.h +132 -0
- xtgeo/include/eigen3/Eigen/src/Core/CwiseBinaryOp.h +183 -0
- xtgeo/include/eigen3/Eigen/src/Core/CwiseNullaryOp.h +1001 -0
- xtgeo/include/eigen3/Eigen/src/Core/CwiseTernaryOp.h +197 -0
- xtgeo/include/eigen3/Eigen/src/Core/CwiseUnaryOp.h +103 -0
- xtgeo/include/eigen3/Eigen/src/Core/CwiseUnaryView.h +132 -0
- xtgeo/include/eigen3/Eigen/src/Core/DenseBase.h +701 -0
- xtgeo/include/eigen3/Eigen/src/Core/DenseCoeffsBase.h +685 -0
- xtgeo/include/eigen3/Eigen/src/Core/DenseStorage.h +652 -0
- xtgeo/include/eigen3/Eigen/src/Core/Diagonal.h +258 -0
- xtgeo/include/eigen3/Eigen/src/Core/DiagonalMatrix.h +391 -0
- xtgeo/include/eigen3/Eigen/src/Core/DiagonalProduct.h +28 -0
- xtgeo/include/eigen3/Eigen/src/Core/Dot.h +318 -0
- xtgeo/include/eigen3/Eigen/src/Core/EigenBase.h +160 -0
- xtgeo/include/eigen3/Eigen/src/Core/ForceAlignedAccess.h +150 -0
- xtgeo/include/eigen3/Eigen/src/Core/Fuzzy.h +155 -0
- xtgeo/include/eigen3/Eigen/src/Core/GeneralProduct.h +465 -0
- xtgeo/include/eigen3/Eigen/src/Core/GenericPacketMath.h +1040 -0
- xtgeo/include/eigen3/Eigen/src/Core/GlobalFunctions.h +194 -0
- xtgeo/include/eigen3/Eigen/src/Core/IO.h +258 -0
- xtgeo/include/eigen3/Eigen/src/Core/IndexedView.h +237 -0
- xtgeo/include/eigen3/Eigen/src/Core/Inverse.h +117 -0
- xtgeo/include/eigen3/Eigen/src/Core/Map.h +171 -0
- xtgeo/include/eigen3/Eigen/src/Core/MapBase.h +310 -0
- xtgeo/include/eigen3/Eigen/src/Core/MathFunctions.h +2057 -0
- xtgeo/include/eigen3/Eigen/src/Core/MathFunctionsImpl.h +200 -0
- xtgeo/include/eigen3/Eigen/src/Core/Matrix.h +565 -0
- xtgeo/include/eigen3/Eigen/src/Core/MatrixBase.h +547 -0
- xtgeo/include/eigen3/Eigen/src/Core/NestByValue.h +85 -0
- xtgeo/include/eigen3/Eigen/src/Core/NoAlias.h +109 -0
- xtgeo/include/eigen3/Eigen/src/Core/NumTraits.h +335 -0
- xtgeo/include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h +232 -0
- xtgeo/include/eigen3/Eigen/src/Core/PermutationMatrix.h +605 -0
- xtgeo/include/eigen3/Eigen/src/Core/PlainObjectBase.h +1128 -0
- xtgeo/include/eigen3/Eigen/src/Core/Product.h +191 -0
- xtgeo/include/eigen3/Eigen/src/Core/ProductEvaluators.h +1179 -0
- xtgeo/include/eigen3/Eigen/src/Core/Random.h +218 -0
- xtgeo/include/eigen3/Eigen/src/Core/Redux.h +515 -0
- xtgeo/include/eigen3/Eigen/src/Core/Ref.h +381 -0
- xtgeo/include/eigen3/Eigen/src/Core/Replicate.h +142 -0
- xtgeo/include/eigen3/Eigen/src/Core/Reshaped.h +454 -0
- xtgeo/include/eigen3/Eigen/src/Core/ReturnByValue.h +119 -0
- xtgeo/include/eigen3/Eigen/src/Core/Reverse.h +217 -0
- xtgeo/include/eigen3/Eigen/src/Core/Select.h +164 -0
- xtgeo/include/eigen3/Eigen/src/Core/SelfAdjointView.h +365 -0
- xtgeo/include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
- xtgeo/include/eigen3/Eigen/src/Core/Solve.h +188 -0
- xtgeo/include/eigen3/Eigen/src/Core/SolveTriangular.h +235 -0
- xtgeo/include/eigen3/Eigen/src/Core/SolverBase.h +168 -0
- xtgeo/include/eigen3/Eigen/src/Core/StableNorm.h +251 -0
- xtgeo/include/eigen3/Eigen/src/Core/StlIterators.h +463 -0
- xtgeo/include/eigen3/Eigen/src/Core/Stride.h +116 -0
- xtgeo/include/eigen3/Eigen/src/Core/Swap.h +68 -0
- xtgeo/include/eigen3/Eigen/src/Core/Transpose.h +464 -0
- xtgeo/include/eigen3/Eigen/src/Core/Transpositions.h +386 -0
- xtgeo/include/eigen3/Eigen/src/Core/TriangularMatrix.h +1001 -0
- xtgeo/include/eigen3/Eigen/src/Core/VectorBlock.h +96 -0
- xtgeo/include/eigen3/Eigen/src/Core/VectorwiseOp.h +784 -0
- xtgeo/include/eigen3/Eigen/src/Core/Visitor.h +381 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/Complex.h +372 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h +228 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h +1574 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h +115 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h +422 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h +362 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h +2303 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h +89 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h +417 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h +90 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +2937 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +221 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +629 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h +2711 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h +258 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h +700 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h +117 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +1649 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +110 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/Default/Half.h +942 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/Default/Settings.h +49 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h +120 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h +103 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h +1685 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h +80 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h +23 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/MSA/Complex.h +648 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h +387 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h +1233 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/Complex.h +584 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +183 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h +75 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h +4587 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h +1419 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/Complex.h +351 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h +199 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h +1505 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h +142 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h +44 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h +752 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h +49 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h +232 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h +301 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h +670 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +694 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h +85 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h +426 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h +233 -0
- xtgeo/include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h +1060 -0
- xtgeo/include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h +177 -0
- xtgeo/include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h +541 -0
- xtgeo/include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h +189 -0
- xtgeo/include/eigen3/Eigen/src/Core/functors/StlFunctors.h +166 -0
- xtgeo/include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
- xtgeo/include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h +1131 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2645 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h +517 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +317 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +124 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h +518 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/Parallelizer.h +180 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +544 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +295 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h +262 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h +94 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h +472 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +317 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h +337 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +167 -0
- xtgeo/include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h +148 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/BlasUtil.h +583 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h +512 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/Constants.h +563 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h +106 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h +322 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h +186 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/IntegralConstant.h +272 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/MKL_support.h +137 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/Macros.h +1464 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/Memory.h +1163 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/Meta.h +812 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/NonMPL2.h +3 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h +31 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/ReshapedHelper.h +51 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/StaticAssert.h +221 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/SymbolicIndex.h +293 -0
- xtgeo/include/eigen3/Eigen/src/Core/util/XprHelper.h +856 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h +346 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h +462 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +418 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/RealQZ.h +657 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/RealSchur.h +558 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +904 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
- xtgeo/include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h +561 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/AlignedBox.h +486 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/AngleAxis.h +247 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/EulerAngles.h +114 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/Homogeneous.h +501 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/Hyperplane.h +282 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/OrthoMethods.h +235 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/ParametrizedLine.h +232 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/Quaternion.h +870 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/Rotation2D.h +199 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/RotationBase.h +206 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/Scaling.h +188 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/Transform.h +1563 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/Translation.h +202 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/Umeyama.h +166 -0
- xtgeo/include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h +168 -0
- xtgeo/include/eigen3/Eigen/src/Householder/BlockHouseholder.h +110 -0
- xtgeo/include/eigen3/Eigen/src/Householder/Householder.h +176 -0
- xtgeo/include/eigen3/Eigen/src/Householder/HouseholderSequence.h +545 -0
- xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
- xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +212 -0
- xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +229 -0
- xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +394 -0
- xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +453 -0
- xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +444 -0
- xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +198 -0
- xtgeo/include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +117 -0
- xtgeo/include/eigen3/Eigen/src/Jacobi/Jacobi.h +483 -0
- xtgeo/include/eigen3/Eigen/src/KLUSupport/KLUSupport.h +358 -0
- xtgeo/include/eigen3/Eigen/src/LU/Determinant.h +117 -0
- xtgeo/include/eigen3/Eigen/src/LU/FullPivLU.h +877 -0
- xtgeo/include/eigen3/Eigen/src/LU/InverseImpl.h +432 -0
- xtgeo/include/eigen3/Eigen/src/LU/PartialPivLU.h +624 -0
- xtgeo/include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
- xtgeo/include/eigen3/Eigen/src/LU/arch/InverseSize4.h +351 -0
- xtgeo/include/eigen3/Eigen/src/MetisSupport/MetisSupport.h +137 -0
- xtgeo/include/eigen3/Eigen/src/OrderingMethods/Amd.h +435 -0
- xtgeo/include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h +1863 -0
- xtgeo/include/eigen3/Eigen/src/OrderingMethods/Ordering.h +153 -0
- xtgeo/include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
- xtgeo/include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h +545 -0
- xtgeo/include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h +674 -0
- xtgeo/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
- xtgeo/include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h +635 -0
- xtgeo/include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h +713 -0
- xtgeo/include/eigen3/Eigen/src/QR/HouseholderQR.h +434 -0
- xtgeo/include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
- xtgeo/include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +335 -0
- xtgeo/include/eigen3/Eigen/src/SVD/BDCSVD.h +1366 -0
- xtgeo/include/eigen3/Eigen/src/SVD/JacobiSVD.h +812 -0
- xtgeo/include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
- xtgeo/include/eigen3/Eigen/src/SVD/SVDBase.h +376 -0
- xtgeo/include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h +414 -0
- xtgeo/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h +697 -0
- xtgeo/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +174 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/AmbiVector.h +378 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/CompressedStorage.h +274 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseAssign.h +270 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseBlock.h +571 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseColEtree.h +206 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h +370 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +722 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +150 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h +342 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseDot.h +98 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseMap.h +305 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseMatrix.h +1518 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h +398 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparsePermutation.h +178 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseProduct.h +181 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseRedux.h +49 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseRef.h +397 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h +659 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseTranspose.h +92 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseUtil.h +186 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseVector.h +478 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/SparseView.h +254 -0
- xtgeo/include/eigen3/Eigen/src/SparseCore/TriangularSolver.h +315 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU.h +923 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +375 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +280 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +126 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
- xtgeo/include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
- xtgeo/include/eigen3/Eigen/src/SparseQR/SparseQR.h +758 -0
- xtgeo/include/eigen3/Eigen/src/StlSupport/StdDeque.h +116 -0
- xtgeo/include/eigen3/Eigen/src/StlSupport/StdList.h +106 -0
- xtgeo/include/eigen3/Eigen/src/StlSupport/StdVector.h +131 -0
- xtgeo/include/eigen3/Eigen/src/StlSupport/details.h +84 -0
- xtgeo/include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h +1025 -0
- xtgeo/include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h +642 -0
- xtgeo/include/eigen3/Eigen/src/misc/Image.h +82 -0
- xtgeo/include/eigen3/Eigen/src/misc/Kernel.h +79 -0
- xtgeo/include/eigen3/Eigen/src/misc/RealSvd2x2.h +55 -0
- xtgeo/include/eigen3/Eigen/src/misc/blas.h +440 -0
- xtgeo/include/eigen3/Eigen/src/misc/lapack.h +152 -0
- xtgeo/include/eigen3/Eigen/src/misc/lapacke.h +16292 -0
- xtgeo/include/eigen3/Eigen/src/misc/lapacke_mangling.h +17 -0
- xtgeo/include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h +358 -0
- xtgeo/include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h +696 -0
- xtgeo/include/eigen3/Eigen/src/plugins/BlockMethods.h +1442 -0
- xtgeo/include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
- xtgeo/include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h +177 -0
- xtgeo/include/eigen3/Eigen/src/plugins/IndexedViewMethods.h +262 -0
- xtgeo/include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h +152 -0
- xtgeo/include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h +95 -0
- xtgeo/include/eigen3/Eigen/src/plugins/ReshapedMethods.h +149 -0
- xtgeo/include/eigen3/signature_of_eigen3_matrix_library +1 -0
- xtgeo/include/eigen3/unsupported/Eigen/AdolcForward +159 -0
- xtgeo/include/eigen3/unsupported/Eigen/AlignedVector3 +234 -0
- xtgeo/include/eigen3/unsupported/Eigen/ArpackSupport +30 -0
- xtgeo/include/eigen3/unsupported/Eigen/AutoDiff +46 -0
- xtgeo/include/eigen3/unsupported/Eigen/BVH +95 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/Tensor +137 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry +42 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/ThreadPool +74 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +554 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +329 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +247 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +1176 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +1559 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +1093 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +518 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +377 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +1023 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +73 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +6 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +1413 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +575 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +1650 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +1679 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +456 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +1132 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +544 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +214 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +347 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +137 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +6 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +104 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +389 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +1048 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +409 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +236 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +490 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +236 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +983 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +703 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +388 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +669 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +379 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +237 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +191 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +488 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +302 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +33 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +99 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +44 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +79 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +603 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +738 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +247 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +82 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +263 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +216 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +98 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +327 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +311 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +1102 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +708 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +291 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +322 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +998 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +6 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +966 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +582 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +454 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +465 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +528 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +513 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +471 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +161 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +346 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +303 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +264 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +249 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +629 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +293 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +236 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +338 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +669 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +67 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +249 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +486 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +236 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +23 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +40 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +301 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +48 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +20 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +537 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +88 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h +261 -0
- xtgeo/include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +158 -0
- xtgeo/include/eigen3/unsupported/Eigen/EulerAngles +43 -0
- xtgeo/include/eigen3/unsupported/Eigen/FFT +419 -0
- xtgeo/include/eigen3/unsupported/Eigen/IterativeSolvers +51 -0
- xtgeo/include/eigen3/unsupported/Eigen/KroneckerProduct +36 -0
- xtgeo/include/eigen3/unsupported/Eigen/LevenbergMarquardt +49 -0
- xtgeo/include/eigen3/unsupported/Eigen/MPRealSupport +213 -0
- xtgeo/include/eigen3/unsupported/Eigen/MatrixFunctions +504 -0
- xtgeo/include/eigen3/unsupported/Eigen/MoreVectorization +24 -0
- xtgeo/include/eigen3/unsupported/Eigen/NonLinearOptimization +140 -0
- xtgeo/include/eigen3/unsupported/Eigen/NumericalDiff +56 -0
- xtgeo/include/eigen3/unsupported/Eigen/OpenGLSupport +322 -0
- xtgeo/include/eigen3/unsupported/Eigen/Polynomials +137 -0
- xtgeo/include/eigen3/unsupported/Eigen/Skyline +39 -0
- xtgeo/include/eigen3/unsupported/Eigen/SparseExtra +54 -0
- xtgeo/include/eigen3/unsupported/Eigen/SpecialFunctions +103 -0
- xtgeo/include/eigen3/unsupported/Eigen/Splines +35 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +108 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +730 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +220 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h +293 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h +223 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +790 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h +355 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h +305 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h +261 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +449 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +187 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +511 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h +335 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h +436 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +90 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h +154 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h +267 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h +193 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +305 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +84 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +202 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +160 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +188 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +396 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +441 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +569 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +373 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +705 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +368 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +117 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +95 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +601 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +657 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h +66 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h +70 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +107 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +79 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +298 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +91 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +30 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +99 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +49 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +130 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h +280 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +428 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +143 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +352 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h +862 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +212 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h +295 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h +259 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h +89 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +122 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +1079 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +404 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h +282 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +247 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h +349 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +286 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +68 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +357 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +66 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +1959 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +118 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +67 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +167 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +58 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +330 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +58 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +2045 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +79 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +46 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +16 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +46 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +16 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +369 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +54 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +34 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Splines/Spline.h +507 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h +431 -0
- xtgeo/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h +93 -0
- xtgeo/interfaces/rms/__init__.py +18 -0
- xtgeo/interfaces/rms/_regular_surface.py +460 -0
- xtgeo/interfaces/rms/_rms_base.py +100 -0
- xtgeo/interfaces/rms/_rmsapi_package.py +69 -0
- xtgeo/interfaces/rms/rmsapi_utils.py +438 -0
- xtgeo/io/_file.py +10 -1
- xtgeo/lib/cmake/fmt/fmt-targets.cmake +1 -1
- xtgeo/lib/libfmt.a +0 -0
- xtgeo/lib/pkgconfig/fmt.pc +2 -2
- xtgeo/metadata/metadata.py +66 -62
- xtgeo/share/eigen3/cmake/Eigen3Config.cmake +37 -0
- xtgeo/share/eigen3/cmake/Eigen3ConfigVersion.cmake +65 -0
- xtgeo/share/eigen3/cmake/Eigen3Targets.cmake +106 -0
- xtgeo/share/eigen3/cmake/UseEigen3.cmake +6 -0
- xtgeo/share/pkgconfig/eigen3.pc +9 -0
- xtgeo/surface/__init__.py +2 -0
- xtgeo/surface/_regsurf_oper.py +1 -94
- xtgeo/surface/regular_surface.py +166 -90
- xtgeo/well/_blockedwell_roxapi.py +24 -4
- xtgeo/xyz/_xyz_io.py +7 -5
- xtgeo/xyz/points.py +1 -0
- {xtgeo-4.10.1.dist-info → xtgeo-4.14.0.dist-info}/METADATA +4 -4
- xtgeo-4.14.0.dist-info/RECORD +677 -0
- {xtgeo-4.10.1.dist-info → xtgeo-4.14.0.dist-info}/WHEEL +1 -1
- xtgeo/surface/_regsurf_roxapi.py +0 -241
- xtgeo-4.10.1.dist-info/RECORD +0 -137
- {xtgeo-4.10.1.dist-info → xtgeo-4.14.0.dist-info}/licenses/LICENSE.md +0 -0
xtgeo/surface/_regsurf_oper.py
CHANGED
|
@@ -448,99 +448,6 @@ def _get_randomline_fence(self, fencespec, hincrement, atleast, nextend):
|
|
|
448
448
|
return fspec
|
|
449
449
|
|
|
450
450
|
|
|
451
|
-
def operation_polygons(self, poly, value, opname="add", inside=True):
|
|
452
|
-
"""Operations restricted to polygons"""
|
|
453
|
-
|
|
454
|
-
# keep this for a while (e.g. mid 2024), and then replace it with _v2 below.
|
|
455
|
-
if not isinstance(poly, Polygons):
|
|
456
|
-
raise ValueError("The poly input is not a Polygons instance")
|
|
457
|
-
if opname not in VALID_OPER_POLYS:
|
|
458
|
-
raise ValueError(f"Operation key opname has invalid value: {opname}")
|
|
459
|
-
|
|
460
|
-
# make a copy of the RegularSurface which is used a "filter" or "proxy"
|
|
461
|
-
# value will be 1 inside polygons, 0 outside. Undef cells are kept as is
|
|
462
|
-
|
|
463
|
-
proxy = self.copy()
|
|
464
|
-
proxy.values *= 0.0
|
|
465
|
-
vals = proxy.get_values1d(fill_value=UNDEF)
|
|
466
|
-
|
|
467
|
-
# value could be a scalar or another surface; if another surface,
|
|
468
|
-
# must ensure same topology
|
|
469
|
-
|
|
470
|
-
if isinstance(value, type(self)):
|
|
471
|
-
if not self.compare_topology(value):
|
|
472
|
-
raise ValueError("Input is RegularSurface, but not same map topology")
|
|
473
|
-
value = value.values.copy()
|
|
474
|
-
else:
|
|
475
|
-
# turn scalar value into numpy array
|
|
476
|
-
value = self.values.copy() * 0 + value
|
|
477
|
-
|
|
478
|
-
idgroups = poly.get_dataframe(copy=False).groupby(poly.pname)
|
|
479
|
-
|
|
480
|
-
for _, grp in idgroups:
|
|
481
|
-
xcor = grp[poly.xname].values
|
|
482
|
-
ycor = grp[poly.yname].values
|
|
483
|
-
|
|
484
|
-
ier = _cxtgeo.surf_setval_poly(
|
|
485
|
-
proxy.xori,
|
|
486
|
-
proxy.xinc,
|
|
487
|
-
proxy.yori,
|
|
488
|
-
proxy.yinc,
|
|
489
|
-
proxy.ncol,
|
|
490
|
-
proxy.nrow,
|
|
491
|
-
proxy.yflip,
|
|
492
|
-
proxy.rotation,
|
|
493
|
-
vals,
|
|
494
|
-
xcor,
|
|
495
|
-
ycor,
|
|
496
|
-
1.0,
|
|
497
|
-
0,
|
|
498
|
-
)
|
|
499
|
-
if ier == -9:
|
|
500
|
-
xtg.warn("Polygon is not closed")
|
|
501
|
-
|
|
502
|
-
proxy.set_values1d(vals)
|
|
503
|
-
proxyv = proxy.values.astype(np.int8)
|
|
504
|
-
|
|
505
|
-
proxytarget = 1
|
|
506
|
-
if not inside:
|
|
507
|
-
proxytarget = 0
|
|
508
|
-
|
|
509
|
-
tmp = None
|
|
510
|
-
if opname == "add":
|
|
511
|
-
tmp = self.values.copy() + value
|
|
512
|
-
elif opname == "sub":
|
|
513
|
-
tmp = self.values.copy() - value
|
|
514
|
-
elif opname == "mul":
|
|
515
|
-
tmp = self.values.copy() * value
|
|
516
|
-
elif opname == "div":
|
|
517
|
-
# Dividing a map of zero is always a hazzle; try to obtain 0.0
|
|
518
|
-
# as result in these cases
|
|
519
|
-
if 0.0 in value:
|
|
520
|
-
xtg.warn(
|
|
521
|
-
"Dividing a surface with value=0.0 or surface with zero "
|
|
522
|
-
"elements; may get unexpected results, try to "
|
|
523
|
-
"achieve zero values as result!"
|
|
524
|
-
)
|
|
525
|
-
with np.errstate(divide="ignore", invalid="ignore"):
|
|
526
|
-
this = ma.filled(self.values, fill_value=1.0)
|
|
527
|
-
that = ma.filled(value, fill_value=1.0)
|
|
528
|
-
mask = ma.getmaskarray(self.values)
|
|
529
|
-
tmp = np.true_divide(this, that)
|
|
530
|
-
tmp = np.where(np.isinf(tmp), 0, tmp)
|
|
531
|
-
tmp = np.nan_to_num(tmp)
|
|
532
|
-
tmp = ma.array(tmp, mask=mask)
|
|
533
|
-
|
|
534
|
-
elif opname == "set":
|
|
535
|
-
tmp = value
|
|
536
|
-
elif opname == "eli":
|
|
537
|
-
tmp = value * 0 + UNDEF
|
|
538
|
-
tmp = ma.masked_greater(tmp, UNDEF_LIMIT)
|
|
539
|
-
|
|
540
|
-
self.values[proxyv == proxytarget] = tmp[proxyv == proxytarget]
|
|
541
|
-
del tmp
|
|
542
|
-
|
|
543
|
-
|
|
544
451
|
def _proxy_map_polygons(surf, poly, inside=True):
|
|
545
452
|
"""Return a proxy map where on one to do operations, as 0 and 1."""
|
|
546
453
|
inside_value = 1 if inside else 0
|
|
@@ -574,7 +481,7 @@ def _proxy_map_polygons(surf, poly, inside=True):
|
|
|
574
481
|
return proxy
|
|
575
482
|
|
|
576
483
|
|
|
577
|
-
def
|
|
484
|
+
def operation_polygons(self, poly, value: float | Any, opname="add", inside=True):
|
|
578
485
|
"""Operations restricted to polygons, using matplotlib (much faster).
|
|
579
486
|
|
|
580
487
|
The 'value' can be a number or another regular surface (with same design)
|
xtgeo/surface/regular_surface.py
CHANGED
|
@@ -17,7 +17,7 @@ Note that an instance of a regular surface can be made directly with::
|
|
|
17
17
|
|
|
18
18
|
or::
|
|
19
19
|
|
|
20
|
-
mysurf = xtgeo.
|
|
20
|
+
mysurf = xtgeo.surface_from_rms('some_rms_project', 'TopX', 'DepthSurface')
|
|
21
21
|
|
|
22
22
|
"""
|
|
23
23
|
|
|
@@ -47,6 +47,7 @@ import numpy.ma as ma
|
|
|
47
47
|
import pandas as pd
|
|
48
48
|
import scipy.ndimage
|
|
49
49
|
|
|
50
|
+
import xtgeo.interfaces.rms
|
|
50
51
|
from xtgeo.common.constants import (
|
|
51
52
|
UNDEF,
|
|
52
53
|
UNDEF_LIMIT,
|
|
@@ -70,7 +71,6 @@ from . import (
|
|
|
70
71
|
_regsurf_gridding,
|
|
71
72
|
_regsurf_import,
|
|
72
73
|
_regsurf_oper,
|
|
73
|
-
_regsurf_roxapi,
|
|
74
74
|
_regsurf_utils,
|
|
75
75
|
)
|
|
76
76
|
|
|
@@ -148,7 +148,7 @@ def surface_from_file(
|
|
|
148
148
|
)
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
def
|
|
151
|
+
def surface_from_rms(
|
|
152
152
|
project,
|
|
153
153
|
name,
|
|
154
154
|
category,
|
|
@@ -156,11 +156,11 @@ def surface_from_roxar(
|
|
|
156
156
|
realisation=0,
|
|
157
157
|
dtype: Union[Type[np.float64], Type[np.float32]] = np.float64,
|
|
158
158
|
):
|
|
159
|
-
"""This makes an instance of a RegularSurface directly from
|
|
159
|
+
"""This makes an instance of a RegularSurface directly from RMS input.
|
|
160
160
|
|
|
161
161
|
Args:
|
|
162
162
|
project (str or special): Name of project (as folder) if
|
|
163
|
-
outside RMS, og just use the magic project word if within RMS.
|
|
163
|
+
outside RMS, og just use the magic ``project`` word if within RMS.
|
|
164
164
|
name (str): Name of surface/map
|
|
165
165
|
category (str): For horizons/zones or clipboard/general2d_data:
|
|
166
166
|
for example 'DS_extracted'. For clipboard/general2d_data this can
|
|
@@ -169,13 +169,14 @@ def surface_from_roxar(
|
|
|
169
169
|
stype (str): RMS folder type, 'horizons' (default), 'zones', 'clipboard',
|
|
170
170
|
'general2d_data' or 'trends'
|
|
171
171
|
realisation (int): Realisation number, default is 0
|
|
172
|
-
dtype: Requested numpy dtype for array; default is 64 bit
|
|
172
|
+
dtype: Requested numpy dtype for array; default is 64 bit float. Note that down-
|
|
173
|
+
casting may give loss of precision.
|
|
173
174
|
|
|
174
175
|
Example::
|
|
175
176
|
|
|
176
177
|
# inside RMS:
|
|
177
178
|
import xtgeo
|
|
178
|
-
mysurf = xtgeo.
|
|
179
|
+
mysurf = xtgeo.surface_from_rms(project, 'TopEtive', 'DepthSurface')
|
|
179
180
|
|
|
180
181
|
Note::
|
|
181
182
|
|
|
@@ -187,8 +188,61 @@ def surface_from_roxar(
|
|
|
187
188
|
|
|
188
189
|
"""
|
|
189
190
|
|
|
190
|
-
|
|
191
|
-
project,
|
|
191
|
+
regsurf_rms = xtgeo.interfaces.rms.RegularSurfaceReader(
|
|
192
|
+
project_or_path=project,
|
|
193
|
+
name=name,
|
|
194
|
+
category=category,
|
|
195
|
+
stype=stype,
|
|
196
|
+
realisation=realisation,
|
|
197
|
+
).load()
|
|
198
|
+
|
|
199
|
+
return RegularSurface(
|
|
200
|
+
name=regsurf_rms.name,
|
|
201
|
+
ncol=regsurf_rms.ncol,
|
|
202
|
+
nrow=regsurf_rms.nrow,
|
|
203
|
+
xori=regsurf_rms.xori,
|
|
204
|
+
yori=regsurf_rms.yori,
|
|
205
|
+
xinc=regsurf_rms.xinc,
|
|
206
|
+
yinc=regsurf_rms.yinc,
|
|
207
|
+
rotation=regsurf_rms.rotation,
|
|
208
|
+
values=regsurf_rms.values,
|
|
209
|
+
dtype=dtype, # handled by constructor
|
|
210
|
+
)
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
def surface_from_roxar(
|
|
214
|
+
project,
|
|
215
|
+
name,
|
|
216
|
+
category,
|
|
217
|
+
stype="horizons",
|
|
218
|
+
realisation=0,
|
|
219
|
+
dtype: Union[Type[np.float64], Type[np.float32]] = np.float64,
|
|
220
|
+
):
|
|
221
|
+
"""This makes an instance of a RegularSurface directly from roxar (i.e. RMS) input.
|
|
222
|
+
|
|
223
|
+
.. deprecated::
|
|
224
|
+
The `surface_from_roxar` function is deprecated and will be removed in a future
|
|
225
|
+
version. Use `surface_from_rms` instead.
|
|
226
|
+
|
|
227
|
+
For parameters and usage details, see :func:`surface_from_rms`.
|
|
228
|
+
|
|
229
|
+
"""
|
|
230
|
+
|
|
231
|
+
# A pending deprecation warning will not show up in RMS for normal users
|
|
232
|
+
warnings.warn(
|
|
233
|
+
"The 'surface_from_roxar' function is deprecated and will be removed in a "
|
|
234
|
+
"future version. Use 'surface_from_rms' instead.",
|
|
235
|
+
PendingDeprecationWarning,
|
|
236
|
+
stacklevel=2,
|
|
237
|
+
)
|
|
238
|
+
|
|
239
|
+
return surface_from_rms(
|
|
240
|
+
project=project,
|
|
241
|
+
name=name,
|
|
242
|
+
category=category,
|
|
243
|
+
stype=stype,
|
|
244
|
+
realisation=realisation,
|
|
245
|
+
dtype=dtype,
|
|
192
246
|
)
|
|
193
247
|
|
|
194
248
|
|
|
@@ -1149,87 +1203,63 @@ class RegularSurface:
|
|
|
1149
1203
|
_regsurf_export.export_hdf5_regsurf(self, mfile, compression=compression)
|
|
1150
1204
|
return mfile.file
|
|
1151
1205
|
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
The import from the RMS project can be done either within the project
|
|
1165
|
-
or outside the project.
|
|
1166
|
-
|
|
1167
|
-
Note that a shortform to::
|
|
1168
|
-
|
|
1169
|
-
import xtgeo
|
|
1170
|
-
mysurf = xtgeo.surface_from_roxar(project, 'name', 'category')
|
|
1171
|
-
|
|
1172
|
-
Note also that horizon/zone name and category must exists in advance,
|
|
1173
|
-
otherwise an Exception will be raised.
|
|
1174
|
-
|
|
1175
|
-
Args:
|
|
1176
|
-
project (str or special): Name of project (as folder) if
|
|
1177
|
-
outside RMS, og just use the magic project word if within RMS.
|
|
1178
|
-
name (str): Name of surface/map
|
|
1179
|
-
category (str): For horizons/zones or clipboard/general2d_data: for
|
|
1180
|
-
example 'DS_extracted'
|
|
1181
|
-
stype (str): RMS folder type, 'horizons' (default), 'zones' or 'clipboard'
|
|
1182
|
-
realisation (int): Realisation number, default is 0
|
|
1183
|
-
dtype: For supporting conversion to 32 bit float for the numpy; default
|
|
1184
|
-
is 64 bit
|
|
1185
|
-
|
|
1186
|
-
"""
|
|
1187
|
-
kwargs = _regsurf_roxapi.import_horizon_roxapi(
|
|
1188
|
-
project, name, category, stype, realisation
|
|
1189
|
-
)
|
|
1190
|
-
kwargs["dtype"] = dtype # eventual dtype change will be done in __init__
|
|
1191
|
-
|
|
1192
|
-
return cls(**kwargs)
|
|
1193
|
-
|
|
1194
|
-
def to_roxar(
|
|
1195
|
-
self, project, name, category, stype="horizons", realisation=0
|
|
1196
|
-
): # pragma: no cover
|
|
1197
|
-
"""Store (export) a regular surface to a Roxar RMS project.
|
|
1206
|
+
def to_rms(
|
|
1207
|
+
self: RegularSurface,
|
|
1208
|
+
project: object,
|
|
1209
|
+
name: str,
|
|
1210
|
+
category: str,
|
|
1211
|
+
stype: Literal[
|
|
1212
|
+
"horizons", "zones", "clipboard", "general2d_data", "trends"
|
|
1213
|
+
] = "horizons",
|
|
1214
|
+
realisation: int = 0,
|
|
1215
|
+
domain: Literal["depth", "time", "unknown"] = "depth",
|
|
1216
|
+
) -> None: # pragma: no cover
|
|
1217
|
+
"""Store (export/save) a regular surface to a Roxar RMS project via the RMSAPI.
|
|
1198
1218
|
|
|
1199
1219
|
The export to the RMS project can be done either within the project
|
|
1200
|
-
or outside the project. The storing
|
|
1201
|
-
Zones
|
|
1220
|
+
or outside the project. The storing can be done to various storage types in
|
|
1221
|
+
RMS, such as 'Horizons', 'Zones', 'Clipboard', 'General2D_data' and
|
|
1222
|
+
'Trends'.
|
|
1202
1223
|
|
|
1203
1224
|
Note:
|
|
1204
|
-
|
|
1205
|
-
otherwise an Exception will be raised.
|
|
1225
|
+
For stype = 'horizons' or 'zones', the horizon or zone name and category
|
|
1226
|
+
must exists in advance, otherwise an Exception will be raised. Items on
|
|
1227
|
+
'clipboard' and 'general2d_data' will be created if not already present,
|
|
1228
|
+
and overwritten if they do.
|
|
1206
1229
|
|
|
1207
|
-
When project is file path (direct access, outside RMS) then
|
|
1208
|
-
``
|
|
1230
|
+
When project is a file path (direct access, outside RMS) then
|
|
1231
|
+
``to_rms()`` will implicitly do a project save. Otherwise, the project
|
|
1209
1232
|
will not be saved until the user do an explicit project save action.
|
|
1210
1233
|
|
|
1211
1234
|
Args:
|
|
1212
|
-
project
|
|
1213
|
-
outside RMS,
|
|
1214
|
-
name
|
|
1215
|
-
category
|
|
1216
|
-
clipboard/general2d_data
|
|
1235
|
+
project: Name of project (as a folder string) if
|
|
1236
|
+
outside RMS, or just use the magic ``project`` word if within RMS.
|
|
1237
|
+
name: Name of surface/map
|
|
1238
|
+
category: Required for horizons/zones: e.g. 'DS_extracted'. For
|
|
1239
|
+
clipboard/general2d_data represents the folder(s), where "" or None
|
|
1217
1240
|
means no folder, while e.g. "myfolder/subfolder" means that folders
|
|
1218
1241
|
myfolder/subfolder will be created if not already present. For
|
|
1219
1242
|
stype = 'trends', the category will not be applied
|
|
1220
|
-
stype
|
|
1243
|
+
stype: RMS storage type, 'horizons' (default), 'zones', 'clipboard'
|
|
1221
1244
|
'general2d_data', 'trends'
|
|
1222
|
-
realisation
|
|
1245
|
+
realisation: Realisation number, default is 0
|
|
1246
|
+
domain: Default is 'depth', but 'time', 'unknown' is also possible.
|
|
1247
|
+
Note that domain only applies to stypes 'clipboard' and
|
|
1248
|
+
'general2d_data', since the domain for horizons/zones is defined
|
|
1249
|
+
more rigidly when the horizon/zone category is created in RMS.
|
|
1250
|
+
Trends are always 'unknown' domain.
|
|
1223
1251
|
|
|
1224
1252
|
Raises:
|
|
1225
1253
|
ValueError: If name or category does not exist in the project
|
|
1254
|
+
RuntimeError: If Roxar RMS API cannot store the surface for various reasons
|
|
1226
1255
|
|
|
1227
|
-
Example
|
|
1228
|
-
|
|
1256
|
+
Example::
|
|
1257
|
+
|
|
1258
|
+
Here the from_rms method is used to initiate the object
|
|
1229
1259
|
directly::
|
|
1230
1260
|
|
|
1231
1261
|
import xtgeo
|
|
1232
|
-
topupperreek = xtgeo.
|
|
1262
|
+
topupperreek = xtgeo.surface_from_rms(project, 'TopUpperReek',
|
|
1233
1263
|
'DS_extracted')
|
|
1234
1264
|
topupperreek.values += 200
|
|
1235
1265
|
|
|
@@ -1237,23 +1267,74 @@ class RegularSurface:
|
|
|
1237
1267
|
topupperreek.to_file('topupperreek.gri')
|
|
1238
1268
|
|
|
1239
1269
|
# store in project
|
|
1240
|
-
topupperreek.
|
|
1270
|
+
topupperreek.to_rms(project, 'TopUpperReek', 'DS_something')
|
|
1241
1271
|
|
|
1242
|
-
Note
|
|
1243
|
-
|
|
1244
|
-
When dealing with surfaces to and from ``stype="trends"``, the surface must
|
|
1245
|
-
exist in advance, i.e. the Roxar API do not allow creating new surfaces.
|
|
1246
|
-
Actually trends are read only, but a workaround using ``load()`` in Roxar
|
|
1247
|
-
API makes it possible to overwrite existing surface trends. In addition,
|
|
1248
|
-
``realisation`` is not applied in trends.
|
|
1272
|
+
Note:
|
|
1273
|
+
The ``realisation`` number is not applied in trends.
|
|
1249
1274
|
|
|
1250
1275
|
|
|
1251
1276
|
.. versionadded:: 2.1 clipboard support
|
|
1252
1277
|
.. versionadded:: 2.19 general2d_data and trends support
|
|
1278
|
+
.. versionadded:: 4.14 Add domain keyword
|
|
1253
1279
|
|
|
1254
1280
|
"""
|
|
1255
|
-
|
|
1256
|
-
|
|
1281
|
+
use_srf = self
|
|
1282
|
+
if self.yflip == -1:
|
|
1283
|
+
use_srf = self.copy()
|
|
1284
|
+
use_srf.make_lefthanded()
|
|
1285
|
+
|
|
1286
|
+
data = xtgeo.interfaces.rms.RegularSurfaceDataRms(
|
|
1287
|
+
name=name,
|
|
1288
|
+
xori=use_srf.xori,
|
|
1289
|
+
yori=use_srf.yori,
|
|
1290
|
+
ncol=use_srf.ncol,
|
|
1291
|
+
nrow=use_srf.nrow,
|
|
1292
|
+
xinc=use_srf.xinc,
|
|
1293
|
+
yinc=use_srf.yinc,
|
|
1294
|
+
rotation=use_srf.rotation,
|
|
1295
|
+
values=use_srf.values, # exporter will enforce float64 and sanitize
|
|
1296
|
+
)
|
|
1297
|
+
|
|
1298
|
+
writer = xtgeo.interfaces.rms.RegularSurfaceWriter(
|
|
1299
|
+
project_or_path=project,
|
|
1300
|
+
name=name,
|
|
1301
|
+
category=category,
|
|
1302
|
+
stype=stype,
|
|
1303
|
+
realisation=realisation,
|
|
1304
|
+
domain=domain,
|
|
1305
|
+
)
|
|
1306
|
+
writer.save(data)
|
|
1307
|
+
|
|
1308
|
+
def to_roxar(
|
|
1309
|
+
self: RegularSurface,
|
|
1310
|
+
project: object,
|
|
1311
|
+
name: str,
|
|
1312
|
+
category: str,
|
|
1313
|
+
stype: str = "horizons",
|
|
1314
|
+
realisation: int = 0,
|
|
1315
|
+
domain: Literal["depth", "time", "unknown"] = "depth",
|
|
1316
|
+
) -> None: # pragma: no cover
|
|
1317
|
+
"""Deprecated: Use to_rms() instead.
|
|
1318
|
+
|
|
1319
|
+
.. deprecated:: 4.15
|
|
1320
|
+
``to_roxar()`` is deprecated and will be removed in a future version.
|
|
1321
|
+
Use :meth:`to_rms()` instead.
|
|
1322
|
+
"""
|
|
1323
|
+
# a PendingDeprecationWarning will not show up for RMS users, which is intended
|
|
1324
|
+
# since they should not be 'disturbed' by this change at this point.
|
|
1325
|
+
warnings.warn(
|
|
1326
|
+
"The 'to_roxar()' method is deprecated and will be removed in a later "
|
|
1327
|
+
"xtgeo version. Use 'to_rms()' instead.",
|
|
1328
|
+
PendingDeprecationWarning,
|
|
1329
|
+
stacklevel=2,
|
|
1330
|
+
)
|
|
1331
|
+
self.to_rms(
|
|
1332
|
+
project=project,
|
|
1333
|
+
name=name,
|
|
1334
|
+
category=category,
|
|
1335
|
+
stype=stype,
|
|
1336
|
+
realisation=realisation,
|
|
1337
|
+
domain=domain,
|
|
1257
1338
|
)
|
|
1258
1339
|
|
|
1259
1340
|
@classmethod
|
|
@@ -1883,7 +1964,7 @@ class RegularSurface:
|
|
|
1883
1964
|
# Operations restricted to inside/outside polygons
|
|
1884
1965
|
# ==================================================================================
|
|
1885
1966
|
|
|
1886
|
-
def operation_polygons(self, poly, value, opname="add", inside=True
|
|
1967
|
+
def operation_polygons(self, poly, value, opname="add", inside=True):
|
|
1887
1968
|
"""A generic function for map operations inside or outside polygon(s).
|
|
1888
1969
|
|
|
1889
1970
|
Args:
|
|
@@ -1895,14 +1976,9 @@ class RegularSurface:
|
|
|
1895
1976
|
on polygons (this key will be removed in later versions and shall not
|
|
1896
1977
|
be applied)
|
|
1897
1978
|
"""
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
)
|
|
1902
|
-
else:
|
|
1903
|
-
_regsurf_oper.operation_polygons(
|
|
1904
|
-
self, poly, value, opname=opname, inside=inside
|
|
1905
|
-
)
|
|
1979
|
+
_regsurf_oper.operation_polygons(
|
|
1980
|
+
self, poly, value, opname=opname, inside=inside
|
|
1981
|
+
)
|
|
1906
1982
|
|
|
1907
1983
|
# shortforms
|
|
1908
1984
|
def add_inside(self, poly, value):
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""Blocked Well input and output, private module for ROXAPI"""
|
|
2
2
|
|
|
3
|
+
import warnings
|
|
4
|
+
|
|
3
5
|
import numpy as np
|
|
4
6
|
import numpy.ma as npma
|
|
5
7
|
import pandas as pd
|
|
@@ -191,7 +193,6 @@ def _roxapi_export_bwell(self, rox, gname, bwname, wname, lognames, ijk, realisa
|
|
|
191
193
|
else:
|
|
192
194
|
bwlog = bwprops[lname]
|
|
193
195
|
bwprop = bwlog.get_values(realisation=realisation)
|
|
194
|
-
|
|
195
196
|
usedtype = bwprop.dtype
|
|
196
197
|
dind = bwset.get_data_indices([self._wname], realisation=realisation)
|
|
197
198
|
|
|
@@ -199,9 +200,28 @@ def _roxapi_export_bwell(self, rox, gname, bwname, wname, lognames, ijk, realisa
|
|
|
199
200
|
raise ValueError(
|
|
200
201
|
"Dataframe is of wrong size, changing numbers of rows is not possible"
|
|
201
202
|
)
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
203
|
+
|
|
204
|
+
# Get the values
|
|
205
|
+
values = self.get_dataframe(copy=False)[lname].values
|
|
206
|
+
|
|
207
|
+
# Create masked array first, then handle casting
|
|
208
|
+
masked_values = np.ma.masked_invalid(values)
|
|
209
|
+
|
|
210
|
+
# Handle casting based on target type
|
|
211
|
+
if np.issubdtype(usedtype, np.integer):
|
|
212
|
+
# For integer types, suppress the warning and handle invalid values
|
|
213
|
+
with warnings.catch_warnings():
|
|
214
|
+
warnings.filterwarnings(
|
|
215
|
+
"ignore", "invalid value encountered in cast", RuntimeWarning
|
|
216
|
+
)
|
|
217
|
+
# Fill masked values with a valid integer before casting
|
|
218
|
+
filled_values = np.ma.filled(masked_values, fill_value=0)
|
|
219
|
+
cast_values = filled_values.astype(usedtype)
|
|
220
|
+
# Recreate the masked array with the original mask
|
|
221
|
+
maskedvalues = np.ma.masked_array(cast_values, mask=masked_values.mask)
|
|
222
|
+
else:
|
|
223
|
+
# For float types, direct cast is fine
|
|
224
|
+
maskedvalues = masked_values.astype(usedtype)
|
|
205
225
|
|
|
206
226
|
# there are cases where the RMS API complains on the actual value of the masked
|
|
207
227
|
# array being outside range; hence remedy is to set 'data' value to a usedtype
|
xtgeo/xyz/_xyz_io.py
CHANGED
|
@@ -288,15 +288,17 @@ def import_rms_attr(pfile, zname="Z_TVDSS"):
|
|
|
288
288
|
names=names,
|
|
289
289
|
dtype=dtypes,
|
|
290
290
|
)
|
|
291
|
+
|
|
291
292
|
for col in dfr.columns[3:]:
|
|
292
293
|
if col in _attrs:
|
|
293
|
-
#
|
|
294
|
-
# previously a string to a float/int.
|
|
294
|
+
# avoid FutureWarning by not using .replace() for mixed dtypes
|
|
295
295
|
if _attrs[col] == "float":
|
|
296
|
-
|
|
296
|
+
s = dfr[col].mask(dfr[col] == "UNDEF", UNDEF)
|
|
297
|
+
dfr[col] = pd.to_numeric(s, errors="coerce").astype(float)
|
|
297
298
|
elif _attrs[col] == "int":
|
|
298
|
-
|
|
299
|
-
|
|
299
|
+
s = dfr[col].mask(dfr[col] == "UNDEF", UNDEF_INT)
|
|
300
|
+
s = pd.to_numeric(s, errors="coerce").fillna(UNDEF_INT).astype(int)
|
|
301
|
+
dfr[col] = s
|
|
300
302
|
# cast to numerical if possible
|
|
301
303
|
with contextlib.suppress(ValueError, TypeError):
|
|
302
304
|
dfr[col] = pd.to_numeric(dfr[col])
|
xtgeo/xyz/points.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: xtgeo
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.14.0
|
|
4
4
|
Summary: XTGeo is a Python library for 3D grids, surfaces, wells, etc
|
|
5
5
|
Keywords: grids,surfaces,wells,cubes
|
|
6
6
|
Author-Email: Equinor <fg_fmu-atlas@equinor.com>
|
|
@@ -14,7 +14,6 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
14
14
|
Classifier: Operating System :: MacOS
|
|
15
15
|
Classifier: Natural Language :: English
|
|
16
16
|
Classifier: Programming Language :: Python
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -27,7 +26,7 @@ Project-URL: Homepage, https://github.com/equinor/xtgeo
|
|
|
27
26
|
Project-URL: Repository, https://github.com/equinor/xtgeo
|
|
28
27
|
Project-URL: Issues, https://github.com/equinor/xtgeo/issues
|
|
29
28
|
Project-URL: Documentation, https://xtgeo.readthedocs.io
|
|
30
|
-
Requires-Python: >=3.
|
|
29
|
+
Requires-Python: >=3.10
|
|
31
30
|
Requires-Dist: deprecation
|
|
32
31
|
Requires-Dist: h5py>=3
|
|
33
32
|
Requires-Dist: hdf5plugin>=2.3
|
|
@@ -51,6 +50,7 @@ Requires-Dist: coverage>=4.1; extra == "dev"
|
|
|
51
50
|
Requires-Dist: hypothesis; extra == "dev"
|
|
52
51
|
Requires-Dist: mypy; extra == "dev"
|
|
53
52
|
Requires-Dist: pandas-stubs; extra == "dev"
|
|
53
|
+
Requires-Dist: psutil; extra == "dev"
|
|
54
54
|
Requires-Dist: pydocstyle; extra == "dev"
|
|
55
55
|
Requires-Dist: pytest; extra == "dev"
|
|
56
56
|
Requires-Dist: pytest-benchmark; extra == "dev"
|
|
@@ -92,7 +92,7 @@ Detailed documentation for [XTGeo at Read _the_ Docs](https://xtgeo.readthedocs.
|
|
|
92
92
|
|
|
93
93
|
## Feature summary
|
|
94
94
|
|
|
95
|
-
- Python 3.
|
|
95
|
+
- Python 3.10+ support
|
|
96
96
|
- Focus on high speed, using numpy and pandas with C backend
|
|
97
97
|
- Regular surfaces, i.e. 2D maps with regular sampling and rotation
|
|
98
98
|
- 3D grids (corner-point), supporting several formats such as
|