Skip to content

Commit abbbd10

Browse files
authored
Merge pull request #247 from GeoStat-Framework/uk_fix_Z_drift_bug
uk: fix external_Z_array bug
2 parents c313446 + eacbe9a commit abbbd10

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)