Skip to content

Commit

Permalink
fix: geological map example stratigraphic order loaded incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachlan Grose committed Jul 27, 2022
1 parent 3c49f0e commit b98397b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LoopStructural/datasets/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def load_geological_map_data():
stratigraphic_order = pd.read_csv(
join(module_path, Path("data/geological_map_data/stratigraphic_order.csv")),
skiprows=1,
names=["name", "order"],
names=["order", "unit name"],
)
bbox = pd.read_csv(
join(module_path, Path("data/geological_map_data/bbox.csv")),
Expand Down

0 comments on commit b98397b

Please sign in to comment.