From bc226c9303c23c56f960a8e27313b09ed8dd3f19 Mon Sep 17 00:00:00 2001 From: Thomas Nipen Date: Mon, 13 Jun 2016 14:30:39 +0200 Subject: [PATCH] Fixes incorrect standard_name for TMin and TMax --- src/Variable.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Variable.cpp b/src/Variable.cpp index 5d9240c1..de28fd88 100644 --- a/src/Variable.cpp +++ b/src/Variable.cpp @@ -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: