Skip to content

Commit bc226c9

Browse files
committed
Fixes incorrect standard_name for TMin and TMax
1 parent f02de98 commit bc226c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Variable.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,9 @@ std::string Variable::getStandardName(Type iType) {
339339
case T:
340340
return "air_temperature";
341341
case TMin:
342-
return "air_temperature_2m";
342+
return "air_temperature";
343343
case TMax:
344-
return "air_temperature_2m";
344+
return "air_temperature";
345345
case Precip:
346346
return "precipitation_amount";
347347
case PrecipAcc:

0 commit comments

Comments
 (0)