Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sea ice reference dataset download from Demo 0 #1044

Merged
merged 11 commits into from
Feb 2, 2024
Next Next commit
remove copy
  • Loading branch information
Ana Ordonez committed Feb 1, 2024
commit 15fb944c4c109db656fe3280f99b71f8a7535ffc
16 changes: 8 additions & 8 deletions pcmdi_metrics/sea_ice/sea_ice_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,14 @@ def sea_ice_regions(ds, var, xvar, yvar):
)

regions_dict = {
"arctic": data_arctic.copy(deep=True),
"ca": data_ca.copy(deep=True),
"np": data_np.copy(deep=True),
"na": data_na.copy(deep=True),
"antarctic": data_antarctic.copy(deep=True),
"sa": data_sa.copy(deep=True),
"sp": data_sp.copy(deep=True),
"io": data_io.copy(deep=True),
"arctic": data_arctic,
"ca": data_ca,
"np": data_np,
"na": data_na,
"antarctic": data_antarctic,
"sa": data_sa,
"sp": data_sp,
"io": data_io,
}
return regions_dict

Expand Down