Skip to content

Commit eebf0df

Browse files
fix esi kriging bug from wrong default arg
1 parent 9b809c0 commit eebf0df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python/spatialize/gs/esi/_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ def esi_nongriddata(points, values, xi, **kwargs):
470470
},
471471
specific_args={
472472
li.IDW: {"exponent": 2.0},
473-
li.KRIGING: {"model": 1, "nugget": 0.1, "range": 5000.0, "sill": 1.0},
473+
li.KRIGING: {"model": "spherical", "nugget": 0.1, "range": 5000.0, "sill": 1.0},
474474
li.ADAPTIVE_IDW: {}
475475
})
476476
def _call_libspatialize(points, values, xi, **kwargs):

0 commit comments

Comments
 (0)