Skip to content

Commit b98397b

Browse files
author
Lachlan Grose
committed
fix: geological map example stratigraphic order loaded incorrectly
1 parent 3c49f0e commit b98397b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LoopStructural/datasets/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def load_geological_map_data():
177177
stratigraphic_order = pd.read_csv(
178178
join(module_path, Path("data/geological_map_data/stratigraphic_order.csv")),
179179
skiprows=1,
180-
names=["name", "order"],
180+
names=["order", "unit name"],
181181
)
182182
bbox = pd.read_csv(
183183
join(module_path, Path("data/geological_map_data/bbox.csv")),

0 commit comments

Comments
 (0)