Skip to content

Commit

Permalink
Fixes incorrect standard_name for TMin and TMax
Browse files Browse the repository at this point in the history
  • Loading branch information
tnipen committed Jun 13, 2016
1 parent f02de98 commit bc226c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Variable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@ std::string Variable::getStandardName(Type iType) {
case T:
return "air_temperature";
case TMin:
return "air_temperature_2m";
return "air_temperature";
case TMax:
return "air_temperature_2m";
return "air_temperature";
case Precip:
return "precipitation_amount";
case PrecipAcc:
Expand Down

0 comments on commit bc226c9

Please sign in to comment.