Skip to content

Commit

Permalink
Set type of generating process for control forecast
Browse files Browse the repository at this point in the history
  • Loading branch information
dsarmany committed Jul 16, 2024
1 parent 9fc42cf commit c3312ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/multio/action/encode/GribEncoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ const std::map<const std::string, const long> type_of_statistical_processing{
const std::map<const std::string, const std::string> category_to_levtype{
{"ocean-grid-coordinate", "oceanSurface"}, {"ocean-2d", "oceanSurface"}, {"ocean-3d", "oceanModelLevel"}};

const std::map<const std::string, const long> type_of_generating_process{
{"an", 0}, {"4v", 0}, {"fc", 2}, {"pf", 4}, {"tpa", 12}};
const std::map<const std::string, const long> type_of_generating_process{{"an", 0}, {"4v", 0}, {"fc", 2},
{"cf", 4}, {"pf", 4}, {"tpa", 12}};


const std::unordered_set<std::string> types_with_time_reference_offset{"fc", "fcmean", "cf", "pf", "4v"};
Expand Down

0 comments on commit c3312ee

Please sign in to comment.