-
Notifications
You must be signed in to change notification settings - Fork 71
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
Add Grib2 template 4.60 #1164
Add Grib2 template 4.60 #1164
Conversation
The correct name for this is: |
1a1e914
to
f60e40f
Compare
…e forecasting data of ECMWF, and overload EnsCoorValue constructor with ensNumber parameter to read all members with save pertubation number
f9784e1
to
9813f88
Compare
@@ -432,7 +432,7 @@ else if (isRegular) | |||
for (int i = 0; i < pc.getValuesCount(); i++) { | |||
double val1 = pc.getValues(i); | |||
double val2 = pc.getBound(i); | |||
ecoords.add(new EnsCoordValue((int) val1, (int) val2)); | |||
ecoords.add(new EnsCoordValue((int) val1, (int) val2, i + 1)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is sort of a dummy coord, isn't it? Can we just leave out the i+1? Other than that I think this all looks good.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it is sort of a dummy coord. i + 1 was used because no better choice on my side.
you will also need to apply code style to get the checks to pass: |
Moved to #1192 |
Description of Changes
Add Grib2 template 4.60 Grib2Pds60 inner class to support s2s ensemble forecasting data of ECMWF.
PR Checklist
until ready for review