Skip to content

Commit

Permalink
expanding longitude dim
Browse files Browse the repository at this point in the history
  • Loading branch information
gtramonte committed Jul 17, 2024
1 parent 5c4cea8 commit 25d07d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/intake_geokube/afm.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def postprocess_afm(dset: xr.Dataset) -> xr.Dataset:
dset = dset.drop('lat')
dset = dset.drop('lon')
dset = dset.sortby('time')
return dset.expand_dims(dim={"lat": latitude}, axis=0) #, "lon": longitude}, axis=(1, 0))
return dset.expand_dims(dim={"lat": latitude}, axis=0).expand_dims(dim={"lon": longitude}, axis=0)


class CMCCAFMSource(GeokubeSource):
Expand Down

0 comments on commit 25d07d1

Please sign in to comment.