Skip to content

Commit

Permalink
dropping certainty variable from dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
gtramonte committed Jul 17, 2024
1 parent f89ccbc commit eab48e8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/intake_geokube/afm.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def postprocess_afm(dset: xr.Dataset) -> xr.Dataset:
longitude = dset['lon'].values
dset = dset.drop('lat')
dset = dset.drop('lon')
dset = dset.drop('certainty')
return dset.expand_dims(dim={"lat": latitude, "lon": longitude}, axis=(1, 0)).sortby('time')


Expand Down

0 comments on commit eab48e8

Please sign in to comment.