Skip to content

Commit eacbe9a

Browse files
committed
uk: fix external_Z_array bug
1 parent c313446 commit eacbe9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pykrige/uk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ def __init__(
416416
external_drift.shape[0] == external_drift_x.shape[0]
417417
and external_drift.shape[1] == external_drift_y.shape[0]
418418
):
419-
self.external_Z_drift = np.array(external_drift.T)
419+
self.external_Z_array = np.array(external_drift.T)
420420
else:
421421
raise ValueError(
422422
"External drift dimensions do not match "

0 commit comments

Comments
 (0)