Merge pull request #1551 from nasa/msl-units

[Example] Add units to MSL example.
This commit is contained in:
Pete Richards 2017-05-01 13:23:12 -07:00 committed by GitHub
commit 6680db0b31
2 changed files with 17 additions and 7 deletions

View File

@ -44,31 +44,31 @@ define(
{ {
"name": "Min. Air Temperature", "name": "Min. Air Temperature",
"identifier": "min_temp", "identifier": "min_temp",
"units": "degrees", "units": "Degrees (C)",
"type": "float" "type": "float"
}, },
{ {
"name": "Max. Air Temperature", "name": "Max. Air Temperature",
"identifier": "max_temp", "identifier": "max_temp",
"units": "degrees", "units": "Degrees (C)",
"type": "float" "type": "float"
}, },
{ {
"name": "Atmospheric Pressure", "name": "Atmospheric Pressure",
"identifier": "pressure", "identifier": "pressure",
"units": "pascals", "units": "Millibars",
"type": "float" "type": "float"
}, },
{ {
"name": "Min. Ground Temperature", "name": "Min. Ground Temperature",
"identifier": "min_gts_temp", "identifier": "min_gts_temp",
"units": "degrees", "units": "Degrees (C)",
"type": "float" "type": "float"
}, },
{ {
"name": "Max. Ground Temperature", "name": "Max. Ground Temperature",
"identifier": "max_gts_temp", "identifier": "max_gts_temp",
"units": "degrees", "units": "Degrees (C)",
"type": "float" "type": "float"
} }
] ]
@ -76,4 +76,4 @@ define(
] ]
}; };
} }
); );

View File

@ -48,6 +48,13 @@ define(
this.$http = $http; this.$http = $http;
this.$log = $log; this.$log = $log;
this.promise = undefined; this.promise = undefined;
this.dataTransforms = {
//Convert from pascals to millibars
'pressure': function pascalsToMillibars(pascals) {
return pascals / 100;
}
};
} }
/** /**
@ -65,6 +72,8 @@ define(
var self = this, var self = this,
id = request.key; id = request.key;
var dataTransforms = this.dataTransforms;
function processResponse(response){ function processResponse(response){
var data = []; var data = [];
/* /*
@ -75,13 +84,14 @@ define(
* Check that valid data exists * Check that valid data exists
*/ */
if (!isNaN(solData[id])) { if (!isNaN(solData[id])) {
var dataTransform = dataTransforms[id];
/* /*
* Append each data point to the array of values * Append each data point to the array of values
* for this data point property (min. temp, etc). * for this data point property (min. temp, etc).
*/ */
data.unshift({ data.unshift({
date: Date.parse(solData[TERRESTRIAL_DATE]), date: Date.parse(solData[TERRESTRIAL_DATE]),
value: solData[id] value: dataTransform ? dataTransform(solData[id]) : solData[id]
}); });
} }
}); });