Skip to content

Commit

Permalink
fixed auto tests
Browse files Browse the repository at this point in the history
  • Loading branch information
miniufo committed Oct 29, 2024
1 parent 014dffa commit e79f2f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xgrads/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ def open_mfdataset(paths, parallel=False, encoding='GBK'):
return xr.concat(datasets[0], dim='time')

combined = xr.merge(datasets)
print('combined: ', combined.air[0:4,0,0].values)
print('merged: ', combined.air[0:4,0,0].values)
print('concat: ', xr.concat(datasets, dim='time').air[0:4,0,0].values)
print(combined.load())
print(xr.concat(datasets, dim='time').load())
return combined
Expand Down

0 comments on commit e79f2f9

Please sign in to comment.