Skip to content

Commit

Permalink
Remove units and standard name on phase variable
Browse files Browse the repository at this point in the history
  • Loading branch information
tnipen committed Feb 11, 2015
1 parent e89a1c9 commit 7647a7e
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 @@ -170,7 +170,7 @@ std::string Variable::getUnits(Type iType) {
case RH:
return "%";
case Phase:
return "phase";
return "";
case P:
return "pa";
default:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 7647a7e

Please sign in to comment.