-
Notifications
You must be signed in to change notification settings - Fork 44
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
CESM2 Members Not Combining Along 'time' #330
Comments
Thanks for using xMIP @AbbySh. Do you have a code snippet that I can use to produce this error? That will make it much easier to look into this. |
This should reproduce it, let me know! |
Taking a look now. |
I was just able to run this without error on the LEAP-Pange hub ( from xmip.utils import google_cmip_col
from xmip.preprocessing import combined_preprocessing
from xmip.postprocessing import concat_experiments, merge_variables
col = google_cmip_col()
cat = col.search(
variable_id=['tos', 'sos', 'chl', 'mlotst', 'spco2', 'dpco2'],
table_id='Omon', # monthly ocean output only
experiment_id=['historical','ssp245'],
require_all_on=['source_id', 'member_id', 'grid_label'] # this ensures that results will have all variables and experiments available
)
ddict = cat.to_dataset_dict(
preprocess=combined_preprocessing,
xarray_open_kwargs=dict(use_cftime=True),
aggregate=False
)
ds = merge_variables(ddict)
ds = concat_experiments(ds)
|
from xmip.postprocessing: concat_experiments, merge_variables are not working on CESM2 members.
Example error/warning:
This causes historical not to combine with future (in our case, ssp245)
The text was updated successfully, but these errors were encountered: