Skip to content

Commit

Permalink
using xarray plot insteal pcolormesh
Browse files Browse the repository at this point in the history
  • Loading branch information
gtramonte committed Jun 3, 2024
1 parent e3070bf commit 480dcc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geokube/core/field.py
Original file line number Diff line number Diff line change
Expand Up @@ -1393,7 +1393,7 @@ def plot(
kwargs['vmax'] = vmax
#kwargs['levels'] = 10
print(f'{vmin} / {vmax}')
plot = data.plot.pcolormesh(**kwargs)
plot = data.plot(**kwargs)

elif self._domain._type is DomainType.POINTS:
data = xr.Dataset(
Expand Down

0 comments on commit 480dcc7

Please sign in to comment.