Skip to content

Commit

Permalink
version incremement, fill value to interp1
Browse files Browse the repository at this point in the history
  • Loading branch information
dreoilin committed Oct 24, 2023
1 parent d4a8040 commit 72c2d4e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/pygmid/Lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,10 @@ def _RatioVRatioLK(self, outkeys, varkeys, vararg, pars, **ipkwargs):

dim = x.shape
output = np.zeros((dim[1], len(xdesired)))
ipkwargs['kind'] = pars['METHOD']
ipkwargs = {
'kind' : pars['METHOD'],
'fill_value' : np.NaN
}

for i in range(0, dim[1]):
for j in range(0, len(xdesired)):
Expand Down
2 changes: 1 addition & 1 deletion src/pygmid/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.9"
__version__ = "1.2.10"

0 comments on commit 72c2d4e

Please sign in to comment.