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

Increased the No. of default levels to 40 #2953

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
4 changes: 3 additions & 1 deletion ush/oceanice_nc2grib2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,9 @@ component=${1:?"Need a valid component; options: ice|ocean"}
grid=${2:-"0p25"} # Default to 0.25-degree grid
current_cycle=${3:-"2013100100"} # Default to 2013100100
avg_period=${4:-"0-6"} # Default to 6-hourly average
ocean_levels=${5:-"5:15:25:35:45:55:65:75:85:95:105:115:125"} # Default to 12-levels
ocean_levels=${5:-"5:15:25:35:45:55:65:75:85:95:105:115\
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, Thanks for clarification!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should keep the default to under 25 (under 267m) so that the tests will pass for mx500.
In ops, the levels are provided via the yaml, so we should make sure they are the correct ones.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, That's right.

:125:135:145:155:165:175:185:195:205:215:226:241:267:309\
:374:467:594:757:960:1204:1490:1817:2184:2587:3024:3489:3977:4481"} # Default to 40-levels

case "${grid}" in
"0p25")
Expand Down
Loading