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

open xml from pmp workflow and allow wild card usage #933

Merged
merged 3 commits into from
Jun 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
open xml from pmp workflow and allow wild card usage
  • Loading branch information
lee1043 committed May 24, 2023
commit 2933667a18eb1b25aa8a3301b26c6bd52eb91849
2 changes: 1 addition & 1 deletion pcmdi_metrics/io/xcdat_openxml.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def xcdat_open(infile, data_var=None, decode_times=True):
if infile.split('.')[-1].lower() == 'xml':
ds = xcdat_openxml(infile, data_var=data_var, decode_times=decode_times)
else:
ds = xcdat.open_dataset(infile, data_var=data_var, decode_times=decode_times)
ds = xcdat.open_mfdataset(infile, data_var=data_var, decode_times=decode_times)

return ds

Expand Down
Loading