Skip to content

Commit

Permalink
pass kwarg to xaray
Browse files Browse the repository at this point in the history
  • Loading branch information
bbakernoaa committed Nov 19, 2024
1 parent 129b644 commit 561b616
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion monetio/sat/nesdis_viirs_ndvi_aws_gridded.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ def open_mfdataset(
dates: Union[pd.DatetimeIndex, datetime, str],
data_type: str = "vhi",
sensor: str = "viirs",
error_missing: bool = False
error_missing: bool = False,
**kwargs
) -> xr.Dataset:
"""
Opens and combines multiple NetCDF files into a single dataset.
Expand Down Expand Up @@ -273,6 +274,7 @@ def open_mfdataset(
concat_dim="time",
combine="nested",
decode_cf=False,
**kwargs
)

return process_timeofday(dset)

0 comments on commit 561b616

Please sign in to comment.