Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrakenhoff committed Aug 25, 2023
1 parent d11b76d commit 0d9806e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions nlmod/read/regis.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,9 @@ def add_geotop_to_regis_layers(
remove_nan_layers : bool, optional
When True, layers with only 0 or NaN thickness are removed. The default is True.
anisotropy : float, optional
The anisotropy value used when there are no kv values in df. The default is
1.0.
The anisotropy value (kh/kv) used when there are no kv values in df. The
default is 1.0.
Returns
-------
Expand All @@ -219,7 +220,7 @@ def add_geotop_to_regis_layers(
if "kh" not in gt or "kv" not in gt:
if "kh" not in gt:
logger.info(
f"Calculating kh of geotop by multipying kv with an anisotropy of {anisotropy}"
f"Calculating kh of geotop by multiplying kv with an anisotropy of {anisotropy}"
)
gt["kh"] = gt["kv"] * anisotropy
elif "kv" not in gt:
Expand Down

0 comments on commit 0d9806e

Please sign in to comment.