Skip to content

Commit 67cbfe3

Browse files
committed
[BUG] Fixed subsurface dependecy to load topography.
1 parent 2e3ff77 commit 67cbfe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gempy/API/grid_API.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def set_topography_from_arrays(grid: Grid, xyz_vertices: np.ndarray):
5656

5757
def set_topography_from_file(grid: Grid, filepath: str, crop_to_extent: Union[Sequence, None] = None):
5858
ss = require_subsurface()
59-
struct: ss.StructuredData = ss.modules.reader.read_structured_topography(
59+
struct: ss.StructuredData = ss.reader.read_structured_topography(
6060
path=filepath,
6161
crop_to_extent=crop_to_extent
6262
)

0 commit comments

Comments
 (0)