Cleanup of mostly asset files

- Fixes for all files
 - constexpr cleanup
 - Cosmetic changes
 - Remove punctuation from the end of messages
This commit is contained in:
Alexander Bock
2022-07-28 17:21:59 +02:00
parent 0494343a58
commit 163ac4dcef
928 changed files with 2834 additions and 2858 deletions

View File

@@ -14,7 +14,7 @@
![Image](https://github.com/OpenSpace/openspace.github.io/raw/master/assets/images/collection.jpg)
# Background
OpenSpace started as a collaboration between Sweden's [Linköping University](https://scivis.github.io) (LiU) and the [American Museum of Natural History](https://www.amnh.org) (AMNH). Development of the software began several years ago through a close collaboration with NASA Goddard's [Community Coordinated Modeling Center](https://ccmc.gsfc.nasa.gov) (CCMC) to model space weather forecasting and continued with visualizations of NASA's New Horizons mission to Pluto and ESA's Rosetta mission to 67P/ChuryumovGerasimenko. This promising set of preliminary work provided a foundation for continued funding from NASA, the Swedish eScience Research Centre, and the Knut and Alice Wallenberg foundation, which has extended the collaboration to include the University of Utah's [Scientific Computing and Imaging](https://www.sci.utah.edu) (SCI) Institute, [New York University](https://www.nyu.edu)'s Tandon School of Engineering, multiple informal science institutions across the world, and multiple, international vendors.
OpenSpace started as a collaboration between Sweden's [Linköping University](https://scivis.github.io) (LiU) and the [American Museum of Natural History](https://www.amnh.org) (AMNH). Development of the software began several years ago through a close collaboration with NASA Goddard's [Community Coordinated Modeling Center](https://ccmc.gsfc.nasa.gov) (CCMC) to model space weather forecasting and continued with visualizations of NASA's New Horizons mission to Pluto and ESA's Rosetta mission to 67P/Churyumov-Gerasimenko. This promising set of preliminary work provided a foundation for continued funding from NASA, the Swedish eScience Research Centre, and the Knut and Alice Wallenberg foundation, which has extended the collaboration to include the University of Utah's [Scientific Computing and Imaging](https://www.sci.utah.edu) (SCI) Institute, [New York University](https://www.nyu.edu)'s Tandon School of Engineering, multiple informal science institutions across the world, and multiple, international vendors.
![Image](https://github.com/OpenSpace/openspace.github.io/raw/master/assets/images/presentation.jpg)

View File

@@ -373,7 +373,7 @@ void ActionDialog::createKeyboardWidgets(QGridLayout* layout) {
"it is defined in an asset included in this profile, you can enter the "
"identifier of that action manually here to associate a key with it. If the "
"identifer does not exist, an error will be logged when trying to bind the key "
"at startup."
"at startup"
);
_keybindingWidgets.actionText->setEnabled(false);
layout->addWidget(_keybindingWidgets.actionText, 13, 2);
@@ -557,7 +557,7 @@ void ActionDialog::actionSaved() {
this,
"Duplicate identifier",
"The chosen identifier was already used in another action. Identifiers "
"have to be unique. Please choose a different identfier."
"have to be unique. Please choose a different identfier"
);
return;
}

View File

@@ -158,7 +158,7 @@ AssetsDialog::AssetsDialog(QWidget* parent, openspace::Profile* profile,
_assetTree->setToolTip(
"Expand arrow entries to browse assets in this OpenSpace installation. "
"Enable checkbox to include an asset. Those assets highlighted in red are "
"present in the profile but do not exist in this OpenSpace installation."
"present in the profile but do not exist in this OpenSpace installation"
);
_assetTree->setAlternatingRowColors(true);
_assetTree->setModel(&_assetTreeModel);

View File

@@ -986,7 +986,7 @@ bool HorizonsDialog::handleResult(openspace::HorizonsResultCode& result) {
appendLog(msg, HorizonsDialog::LogLevel::Error);
msg = fmt::format(
"Try to use '@{}' as observer to search for possible matches.",
"Try to use '@{}' as observer to search for possible matches",
_observerName
);
appendLog(msg, HorizonsDialog::LogLevel::Info);
@@ -998,7 +998,7 @@ bool HorizonsDialog::handleResult(openspace::HorizonsResultCode& result) {
case HorizonsResultCode::ErrorObserverTargetSame: {
std::string msg = fmt::format(
"The observer '{}' and target '{}' are the same. Please use another "
"observer for the current target.", _observerName, _targetName
"observer for the current target", _observerName, _targetName
);
appendLog(msg, HorizonsDialog::LogLevel::Error);
styleLabel(_targetLabel, IsDirty::Yes);
@@ -1011,7 +1011,7 @@ bool HorizonsDialog::handleResult(openspace::HorizonsResultCode& result) {
std::string msg = fmt::format(
"There is not enough data to compute the state of target '{}' in "
"relation to the observer '{}' for the time range '{}' to '{}'. Try to "
"use another observer for the current target or another time range.",
"use another observer for the current target or another time range",
_targetName, _observerName, _startTime, _endTime
);
appendLog(msg, HorizonsDialog::LogLevel::Error);
@@ -1028,7 +1028,7 @@ bool HorizonsDialog::handleResult(openspace::HorizonsResultCode& result) {
msg = fmt::format(
"Did not find what you were looking for? Use '@{}' as observer to search "
"for alternatives.", _observerName
"for alternatives", _observerName
);
appendLog(msg, HorizonsDialog::LogLevel::Info);
styleLabel(_centerLabel, IsDirty::Yes);
@@ -1104,8 +1104,7 @@ bool HorizonsDialog::handleResult(openspace::HorizonsResultCode& result) {
appendLog(msg, HorizonsDialog::LogLevel::Error);
msg = fmt::format(
"Try to use '{}*' as target to search for possible matches.",
_targetName
"Try to use '{}*' as target to search for possible matches", _targetName
);
appendLog(msg, HorizonsDialog::LogLevel::Info);
styleLabel(_targetLabel, IsDirty::Yes);

View File

@@ -41,7 +41,7 @@ OrientationDialog::OrientationDialog(sgct::quat& orientation, QWidget* parent)
{
QString pitchTip = "Pitch or elevation: negative numbers tilt the camera "
"downwards; positive numbers tilt upwards.\nThe allowed range is [-90, 90]. "
"Internally, this corresponds to the x value in the quaternion.";
"Internally, this corresponds to the x value in the quaternion";
QLabel* labelPitch = new QLabel("Pitch");
labelPitch->setToolTip(pitchTip);
@@ -58,7 +58,7 @@ OrientationDialog::OrientationDialog(sgct::quat& orientation, QWidget* parent)
{
QString rollTip = "Roll or bank: negative numbers rotate the camera counter-"
"clockwise; positive numbers clockwise.\nThe allowed range is [-180, 180]. "
"Internally, this corresponds to the z value in the quaternion.";
"Internally, this corresponds to the z value in the quaternion";
QLabel* labelRoll = new QLabel("Roll");
labelRoll->setToolTip(rollTip);
@@ -75,7 +75,7 @@ OrientationDialog::OrientationDialog(sgct::quat& orientation, QWidget* parent)
{
QString yawTip = "Yaw, heading, or azimuth: negative numbers pan the camera "
"to the left; positive numbers pan to the\nright. The allowed range is "
"[-360, 360]. Internally, this corresponds to the y value in the quaternion.";
"[-360, 360]. Internally, this corresponds to the y value in the quaternion";
QLabel* labelYaw = new QLabel;
labelYaw ->setText("Yaw");

View File

@@ -147,19 +147,19 @@ void SgctEdit::createWidgets(const std::vector<QRect>& monitorSizes) {
layout->addWidget(bottomBorder);
_cancelButton = new QPushButton("Cancel");
_cancelButton->setToolTip("Cancel changes.");
_cancelButton->setToolTip("Cancel changes");
_cancelButton->setFocusPolicy(Qt::NoFocus);
connect(_cancelButton, &QPushButton::released, this, &SgctEdit::reject);
layoutButtonBox->addWidget(_cancelButton);
_saveButton = new QPushButton("Save As");
_saveButton->setToolTip("Save configuration changes.");
_saveButton->setToolTip("Save configuration changes");
_saveButton->setFocusPolicy(Qt::NoFocus);
connect(_saveButton, &QPushButton::released, this, &SgctEdit::save);
layoutButtonBox->addWidget(_saveButton);
_applyButton = new QPushButton("Apply Without Saving");
_applyButton->setToolTip("Apply configuration changes without saving to file.");
_applyButton->setToolTip("Apply configuration changes without saving to file");
_applyButton->setFocusPolicy(Qt::NoFocus);
connect(_applyButton, &QPushButton::released, this, &SgctEdit::apply);
layoutButtonBox->addWidget(_applyButton);

View File

@@ -118,7 +118,7 @@ void WindowControl::createWidgets(const QColor& windowColor) {
)));
layout->addWidget(_windowNumber, 0, 0, 1, 8, Qt::AlignCenter);
{
QString tip = "The name for the window (displayed in title bar).";
QString tip = "The name for the window (displayed in title bar)";
QLabel* labelName = new QLabel("Name");
labelName->setToolTip(tip);
@@ -128,7 +128,7 @@ void WindowControl::createWidgets(const QColor& windowColor) {
_windowName->setToolTip(tip);
layout->addWidget(_windowName, 1, 1, 1, 7);
}
QString tip = "The monitor where this window is located.";
QString tip = "The monitor where this window is located";
_monitor = new QComboBox;
_monitor->addItems(monitorNames(_monitorResolutions));
@@ -207,7 +207,7 @@ void WindowControl::createWidgets(const QColor& windowColor) {
QLabel* offset = new QLabel("Offset");
offset->setToolTip(
"The x,y location of the window's upper left corner from monitor's "
"upper-left corner origin (pixels)."
"upper-left corner origin (pixels)"
);
offset->setFixedWidth(55);
layout->addWidget(offset, 4, 0);
@@ -420,7 +420,7 @@ QWidget* WindowControl::createFisheyeWidget() {
"This projection provides a rendering in a format that is suitable for "
"planetariums and other immersive environments. A field-of-view of 180 degrees "
"is presented as a circular image in the center of the screen. For this "
"projection a square window is suggested, but not necessary."
"projection a square window is suggested, but not necessary"
);
info->setObjectName("info");
info->setWordWrap(true);
@@ -465,7 +465,7 @@ QWidget* WindowControl::createSphericalMirrorWidget() {
"This projection is rendering a image suite for use with a spherical mirror "
"projection as described by Paul Bourke (http://paulbourke.net/dome/mirrordome/) "
"and which is a low-cost yet effective way to provide content for a sphericalal "
"display surface using a regular projector."
"display surface using a regular projector"
);
info->setObjectName("info");
info->setWordWrap(true);
@@ -503,7 +503,7 @@ QWidget* WindowControl::createCylindricalWidget() {
"This projection type provides a cylindrical rendering that covers 360 degrees "
"around the camera, which can be useful in immersive environments that are not "
"spherical, but where, for example, all walls of a room are covered with "
"projectors."
"projectors"
);
info->setObjectName("info");
info->setWordWrap(true);
@@ -556,7 +556,7 @@ QWidget* WindowControl::createEquirectangularWidget() {
"This projection provides the rendering as an image in equirectangular "
"projection, which is a common display type for 360 surround video. When "
"uploading a video in equirectangular projection to YouTube, for example, it "
"will use it as a 360 video."
"will use it as a 360 video"
);
info->setObjectName("info");
info->setWordWrap(true);

View File

@@ -1083,7 +1083,7 @@ int main(int argc, char* argv[]) {
commandlineArguments.configurationName, "--file", "-f",
"Provides the path to the OpenSpace configuration file. Only the '${TEMPORARY}' "
"path token is available and any other path has to be specified relative to the "
"current working directory."
"current working directory"
));
parser.addCommand(std::make_unique<ghoul::cmdparser::SingleCommand<std::string>>(
@@ -1094,7 +1094,7 @@ int main(int argc, char* argv[]) {
"configuration file without editing the file on disk, for example in a "
"planetarium environment. Please not that the Lua script must not contain any - "
"or they will be interpreted as a new command. Similar, in Bash, ${...} will be "
"evaluated before it is passed to OpenSpace."
"evaluated before it is passed to OpenSpace"
));
// setCommandLine returns a reference to the vector that will be filled later

View File

@@ -68,7 +68,7 @@ int main(int, char**) {
progressBar.print(static_cast<int>(progress * 100.f));
});
}
std::cout << "Done synchronizing." << std::endl;
std::cout << "Done synchronizing" << std::endl;
return 0;
};

View File

@@ -87,7 +87,7 @@ void performTasks(const std::string& path) {
};
task.perform(onProgress);
}
std::cout << "Done performing tasks." << std::endl;
std::cout << "Done performing tasks" << std::endl;
}
int main(int argc, char** argv) {

View File

@@ -4,7 +4,8 @@ local undo_event_fade = {
Command = [[
openspace.setPropertyValue("Scene.*.Renderable.Fade", 1.0, 0.5);
]],
Documentation = [[Sets the 'Fade' value of all renderables to 1. This internval values is managed by events.]],
Documentation = [[Sets the 'Fade' value of all renderables to 1. This internval values
is managed by events]],
GuiPath = "/System/Rendering",
IsLocal = true
}
@@ -22,7 +23,7 @@ end)
asset.meta = {
Name = "Actions - Undo All Event Fading",
Version = "1.0",
Description = [[ Asset providing debug ability to undo all event fading.]],
Description = "Asset providing debug ability to undo all event fading",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -40,7 +40,7 @@ local toggle_trail = {
]],
Documentation = [[Toggles the visibility of the associated trail of a scene graph node.
This action takes optional arguments to 1) determine which trail to hide (as the
'Node') and 2) the transition direction (as 'After' and 'Before').]],
'Node') and 2) the transition direction (as 'After' and 'Before')]],
GuiPath = "/Trails",
IsLocal = true
}
@@ -112,7 +112,7 @@ end)
asset.meta = {
Name = "Actions - Toggle current Trails",
Version = "1.0",
Description = [[ Asset providing actions to toggle trails]],
Description = "Asset providing actions to toggle trails",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -107,7 +107,7 @@ end)
asset.meta = {
Name = "Customization - GlobeBrowsing",
Version = "1.0",
Description = [[ This asset adds planetary images that can be downloaded separately
Description = [[This asset adds planetary images that can be downloaded separately
and placed in the OpenSpaceData folder]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",

View File

@@ -11,7 +11,7 @@ asset.export("webguiDevelopmentMode", false)
asset.meta = {
Name = "Customization - User Interface",
Version = "1.0",
Description = [[ This asset is used by developers working on the GUI.]],
Description = "This asset is used by developers working on the GUI",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -18,7 +18,7 @@ asset.export(item)
asset.meta = {
Name = "Dashboard - Date",
Version = "1.0",
Description = [[ This asset provides a Date dashboard item.]],
Description = "This asset provides a Date dashboard item",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -9,7 +9,7 @@ asset.require("./globelocation")
asset.meta = {
Name = "Dashboard - Default Items",
Version = "1.0",
Description = [[ This asset provides the default items for the dashboard.]],
Description = "This asset provides the default items for the dashboard",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -18,7 +18,7 @@ asset.export(item)
asset.meta = {
Name = "Dashboard - Distance",
Version = "1.0",
Description = [[ This asset provides a Distance dashboard item.]],
Description = "This asset provides a Distance dashboard item",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -18,7 +18,7 @@ asset.export(item)
asset.meta = {
Name = "Dashboard - Framerate",
Version = "1.0",
Description = [[ This asset provides a Framerate dashboard item.]],
Description = "This asset provides a Framerate dashboard item",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -18,7 +18,7 @@ asset.export(item)
asset.meta = {
Name = "Dashboard - GlobeLocation",
Version = "1.0",
Description = [[ This asset provides a GlobeLocation dashboard item.]],
Description = "This asset provides a GlobeLocation dashboard item",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -18,7 +18,7 @@ asset.export(item)
asset.meta = {
Name = "Dashboard - ParallelConnection",
Version = "1.0",
Description = [[ This asset provides a ParallelConnection dashboard item.]],
Description = "This asset provides a ParallelConnection dashboard item",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -18,8 +18,8 @@ asset.export(item)
asset.meta = {
Name = "Dashboard - Simulation Increment",
Version = "1.0",
Description = [[ This asset provides a dashboard item that shows the simulation
increment, meaning how fast the in-game time progresses relative to the wall-clock.]],
Description = [[This asset provides a dashboard item that shows the simulation
increment, meaning how fast the in-game time progresses relative to the wall-clock]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -19,7 +19,7 @@ asset.export(item)
asset.meta = {
Name = "Dashboard - Velocity",
Version = "1.0",
Description = [[ This asset provides a dashboard item that shows the camera's velocity]],
Description = "This asset provides a dashboard item that shows the camera's velocity",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -21,7 +21,7 @@ local toggle_sun = {
]],
Documentation = [[Toggles the visibility of the Sun glare and the Sun globe when the
camera is approaching either so that from far away the Sun Glare is rendered and when
close up, the globe is rendered instead.]],
close up, the globe is rendered instead]],
GuiPath = "/Solar System/Sun",
IsLocal = false
}
@@ -58,7 +58,7 @@ end)
asset.meta = {
Name = "Actions - Toggle current Trails",
Version = "1.0",
Description = [[ Asset providing actions to toggle trails]],
Description = "Asset providing actions to toggle trails",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -24,8 +24,8 @@ local states = {
},
{
Identifier = "Earth",
Enter = "openspace.setPropertyValueSingle("Scene.EarthLabel.Renderable.Enabled", true)",
Exit = "openspace.setPropertyValueSingle("Scene.EarthLabel.Renderable.Enabled", false)"
Enter = 'openspace.setPropertyValueSingle("Scene.EarthLabel.Renderable.Enabled", true)',
Exit = 'openspace.setPropertyValueSingle("Scene.EarthLabel.Renderable.Enabled", false)'
},
{
Identifier = "Moon"

View File

@@ -23,7 +23,7 @@ local layer_prototype = {
},
Interpolation = true,
Colormap = path .. "rainbow.png",
Description = [[ Temporal coverage: 01 Jan 1981 - 31 Dec 2020.]]
Description = "Temporal coverage: 01 Jan 1981 - 31 Dec 2020"
}
local layer_folder = {
@@ -37,7 +37,7 @@ local layer_folder = {
},
Interpolation = true,
Colormap = path .. "rainbow.png",
Description = [[ Temporal coverage: 01 Jan 1981 - 31 Dec 2020.]]
Description = "Temporal coverage: 01 Jan 1981 - 31 Dec 2020"
}
asset.onInitialize(function()
@@ -55,7 +55,7 @@ asset.export("layer", layer_prototype)
asset.meta = {
Name = "Climate Earth Layers",
Version = "1.0",
Description = [[ ERA5 data ]],
Description = "ERA5 data",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -9,7 +9,7 @@ end)
asset.meta = {
Name = "Exoplanet Default Settings",
Version = "1.0",
Description = [[ Some default settings related to the exoplanet module ]],
Description = "Some default settings related to the exoplanet module",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -31,7 +31,7 @@ asset.export("DataPath", DataPath)
asset.meta = {
Name = "Exoplanet Data",
Version = "3.0",
Description = [[ The data that is used for the exoplanet systems. The data has been
Description = [[The data that is used for the exoplanet systems. The data has been
derived from the 'Planetary Systems Composite Data' dataset from the NASA Exoplanet
Archive]],
Author = "OpenSpace Team",

View File

@@ -58,7 +58,7 @@ asset.export("TexturesPath", TexturesPath)
asset.meta = {
Name = "Exoplanet Textures",
Version = "2.0",
Description = [[ Adds all textures that are required for the exoplanet system
Description = [[Adds all textures that are required for the exoplanet system
visualizations]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",

View File

@@ -7,7 +7,7 @@ end)
asset.meta = {
Name = "SkyBrowser Module Default Settings",
Version = "1.0",
Description = [[ Some default settings related to the SkyBrowser module ]],
Description = "Some default settings related to the SkyBrowser module",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -23,7 +23,7 @@ local circle = {
Name = "Hover Circle",
Description = [[A circular marker that shows the position on the night sky
of the object hovered in the sky browser UI. The circle will hide/show up
dynamically, depending on the interaction with the items in the UI. ]],
dynamically, depending on the interaction with the items in the UI]],
Path = "/SkyBrowser"
}
}
@@ -43,7 +43,7 @@ asset.meta = {
Name = "SkyBrowser Hover Circle",
Version = "1.0",
Description = [[Includes a circular marker that shows the position on the night sky
of the object hovered in the sky browser UI. ]],
of the object hovered in the sky browser UI]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -65,7 +65,7 @@ asset.export(object)
asset.meta = {
Name = "2dF Galaxies",
Version = "2.1",
Description = [[Digital Universe asset for the The Two-degree Field (2dF) Survey.]],
Description = "Digital Universe asset for the The Two-degree Field (2dF) Survey",
Author = "Brian Abbott (AMNH), Eric Gawiser (Rutgers U)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -34,7 +34,7 @@ local object = {
GUI = {
Name = "2MASS Galaxies",
Path = "/Universe/Galaxies",
Description = [[ The Two Micron All-Sky Survey (2MASS) is an infrared survey of the
Description = [[The Two Micron All-Sky Survey (2MASS) is an infrared survey of the
sky published in 2003. Because it is looking in the infrared, and this is a composite
of the 2MASS point-source catalog, most of the light from this survey is starlight. In
visible light, clouds of gas and dust obscure our view. However, in infrared, the
@@ -60,8 +60,7 @@ asset.export(object)
asset.meta = {
Name = "2MASS Galaxies",
Version = "1.1",
Description = [[ Digital Universe asset for the Two Micron All-Sky Survey (2MASS)
survey]],
Description = "Digital Universe asset for the Two Micron All-Sky Survey (2MASS) survey",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -62,7 +62,7 @@ asset.export(object)
asset.meta = {
Name = "6dF Galaxies",
Version = "2.1",
Description = [[Digital Universe asset for The Six-degree Field (6dF) Galaxy Survey]],
Description = "Digital Universe asset for The Six-degree Field (6dF) Galaxy Survey",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -42,7 +42,7 @@ local object = {
Path = "/Universe/Galaxies",
Description = [[Census 2,246 galaxies. DU Version 1.4. <br> The Abell catalog
includes all the nearby, and not so nearby, galaxy clusters. The northern
hemisphere survey, published in 1958, was compiled by George Abell (19271983)
hemisphere survey, published in 1958, was compiled by George Abell (1927-1983)
from the Palomar Sky Survey plates. A subsequent southern hemisphere catalog
was published posthumously in 1989. Further analysis by Brent Tully determined
their distance and three-dimensional distribution. Each point in this data set
@@ -71,7 +71,7 @@ asset.export(object)
asset.meta = {
Name = "Abell Galaxy Clusters",
Version = "2.1",
Description = [[Digital Universe asset for The Abell catalog]],
Description = "Digital Universe asset for The Abell catalog",
Author = "Stuart Levy (NCSA/UIUC), Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -48,7 +48,7 @@ asset.export(object)
asset.meta = {
Name = "Stars Labels - Alternate",
Version = "1.1",
Description = [[Digital Universe asset for alternate start labels]],
Description = "Digital Universe asset for alternate start labels",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -150,9 +150,9 @@ asset.export(multiverse_planck_4)
asset.meta = {
Name = "Multiverse Background Radiation",
Version = "2.1",
Description = [[ Non-physical representation of the location of hypothetical
cosmic microwave background radiation images how they would be observed from other
locations in the universe. <br> This is not a measured dataset!]],
Description = [[Non-physical representation of the location of hypothetical cosmic
microwave background radiation images how they would be observed from other locations
in the universe. <br> This is not a measured dataset]],
Author = "Brian Abbott (AMNH), OpenSpace Team",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -51,7 +51,7 @@ asset.export(object)
asset.meta = {
Name = "Galaxy Clusters Labels",
Version = "1.1",
Description = [[Digital Universe asset for Galaxy Clusters]],
Description = "Digital Universe asset for Galaxy Clusters",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -34,7 +34,7 @@ local object = {
Name = "Constellation Bounds",
Path = "/Milky Way/Constellations",
Description = [[A Spherical mesh dividing the sky into regions that fit the
constellations.]],
constellations]],
}
}
@@ -54,7 +54,7 @@ asset.meta = {
Name = "Constellation Bounds",
Version = "1.1",
Description = [[DU asset providing a Spherical mesh dividing the sky into regions that
fit the constellations.]],
fit the constellations]],
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -74,7 +74,7 @@ asset.export(constellations)
asset.meta = {
Name = "Constellations",
Version = "1.1",
Description = [[Digital Universe asset for constellation lines]],
Description = "Digital Universe asset for constellation lines",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -47,7 +47,7 @@ local deepSkyPoints = {
GUI = {
Name = "Deep Sky Objects Points",
Path = "/Universe/Galaxies",
Description = [[Point cloud and labels for Deep Sky Objects]]
Description = "Point cloud and labels for Deep Sky Objects"
}
}
@@ -108,7 +108,7 @@ asset.export(deepSkyImages)
asset.meta = {
Name = "Deep Sky Objects Images",
Version = "1.1",
Description = [[Digital Universe asset for Deep Sky Objects and their Images]],
Description = "Digital Universe asset for Deep Sky Objects and their Images",
Author = "Nate Greenstein, Matt Everhart, Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -40,7 +40,7 @@ asset.meta = {
Name = "Digital Universe",
Version = "1.0",
Description = [[This asset is a meta asset, containing all the assets from the AMNH
Digital Universe.]],
Digital Universe]],
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -73,7 +73,7 @@ asset.export(object)
asset.meta = {
Name = "Brown Dwarfs",
Version = "2.1",
Description = [[Digital Universe asset for Brown Dwarfs]],
Description = "Digital Universe asset for Brown Dwarfs",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -61,7 +61,7 @@ asset.export(object)
asset.meta = {
Name = "Exoplanets",
Version = "1.1",
Description = [[Digital Universe asset for Exoplanets]],
Description = "Digital Universe asset for Exoplanets",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -36,7 +36,7 @@ local object = {
Path = "/Milky Way",
Description = [[Census: 157 globular clusters. DU Version 2.6. <br>Globular star
clusters are gravitationally bound groups of 100,000 to 1 million stars. They
are compact, spherical balls of stars with very high stellar densities in
are compact, spherical "balls" of stars with very high stellar densities in
their centers (stars near their center are within a light year of one
another). These clusters are typically 30 to 100 light years in diameter. If
Earth were located inside one of these clusters, our sky would be lit by an
@@ -67,7 +67,7 @@ asset.meta = {
Version = "2.1",
Description = [[Census: 157 globular clusters. DU Version 2.6. Globular star clusters
are gravitationally bound groups of 100,000 to 1 million stars. They are compact,
spherical balls of stars with very high stellar densities in their centers (stars
spherical "balls" of stars with very high stellar densities in their centers (stars
near their center are within a light year of one another). These clusters are
typically 30 to 100 light years in diameter. If Earth were located inside one of these
clusters, our sky would be lit by an abundance of stars brighter than the Sun. The

View File

@@ -52,7 +52,7 @@ asset.meta = {
Name = "Galaxy Group Labels",
Version = "1.1",
Author = "Brian Abbott (AMNH)",
Description = [[Digital Universe asset for Galaxy Groups]],
Description = "Digital Universe asset for Galaxy Groups",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"
}

View File

@@ -20,7 +20,7 @@ local object = {
Color = { 0.0, 0.5, 1.0 },
Opacity = 0.70,
File = speck .. "h2.speck",
Texture = textures .."point4.png",
Texture = textures .. "point4.png",
PolygonSides = 6,
LabelFile = speck .. "h2.label",
Unit = "pc",
@@ -63,7 +63,7 @@ asset.export(object)
asset.meta = {
Name = "HII Regions",
Version = "1.1",
Description = [[Digital Universe asset for HII Regions]],
Description = "Digital Universe asset for HII Regions",
Author = "Carter Emmart, Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -59,7 +59,7 @@ asset.export(object)
asset.meta = {
Name = "Kepler Planetary Candidates",
Version = "2.1",
Description = [[Digital Universe asset for Kepler Planetary Candidates]],
Description = "Digital Universe asset for Kepler Planetary Candidates",
Author = "Brian Abbott, Emily Rice, and Jason No (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -65,7 +65,7 @@ asset.export(object)
asset.meta = {
Name = "Local Group",
Version = "2.1",
Description = [[Digital Universe asset for the Local Goup]],
Description = "Digital Universe asset for the Local Goup",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -32,7 +32,7 @@ local plane = {
GUI = {
Name = "Milky Way Arms Labels",
Path = "/Universe/Galaxies",
Description = [[ Census: 1 image. DU Version: 1.2. This image contains labels for
Description = [[Census: 1 image. DU Version: 1.2. This image contains labels for
the Milky Way's spiral arms. We label them in this manner ("hard coding" the
labels into an image rather than having native labels) so that they can retain
their size, shape, and location as they overlay the galaxy. (Description from
@@ -55,10 +55,10 @@ asset.export(plane)
asset.meta = {
Name = "Milky Way Arms Labels",
Version = "1.1",
Description = [[ Image with arm labels for the Milky Way galaxy]],
Description = "Image with arm labels for the Milky Way galaxy",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = [[ Copyright &#169; American Museum of Natural History. All rights reserved.
License = [[Copyright &#169; American Museum of Natural History. All rights reserved.
<br><br> Downloading the Atlas: AMNH offers the Atlas free of charge via our
website, http://www.haydenplanetarium.org/. The User is free to download and/or
duplicate verbatim copies of the Atlas provided this license and copyright

View File

@@ -32,7 +32,7 @@ local homeLabel = {
GUI = {
Name = "Home Label",
Path = "/Universe/Galaxies",
Description = [[Label for the Milky Way titled "Home", sided for the galactic level]],
Description = "Label for the Milky Way titled 'Home', sided for the galactic level",
}
}
@@ -51,7 +51,7 @@ asset.export(homeLabel)
asset.meta = {
Name = "Home Label",
Version = "1.1",
Description = [[Label for the Milky Way titled "Home", sided for the galactic level]],
Description = "Label for the Milky Way titled 'Home', sided for the galactic level",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -50,7 +50,7 @@ asset.export(sphere)
asset.meta = {
Name = "Milky Way Galaxy Sphere",
Version = "2.1",
Description = [[All sky image of the Milky Way]],
Description = "All sky image of the Milky Way",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -67,7 +67,7 @@ asset.export(object)
asset.meta = {
Name = "OB Associations",
Version = "2.1",
Description = [[Digital Universe asset for OB Associations]],
Description = "Digital Universe asset for OB Associations",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -63,7 +63,7 @@ asset.export(object)
asset.meta = {
Name = "Open Star Clusters",
Version = "2.1",
Description = [[Digital Universe asset for Open Star Clusters]],
Description = "Digital Universe asset for Open Star Clusters",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -60,7 +60,7 @@ asset.export(object)
asset.meta = {
Name = "Planetary Nebulae",
Version = "2.1",
Description = [[Digital Universe asset for Planetary Nebulae]],
Description = "Digital Universe asset for Planetary Nebulae",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -64,7 +64,7 @@ asset.export(object)
asset.meta = {
Name = "Pulsars",
Version = "2.1",
Description = [[Digital Universe asset for Pulsars.]],
Description = "Digital Universe asset for Pulsars",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -67,7 +67,7 @@ asset.export(object)
asset.meta = {
Name = "Quasars",
Version = "2.1",
Description = [[Digital Universe asset for Quasars.]],
Description = "Digital Universe asset for Quasars",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -70,7 +70,7 @@ asset.export(object)
asset.meta = {
Name = "Sloan Digital Sky Survey",
Version = "2.1",
Description = [[Digital Universe asset for The Sloan Digital Sky Survey (SDSS).]],
Description = "Digital Universe asset for The Sloan Digital Sky Survey (SDSS)",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -22,7 +22,7 @@ local object = {
GUI = {
Name = "Stars Labels",
Path = "/Milky Way/Stars",
Description = [[Labels for stars in the Milky Way. See 'Stars' for more info.]],
Description = "Labels for stars in the Milky Way. See 'Stars' for more info",
}
}
@@ -41,7 +41,7 @@ asset.export(object)
asset.meta = {
Name = "Star Labels",
Version = "2.1",
Description = [[Digital Universe asset for labels of the stars.]],
Description = "Digital Universe asset for labels of the stars",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -26,7 +26,7 @@ local sunOrbit = {
GUI = {
Name = "Sun Orbit",
Path = "/Milky Way/Stars/Stars Orbits",
Description = [["Orbits of the Sun around the Milky Way"]]
Description = "Orbits of the Sun around the Milky Way"
}
}
@@ -48,7 +48,7 @@ local barnardsOrbit = {
GUI = {
Name = "Barnards Orbit",
Path = "/Milky Way/Stars/Stars Orbits",
Description = [["Orbits of Barnard's Star around the Milky Way"]]
Description = "Orbits of Barnard's Star around the Milky Way"
}
}
@@ -70,7 +70,7 @@ local kapteynsOrbit = {
GUI = {
Name = "Kapteyns Orbit",
Path = "/Milky Way/Stars/Stars Orbits",
Description = [["Orbits of Kapteyn's Star around the Milky Way"]]
Description = "Orbits of Kapteyn's Star around the Milky Way"
}
}
@@ -92,7 +92,7 @@ local lacaille9352Orbit = {
GUI = {
Name = "Lacaille 9352 Orbit",
Path = "/Milky Way/Stars/Stars Orbits",
Description = [["Orbits of Lacaille9352 around the Milky Way"]]
Description = "Orbits of Lacaille9352 around the Milky Way"
}
}
@@ -114,7 +114,7 @@ local lSR1826Orbit = {
GUI = {
Name = "LSR1826+3014 Orbit",
Path = "/Milky Way/Stars/Stars Orbits",
Description = [["Orbits of LSR1826+3014 around the Milky Way"]]
Description = "Orbits of LSR1826+3014 around the Milky Way"
}
}
@@ -136,7 +136,7 @@ local lSRJ0822Orbit = {
GUI = {
Name = "LSRJ0822+1700 Orbit",
Path = "/Milky Way/Stars/Stars Orbits",
Description = [["Orbits of LSRJ0822+1700 around the Milky Way"]]
Description = "Orbits of LSRJ0822+1700 around the Milky Way"
}
}
@@ -158,7 +158,7 @@ local pM_J13420Orbit = {
GUI = {
Name = "PM_J13420-3415 Orbit",
Path = "/Milky Way/Stars/Stars Orbits",
Description = [["Orbits of PM_J13420-3415 around the Milky Way"]]
Description = "Orbits of PM_J13420-3415 around the Milky Way"
}
}

View File

@@ -114,7 +114,7 @@ asset.export(sunstar)
asset.meta = {
Name = "Stars",
Version = "2.1",
Description = [[Digital Universe asset for the stars.]],
Description = "Digital Universe asset for the stars",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -59,7 +59,7 @@ asset.export(object)
asset.meta = {
Name = "Galaxy Superclusters",
Version = "2.1",
Description = [[Digital Universe asset for Galaxy Superclusters.]],
Description = "Digital Universe asset for Galaxy Superclusters",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -59,7 +59,7 @@ asset.export(object)
asset.meta = {
Name = "Supernova Remnants",
Version = "2.1",
Description = [[Digital Universe asset for Supernova Remnants.]],
Description = "Digital Universe asset for Supernova Remnants",
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -98,7 +98,7 @@ local tullyImages = {
come from The Galaxy Catalog. A handful of nearby galaxies are represented by
their actual images, which come mostly from the National Optical Astronomy
Observatory (NOAO). Each of these images has been altered from its original state.
These images were taken from Earth on some of the worlds largest telescopes, so
These images were taken from Earth on some of the world's largest telescopes, so
foreground stars from our own Galaxy appear in each image. We are representing
galaxies in extragalactic space, so we have removed the stars from each image.
(Description from URL) <br><br> Data Reference: Tully Galaxy Catalog: Brent Tully
@@ -125,7 +125,7 @@ asset.meta = {
Name = "Tully Galaxies",
Version = "3.1",
Description = [[Digital Universe asset for Tully Galaxies, including point cloud and
images.]],
images]],
Author = "Stuart Levy (NCSA/UIUC), Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -23,7 +23,7 @@ local object = {
GUI = {
Name = "Voids",
Path = "/Universe/Galaxies",
Description = [[ Census: 24 cosmic voids. DU Version 1.2. <br>Cosmic voids are
Description = [[Census: 24 cosmic voids. DU Version 1.2. <br>Cosmic voids are
vast, empty spaces where there are either no galaxies, or very few galaxies.
They are associated with cold spots in the cosmic microwave background (CMB)
light, the earliest picture we have of the universe (see page 58). Those cold
@@ -52,7 +52,7 @@ asset.meta = {
Name = "Voids",
Version = "2.1",
Author = "Brian Abbott (AMNH)",
Description = [[Digital Universe asset for Cosmic voids.]],
Description = "Digital Universe asset for Cosmic voids",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"
}

View File

@@ -150,6 +150,8 @@ asset.onInitialize(function ()
openspace.action.registerAction(show_art)
openspace.action.registerAction(hide_art)
openspace.action.registerAction(disable_art)
openspace.action.registerAction(show_zodiac_art)
openspace.action.registerAction(hide_zodiac_art)
end)
asset.onDeinitialize(function ()
@@ -157,9 +159,11 @@ asset.onDeinitialize(function ()
openspace.removeSceneGraphNode(n.Identifier);
end
openspace.action.removeAction(show_art)
openspace.action.removeAction(hide_art)
openspace.action.removeAction(hide_zodiac_art)
openspace.action.removeAction(show_zodiac_art)
openspace.action.removeAction(disable_art)
openspace.action.removeAction(hide_art)
openspace.action.removeAction(show_art)
end)
for _, n in ipairs(nodes) do

View File

@@ -51,7 +51,7 @@ local gaia_abundance_apogee = {
GUI = {
Path = "/Milky Way/Gaia",
Name = "Gaia Abundance Apogee",
Description = "Data set of stars color coded by metallicity."
Description = "Data set of stars color coded by metallicity"
}
}
@@ -70,7 +70,7 @@ asset.export(gaia_abundance_apogee)
asset.meta = {
Name = "Gaia Abundance Apogee",
Version = "1.0",
Description = [[This asset contains a RenderableStars dataset with metallicity data.]],
Description = "This asset contains a RenderableStars dataset with metallicity data",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT License"

View File

@@ -7,7 +7,7 @@ local gaia618Destination = asset.syncedResource({
Identifier = "gaia_stars_618M_octree",
Version = 1
})
local gaia618DestinationExtracted = gaia618Destination + "data";
local gaia618DestinationExtracted = gaia618Destination .. "data";
-- Download the full DR2 dataset with 24 values per star (preprocessed with theReadFitsTask (gaia_read.task) into 8 binary files).
-- From these files new subsets can be created with the ConstructOctreeTask (gaia_octree.task).
@@ -34,8 +34,16 @@ asset.meta = {
Name = "GaiaDR2 Download Stars",
Version = "1.1",
Description = [[This asset contains code to sync gaia subsets from the OpenSpace
servers. Edit this file to choose which subsets to sync. WARNING can use 150GB],
servers. Edit this file to choose which subsets to sync. WARNING can use 150GB]],
Author = "ESA/Gaia/DPAC",
URL = "https://gea.esac.esa.int/archive/documentation/GDR2/index.html",
License = [[The Gaia data are open and free to use, provided credit is given to 'ESA/Gaia/DPAC'. In general, access to, and use of, ESA's Gaia Archive (hereafter called 'the website') constitutes acceptance of the following general terms and conditions. Neither ESA nor any other party involved in creating, producing, or delivering the website shall be liable for any direct, incidental, consequential, indirect, or punitive damages arising out of user access to, or use of, the website. The website does not guarantee the accuracy of information provided by external sources and accepts no responsibility or liability for any consequences arising from the use of such data.]]
License = [[The Gaia data are open and free to use, provided credit is given to
'ESA/Gaia/DPAC'. In general, access to, and use of, ESA's Gaia Archive (hereafter
called 'the website') constitutes acceptance of the following general terms and
conditions. Neither ESA nor any other party involved in creating, producing, or
delivering the website shall be liable for any direct, incidental, consequential,
indirect, or punitive damages arising out of user access to, or use of, the website.
The website does not guarantee the accuracy of information provided by external
sources and accepts no responsibility or liability for any consequences arising from
the use of such data]]
}

View File

@@ -58,7 +58,7 @@ local GaiaStars = {
GUI = {
Name = "Gaia Stars",
Path = "/Milky Way",
Description = "Radial Velocity subset of GaiaDR2."
Description = "Radial Velocity subset of GaiaDR2"
}
}
@@ -78,8 +78,16 @@ asset.meta = {
Name = "Gaia Stars",
Version = "1.0",
Description = [[This asset contains a subset of GaiaDR2. This subset contains 7.5M stars which have
accurate values for a number of columns. ]],
accurate values for a number of columns]],
Author = "ESA/Gaia/DPAC",
URL = "https://gea.esac.esa.int/archive/documentation/GDR2/index.html",
License = [[The Gaia data are open and free to use, provided credit is given to 'ESA/Gaia/DPAC'. In general, access to, and use of, ESA's Gaia Archive (hereafter called 'the website') constitutes acceptance of the following general terms and conditions. Neither ESA nor any other party involved in creating, producing, or delivering the website shall be liable for any direct, incidental, consequential, indirect, or punitive damages arising out of user access to, or use of, the website. The website does not guarantee the accuracy of information provided by external sources and accepts no responsibility or liability for any consequences arising from the use of such data.]]
License = [[The Gaia data are open and free to use, provided credit is given to
'ESA/Gaia/DPAC'. In general, access to, and use of, ESA's Gaia Archive (hereafter
called 'the website') constitutes acceptance of the following general terms and
conditions. Neither ESA nor any other party involved in creating, producing, or
delivering the website shall be liable for any direct, incidental, consequential,
indirect, or punitive damages arising out of user access to, or use of, the website.
The website does not guarantee the accuracy of information provided by external
sources and accepts no responsibility or liability for any consequences arising from
the use of such data]]
}

View File

@@ -51,7 +51,7 @@ local gaia_abundance_galah = {
GUI = {
Path = "/Milky Way/Gaia",
Name = "Gaia Abundance Galah",
Description = "Data set of stars color coded by metallicity."
Description = "Data set of stars color coded by metallicity"
}
}
@@ -70,7 +70,7 @@ asset.export(gaia_abundance_galah)
asset.meta = {
Name = "Gaia Abundance Galah",
Version = "1.0",
Description = [[This asset contains a RenderableStars dataset with metallicity data.]],
Description = "This asset contains a RenderableStars dataset with metallicity data",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT License"

View File

@@ -9,8 +9,7 @@ asset.export("TexturesPath", TexturesPath)
asset.meta = {
Name = "Habitable Zone Textures",
Version = "1.0",
Description = [[ Default textures that can be used for the habitable zone
rendering]],
Description = "Default textures that can be used for the habitable zone rendering",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license",

View File

@@ -49,7 +49,7 @@ asset.meta = {
Name = "MilkyWay Galaxy (ESO)",
Version = "1.0",
Description = [[This asset contains an alternate to the Digital Universe image for the
Milky Way from ESO.]],
Milky Way from ESO]],
Author = "ESO/S. Brunier",
URL = "https://www.eso.org/public/usa/images/eso0932a/",
License = "Creative Commons Attribution 4.0 International License"

View File

@@ -46,8 +46,7 @@ local MilkyWayVolumeGalaxy = {
GUI = {
Path = "/Milky Way",
Name = "Milky Way Volume",
Description = [[Volumetric rendering of Milky Way galaxy based on simulation from
NAOJ.]]
Description = "Volumetric rendering of Milky Way galaxy based on simulation from NAOJ"
}
}
@@ -66,8 +65,7 @@ asset.export(MilkyWayVolumeGalaxy)
asset.meta = {
Name = "Milky Way Volume",
Version = "1.1",
Description = [[Volumetric rendering of Milky Way galaxy based on simulations from
NAOJ.]],
Description = "Volumetric rendering of Milky Way galaxy based on simulations from NAOJ",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT License"

View File

@@ -34,7 +34,7 @@ local OrionClusterStars = {
GUI = {
Name = "Orion Nebula Star Cluster",
Path = "/Milky Way/Orion",
Description = [[ In order to have an accurate depiction of the Orion nebula, we
Description = [[In order to have an accurate depiction of the Orion nebula, we
need to include the star cluster that was birthed from it. We turned to a study of the
cluster's stellar population by Lynne Hillenbrand, who was working at the University of
California, Berkeley at the time. The catalog from her paper contains more than 1500
@@ -46,7 +46,7 @@ local OrionClusterStars = {
placed each star along a line of sight through this imaginary sphere centered on the
cluster. In this sense, these data are observed data and the view from Earth is accurate.
But the distance of each star has been derived from this educated-guess approach for the
cluster distribution. ]]
cluster distribution]]
}
}
@@ -65,8 +65,8 @@ asset.export(OrionClusterStars)
asset.meta = {
Name = "Orion Nebula Star Cluster",
Version = "1.1",
Description = [[ Digital Universe asset for the Orion star cluster. To be used in
conjunction with nebula model. Use orionnebula.asset to include both.]],
Description = [[Digital Universe asset for the Orion star cluster. To be used in
conjunction with nebula model. Use orionnebula.asset to include both]],
Author = "AMNH Digital Universe",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -28,7 +28,7 @@ local NebulaHolder = {
GUI = {
Name = "Orion Nebula",
Path = "/Milky Way/Orion",
Description = [[ In the Digital Universe model of the Orion Nebula, we depict the
Description = [[In the Digital Universe model of the Orion Nebula, we depict the
ionization front effectively as a terrain, with a flat Hubble image of the nebula mapped
on the undulating surface. In reality, the ionization front has a slight thickness to
it - about a third of a light year - but is quite thin compared to the overall size of
@@ -40,7 +40,7 @@ local NebulaHolder = {
nebulas center. These enormous structures are bow shocks that delineate the region where
highspeed winds from the central star slow from supersonic to subsonic speeds. You can
think of an HII region as a sort of tremendous explosion, taking place over millennia,
and the bow shocks are part of the outward rush of material. ]]
and the bow shocks are part of the outward rush of material]]
}
}
@@ -75,7 +75,7 @@ local OrionNebulaModel = {
GUI = {
Name = "Orion Nebula Model",
Path = "/Milky Way/Orion",
Description = "Orion Nebula 3D model. See Orion Nebula for description."
Description = "Orion Nebula 3D model. See Orion Nebula for description"
}
}
@@ -111,7 +111,7 @@ local OrionNebulaShocksModel = {
Name = "Orion Nebula Shocks",
Path = "/Milky Way/Orion",
Hidden = false,
Description = "Orion Nebula Shocks 3D model. See Orion Nebula for description."
Description = "Orion Nebula Shocks 3D model. See Orion Nebula for description"
}
}
@@ -147,7 +147,7 @@ local OrionNebulaProplydsModel = {
Name = "Orion Nebula Proplyds",
Path = "/Milky Way/Orion",
Hidden = false,
Description = "Orion Nebula Proplyds 3D model. See Orion Nebula for description."
Description = "Orion Nebula Proplyds 3D model. See Orion Nebula for description"
}
}
@@ -175,9 +175,9 @@ asset.export(OrionNebulaProplydsModel)
asset.meta = {
Name = "Orion Nebula Model",
Version = "1.1",
Description = [[ Digital Universe asset for the Orion nebula 3D model. This asset
Description = [[Digital Universe asset for the Orion nebula 3D model. This asset
contains seperate models for the nebula, proplyds and shocks. To be used in
conjunction with orion star cluster. Use orionnebula.asset to include both.]],
conjunction with orion star cluster. Use orionnebula.asset to include both]],
Author = "AMNH Digital Universe",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -6,7 +6,7 @@ asset.meta = {
Name = "Orion Nebula",
Version = "1.0",
Description = [[This asset is a meta asset, containing all the assets for the Orion
Nebula from the AMNH Digital Universe. This includes a 3D model and a star cluster.]],
Nebula from the AMNH Digital Universe. This includes a 3D model and a star cluster]],
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -39,7 +39,7 @@ asset.meta = {
Name = "Orion Nebula Transforms",
Version = "1.0",
Description = [[This asset contains the position of the Orion Nebula. Generally you
would not include this asset as other assets would include it.]],
would not include this asset as other assets would include it]],
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe"

View File

@@ -65,7 +65,7 @@ asset.export(Charon)
asset.meta = {
Name = "Charon",
Version = "1.0",
Description = [[ Charon globe with labels.]],
Description = "Charon globe with labels",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -43,7 +43,7 @@ asset.export(CharonTrailBarycentric)
asset.meta = {
Name = "Charon Barycentric Trail",
Version = "1.0",
Description = [[ Trail of Charon as observed by Pluto Barycenter. Data from
Description = [[Trail of Charon as observed by Pluto Barycenter. Data from
NASA Spice (see base spice asset)]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",

View File

@@ -11,7 +11,7 @@ end)
asset.meta = {
Name = "Default Charon Layers",
Version = "1.0",
Description = [[ Default Charon layers are: Black & White USGS]],
Description = "Default Charon layers are: Black & White USGS",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -20,13 +20,13 @@ asset.export("layer", layer)
asset.meta = {
Name = "Charon Black & White [USGS]",
Version = "1.0",
Description = [[ Charon New Horizons LORRI MVIC Global Mosaic 300m v1. This detailed,
high-quality global mosaic of Plutos largest moon, Charon, was assembled from nearly
Description = [[Charon New Horizons LORRI MVIC Global Mosaic 300m v1. This detailed,
high-quality global mosaic of Pluto's largest moon, Charon, was assembled from nearly
all of the highest-resolution images obtained by the Long-Range Reconnaissance Imager
(LORRI) and the Multispectral Visible Imaging Camera (MVIC) on New Horizons. The
mosaic is the most detailed and comprehensive global view yet of Charons surface
mosaic is the most detailed and comprehensive global view yet of Charon's surface
using New Horizons data. Standing out on Charon is an enormous trough at least 350
kilometers long, and reaching 14 kilometers deep more than seven times as deep as the
kilometers long, and reaching 14 kilometers deep more than seven times as deep as the
Grand Canyon. This mosaic is available in equirectangular projection at an equatorial
pixel scale of 300 meters per pixel (m). (Description from URL)]],
Author = "USGS",

View File

@@ -11,8 +11,8 @@ end)
asset.meta = {
Name = "Default Pluto Layers",
Version = "1.0",
Description = [[ Default Pluto layers are: Black & White USGS]],
Description = "Default Pluto layers are: Black & White USGS",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
}

View File

@@ -17,7 +17,7 @@ asset.export("PlutoKernels", PlutoKernels)
asset.meta = {
Name = "Pluto Spice Kernels",
Version = "1.0",
Description = [[ Generic SPICE kernels for Pluto.]],
Description = "Generic SPICE kernels for Pluto",
Author = "OpenSpace Team",
URL = "https://naif.jpl.nasa.gov/pub/naif/pds/wgc/kernels/spk/",
License = "NASA"

View File

@@ -20,7 +20,7 @@ asset.export("layer", layer)
asset.meta = {
Name = "Pluto Black & White [USGS]",
Version = "1.0",
Description = [[ This detailed, high-quality global mosaic of Pluto was assembled from
Description = [[This detailed, high-quality global mosaic of Pluto was assembled from
nearly all of the highest-resolution images obtained by the Long-Range
Reconnaissance Imager (LORRI) and the Multispectral Visible Imaging Camera (MVIC)
on New Horizons.The mosaic is the most detailed and comprehensive global view yet

View File

@@ -70,8 +70,8 @@ asset.export(HydraTrail)
asset.meta = {
Name = "Hydra",
Version = "1.0",
Description = [[ Globe and trail for Pluto's moon Hydra. Data from
NASA Spice (see base spice asset)]],
Description = [[Globe and trail for Pluto's moon Hydra. Data from NASA Spice (see base
spice asset)]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -69,8 +69,8 @@ asset.export(KerberosTrail)
asset.meta = {
Name = "Kerberos",
Version = "1.0",
Description = [[ Globe and trail for Pluto's moon Kerberos. Data from
NASA Spice (see base spice asset)]],
Description = [[Globe and trail for Pluto's moon Kerberos. Data from NASA Spice (see
base spice asset)]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -69,8 +69,8 @@ asset.export(NixTrail)
asset.meta = {
Name = "Nix",
Version = "1.0",
Description = [[ Globe and trail for Pluto's moon Nix. Data from
NASA Spice (see base spice asset)]],
Description = [[Globe and trail for Pluto's moon Nix. Data from NASA Spice (see base
spice asset)]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -68,8 +68,8 @@ asset.export(StyxTrail)
asset.meta = {
Name = "Styx",
Version = "1.0",
Description = [[ Globe and trail for Pluto's moon Styx. Data from
NASA Spice (see base spice asset)]],
Description = [[Globe and trail for Pluto's moon Styx. Data from NASA Spice (see base
spice asset)]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -88,7 +88,7 @@ asset.export(PlutoLabel)
asset.meta = {
Name = "Pluto",
Version = "1.0",
Description = [[ Pluto globe, and main planet label.]],
Description = "Pluto globe, and main planet label",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -20,7 +20,7 @@ local PlutoTrailBarycentric = {
GUI = {
Name = "Pluto Barycentric Trail",
Path = "/Solar System/Dwarf Planets/Pluto",
Description = [[Orbit of Pluto around it's Barycenter.]]
Description = "Orbit of Pluto around it's Barycenter"
}
}
@@ -39,8 +39,8 @@ asset.export(PlutoTrailBarycentric)
asset.meta = {
Name = "Pluto Barycentric Trail",
Version = "1.0",
Description = [[ Trail of Pluto as observed by it's Barrycenter. Data from
NASA Spice (see base spice asset)]],
Description = [[Trail of Pluto as observed by it's Barrycenter. Data from NASA Spice
(see base spice asset)]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -29,7 +29,7 @@ local PlutoKeplerianTrail = {
GUI = {
Name = "Pluto Keplerian Trail",
Path = "/Solar System/Dwarf Planets/Pluto",
Description = "Keplerian trail of Pluto. Contains full orbit."
Description = "Keplerian trail of Pluto. Contains full orbit"
}
}
@@ -48,8 +48,8 @@ asset.export(PlutoKeplerianTrail)
asset.meta = {
Name = "Pluto Keplerian Trail",
Version = "1.0",
Description = [[ Full Keplerian trail of Pluto as observed by the Sun. Data from
JPL Horizons.]],
Description = [[Full Keplerian trail of Pluto as observed by the Sun. Data from
JPL Horizons]],
Author = "OpenSpace Team",
URL = "https://ssd.jpl.nasa.gov/sbdb.cgi?sstr=pluto",
License = "JPL/NASA"

View File

@@ -13,7 +13,7 @@ asset.require("./minor/styx")
asset.meta = {
Name = "Pluto System",
Version = "1.0",
Description = [[ Meta asset for the Pluto system, containing : Pluto, Pluto Trail,
Description = [[Meta asset for the Pluto system, containing : Pluto, Pluto Trail,
Charon, Charon Trail, Hydra, Kerberos, Nix, and Styx]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",

View File

@@ -23,8 +23,8 @@ local PlutoBarycenterTrail = {
GUI = {
Name = "Pluto Barycenter Trail",
Path = "/Solar System/Dwarf Planets/Pluto",
Description = [[Precise trail of Pluto from NASA SPICE data. Not
containing full orbit.]]
Description = [[Precise trail of Pluto from NASA SPICE data. Not containing full
orbit]]
}
}
@@ -43,8 +43,8 @@ asset.export(PlutoBarycenterTrail)
asset.meta = {
Name = "Pluto Barycenter Trail",
Version = "1.0",
Description = [[ Trail of Pluto Barycenter as observed by the Sun. Data from
NASA Spice (see base spice asset)]],
Description = [[Trail of Pluto Barycenter as observed by the Sun. Data from NASA Spice
(see base spice asset)]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -36,7 +36,7 @@ asset.export(PlutoBarycenter)
asset.meta = {
Name = "Pluto Transforms",
Version = "1.0",
Description = [[ Pluto Barycenter transform]],
Description = "Pluto Barycenter transform",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -16,7 +16,7 @@ local fieldlineData = asset.syncedResource({
})
local loop = {
Documentation = "Sets time to start of data, sets higher delta time and loops back from start, when at end of data.",
Documentation = "Sets time to start of data, sets higher delta time and loops back from start, when at end of data",
GuiPath = "2012July",
Identifier = "2012july.loop_batsrus",
IsLocal = false,

View File

@@ -19,7 +19,7 @@ asset.export("CarringtonLongitudeToHEEQ180Rotation", CarringtonLongitudeToHEEQ18
asset.meta = {
Name = "Carrington Longitude To HEEQ180 Rotation",
Version = "1.0",
Description = [[ Contains a rotation for HEEQ180 to be used by another file]],
Description = "Contains a rotation for HEEQ180 to be used by another file",
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"

View File

@@ -73,7 +73,7 @@ asset.export(densityVolume)
asset.meta = {
Name = "Predictive Science Inc. Volume Rendering Bastille Day",
Version = "1.0",
Description = [[Volumetric rendering for the bastille day CME event]],
Description = "Volumetric rendering for the bastille day CME event",
Author = "CCMC, OpenSpace team",
URL = "https://dx.doi.org/10.3847/1538-4357/aab36d",
License = "CC-BY"

View File

@@ -71,7 +71,7 @@ asset.export(fieldlines)
asset.meta = {
Name = "Predictive Science Inc. Fieldlines Bastille Day",
Version = "1.0",
Description = [[Magnetic fieldlines for the bastille day CME event]],
Description = "Magnetic fieldlines for the bastille day CME event",
Author = "CCMC, Jonathan Grangien, Matthias Berg",
URL = "https://dx.doi.org/10.3847/1538-4357/aab36d",
License = "CC-BY"

View File

@@ -57,7 +57,7 @@ asset.export(fluxNodes)
asset.meta = {
Name = "Predictive Science Inc. Flux nodes Bastille Day",
Version = "1.0",
Description = [[Flux nodes for the bastille day CME event]],
Description = "Flux nodes for the bastille day CME event",
Author = "CCMC, Christian Adamsson, Emilie Ho",
URL = "https://dx.doi.org/10.3847/1538-4357/aab36d",
License = "CC-BY"

View File

@@ -107,7 +107,7 @@ asset.export(MeridialCutplane)
asset.meta = {
Name = "Predictive Science Inc. Cutplanes Bastille Days",
Version = "1.0",
Description = [[Cutplanes for the bastille day CME event]],
Description = "Cutplanes for the bastille day CME event",
Author = "CCMC, Christian Adamsson, Emilie Ho",
URL = "https://dx.doi.org/10.3847/1538-4357/aab36d",
License = "CC-BY"

Some files were not shown because too many files have changed in this diff Show More