Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
zmoon committed Oct 7, 2024
1 parent 69f6bc7 commit 3af095f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions monetio/sat/_modis_l2_mm.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ def read_dataset(fname, variable_dict):

ds = ds.assign_coords(
{
'lon': (['dim_0', 'dim_1'], longitude),
'lat': (['dim_0', 'dim_1'], latitude),
'time': (['dim_0', 'dim_1'], start_time),
}
)
ds = ds.rename_dims({'dim_0': 'Cell_Along_Swath', 'dim_1': 'Cell_Across_Swath'})
"lon": (["dim_0", "dim_1"], longitude),
"lat": (["dim_0", "dim_1"], latitude),
"time": (["dim_0", "dim_1"], start_time),
}
)
ds = ds.rename_dims({"dim_0": "Cell_Along_Swath", "dim_1": "Cell_Across_Swath"})

return ds

Expand Down

0 comments on commit 3af095f

Please sign in to comment.