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

Simplify codes #928

Merged
merged 23 commits into from
Apr 28, 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
Prev Previous commit
Next Next commit
Update post_process_plot.py
  • Loading branch information
lee1043 committed Apr 28, 2023
commit 72aef746742f75b5d130e1d85564eedaa691c62c
3 changes: 1 addition & 2 deletions pcmdi_metrics/mjo/lib/post_process_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ def main():
imgdir = "/work/lee1043/imsi/result_test/mjo_metrics/plot_test"
# imgdir = '/p/user_pub/pmp/pmp_results/pmp_v1.1.2/graphics/mjo/'+mip+'/historical/'+version

if not os.path.exists(imgdir):
os.makedirs(imgdir)
os.makedirs(imgdir, exist_ok=True)

ncfile_list = glob.glob(os.path.join(datadir, "*.nc"))

Expand Down