Merge commit '635df258d480830c85d3f01247fc0ff931353946' into feature/websocketnavigation

* commit '635df258d480830c85d3f01247fc0ff931353946':
  Add option to press Shift while clicking the time shifting to immediately jump, instead of interpolate
  Remove Hyperion's rotation as there is no SPICE information for it available
  Update ghoul and adapt to ghoul change by moving std::to_string to ghoul::to_string
  Add Hyperion and Mimas to Saturn's major moons (#closes 730)
  Change originChange origin of the radiosphere to Earth Do not show radiosphere before 1936
  Update ghoul repository
This commit is contained in:
Matthew Territo
2018-10-09 16:51:23 -06:00
10 changed files with 76 additions and 34 deletions

View File

@@ -389,13 +389,13 @@ template <typename T>
std::string NumericalProperty<T>::generateAdditionalJsonDescription() const {
std::string result = "{ ";
result +=
"\"" + MinimumValueKey + "\": " + luaToJson(std::to_string(_minimumValue)) + ",";
"\"" + MinimumValueKey + "\": " + luaToJson(ghoul::to_string(_minimumValue)) + ",";
result +=
"\"" + MaximumValueKey + "\": " + luaToJson(std::to_string(_maximumValue)) + ",";
"\"" + MaximumValueKey + "\": " + luaToJson(ghoul::to_string(_maximumValue)) + ",";
result +=
"\"" + SteppingValueKey + "\": " + luaToJson(std::to_string(_stepping)) + ",";
"\"" + SteppingValueKey + "\": " + luaToJson(ghoul::to_string(_stepping)) + ",";
result +=
"\"" + ExponentValueKey + "\": " + luaToJson(std::to_string(_exponent));
"\"" + ExponentValueKey + "\": " + luaToJson(ghoul::to_string(_exponent));
result += " }";
return result;
}