We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3c0480 commit 563127cCopy full SHA for 563127c
gempy_engine/core/data/solutions.py
@@ -63,6 +63,13 @@ def block_solution_resolution(self) -> np.ndarray:
63
raise ValueError("Block solution type not recognized.")
64
65
return resolution
66
+
67
+ @property
68
+ def root_output(self) -> OctreeLevel:
69
+ """Get the root output where you can find all the grids other than the octree grid, and lvl0 of the octree."""
70
+ if not self.octrees_output:
71
+ raise ValueError("No octree levels available.")
72
+ return self.octrees_output[0]
73
74
@property
75
def raw_arrays(self) -> RawArraysSolution:
0 commit comments