Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pykrige: fix passed variogram in case of geo-coord #254

Merged
merged 1 commit into from
Aug 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/gstools/covmodel/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,11 @@ def plot(self, func="variogram", **kwargs): # pragma: no cover

# pykrige functions

def pykrige_vario(self, args=None, r=0):
def pykrige_vario(self, args=None, r=0): # pragma: no cover
"""Isotropic variogram of the model for pykrige."""
return self.variogram(r) # pragma: no cover
if self.latlon:
return self.vario_yadrenko(np.deg2rad(r))
return self.variogram(r)

@property
def pykrige_anis(self):
Expand Down