Skip to content

Commit

Permalink
STU-23993: wet snow to snow, not sleet
Browse files Browse the repository at this point in the history
  • Loading branch information
mpartio committed Apr 16, 2024
1 parent 6cd9961 commit 466a5ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion himan-plugins/source/grib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,12 +317,12 @@ void DecodePrecipitationFormFromGrib2(vector<T>& arr)
val = 0.;
break;
// sleet
case 6:
case 7:
val = 2.;
break;
// snow
case 5:
case 6:
val = 3.;
break;
// freezing drizzle
Expand Down

0 comments on commit 466a5ad

Please sign in to comment.