From 7647a7e3340dbe0d3820a6e75278d8b93412a504 Mon Sep 17 00:00:00 2001 From: Thomas Nipen Date: Wed, 11 Feb 2015 10:18:51 +0100 Subject: [PATCH] Remove units and standard name on phase variable --- src/Variable.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Variable.cpp b/src/Variable.cpp index c5cdc5d2..8bebd7a4 100644 --- a/src/Variable.cpp +++ b/src/Variable.cpp @@ -170,7 +170,7 @@ std::string Variable::getUnits(Type iType) { case RH: return "%"; case Phase: - return "phase"; + return ""; case P: return "pa"; default: @@ -200,7 +200,7 @@ std::string Variable::getStandardName(Type iType) { case RH: return "relative_humidity"; case Phase: - return "phase"; + return ""; case P: return "surface_air_pressure"; default: