Skip to content

Commit

Permalink
remove parallel from fapar_lai, add a comment about it
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahAlidoost committed Nov 22, 2024
1 parent eca46d1 commit c292919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zampy/datasets/fapar_lai.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def load(
variable_names: list[str],
) -> xr.Dataset:
files = list((ingest_dir / self.name).glob("*.nc"))
ds = xr.open_mfdataset(files, parallel=True)
ds = xr.open_mfdataset(files) # see issue 65
ds = ds.sel(time=slice(time_bounds.start, time_bounds.end))

grid = xarray_regrid.create_regridding_dataset(
Expand Down

0 comments on commit c292919

Please sign in to comment.