Unverified Commit 56460f81 authored by Micah Acinapura's avatar Micah Acinapura Committed by GitHub
Browse files

Feature/asset meta update part2 (#1855)


* changes to asset/loader/meta to support adding nodes created at runtime

* update assets meta.

* update tle helper and gui to work with changes

* fixes #1840

* group titan trail and atmosphere with globe

* license for magnetosphere
Co-authored-by: default avatarElonOlsson <olssonelon@gmail.com>
parent 3dea3ef5
Showing with 130 additions and 28 deletions
+130 -28
......@@ -103,3 +103,13 @@ asset.onDeinitialize(function()
openspace.action.removeAction(show_trail.Identifier)
openspace.action.removeAction(hide_trail.Identifier)
end)
asset.meta = {
Name = "Actions - Toggle current Trails",
Version = "1.0",
Description = [[ Asset providing actions to toggle trails]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -87,3 +87,14 @@ asset.onInitialize(function ()
end
end
end)
asset.meta = {
Name = "Customization - GlobeBrowsing",
Version = "1.0",
Description = [[ This asset adds planetary images that can be downloaded separately
and placed in the OpenSpaceData folder]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -6,3 +6,13 @@ asset.export("webguiDevelopmentMode", false)
-- 2) Clone the repository: https://github.com/OpenSpace/OpenSpace-WebGuiFrontend
-- 3) Install nodejs (including npm)
-- 4) Within the repository, run `npm install` and `npm start`
asset.meta = {
Name = "Customization - User Interface",
Version = "1.0",
Description = [[ This asset is used by developers working on the GUI.]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -11,3 +11,13 @@ end)
asset.onDeinitialize(function()
openspace.dashboard.removeDashboardItem(item.Identifier)
end)
asset.meta = {
Name = "Dashboard - Date",
Version = "1.0",
Description = [[ This asset provides a Date dashboard item.]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -4,3 +4,13 @@ asset.require("./distance")
asset.require("./framerate")
asset.require("./parallelconnection")
asset.require("./globelocation")
asset.meta = {
Name = "Dashboard - Default Items",
Version = "1.0",
Description = [[ This asset provides the default items for the dashboard.]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -11,3 +11,13 @@ end)
asset.onDeinitialize(function()
openspace.dashboard.removeDashboardItem(item.Identifier)
end)
asset.meta = {
Name = "Dashboard - Distance",
Version = "1.0",
Description = [[ This asset provides a Distance dashboard item.]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -11,3 +11,13 @@ end)
asset.onDeinitialize(function()
openspace.dashboard.removeDashboardItem(item.Identifier)
end)
asset.meta = {
Name = "Dashboard - Framerate",
Version = "1.0",
Description = [[ This asset provides a Framerate dashboard item.]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -11,3 +11,13 @@ end)
asset.onDeinitialize(function()
openspace.dashboard.removeDashboardItem(item.Identifier)
end)
asset.meta = {
Name = "Dashboard - GlobeLocation",
Version = "1.0",
Description = [[ This asset provides a GlobeLocation dashboard item.]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -11,3 +11,13 @@ end)
asset.onDeinitialize(function()
openspace.dashboard.removeDashboardItem(item.Identifier)
end)
asset.meta = {
Name = "Dashboard - ParallelConnection",
Version = "1.0",
Description = [[ This asset provides a ParallelConnection dashboard item.]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -11,3 +11,14 @@ end)
asset.onDeinitialize(function()
openspace.dashboard.removeDashboardItem(item.Identifier)
end)
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.]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -12,3 +12,13 @@ end)
asset.onDeinitialize(function()
openspace.dashboard.removeDashboardItem(item.Identifier)
end)
asset.meta = {
Name = "Dashboard - Velocity",
Version = "1.0",
Description = [[ This asset provides a dashboard item that shows the camera's velocity]],
Author = "OpenSpace Team",
URL = "http://openspaceproject.com",
License = "MIT license"
}
......@@ -58,10 +58,9 @@ assetHelper.registerSceneGraphNodesAndExport(asset, { object })
asset.meta = {
Name = "2dF Galaxies",
Version = "2.0",
Version = "2.1",
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",
Identifiers = {"2dF"}
License = "AMNH Digital Universe"
}
......@@ -54,11 +54,10 @@ assetHelper.registerSceneGraphNodesAndExport(asset, { object })
asset.meta = {
Name = "2MASS Galaxies",
Version = "1.0",
Version = "1.1",
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",
Identifiers = {"2MASS"}
License = "AMNH Digital Universe"
}
......@@ -56,10 +56,9 @@ assetHelper.registerSceneGraphNodesAndExport(asset, { object })
asset.meta = {
Name = "6dF Galaxies",
Version = "2.0",
Version = "2.1",
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",
Identifiers = {"6dF"}
License = "AMNH Digital Universe"
}
......@@ -65,10 +65,9 @@ assetHelper.registerSceneGraphNodesAndExport(asset, { object })
asset.meta = {
Name = "Abell Galaxy Clusters",
Version = "2.0",
Version = "2.1",
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",
Identifiers = {"Abell"}
License = "AMNH Digital Universe"
}
......@@ -39,12 +39,11 @@ local object = {
asset.meta = {
Name = "Stars Labels - Alternate",
Version = "1.0",
Version = "1.1",
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",
Identifiers = {"StarLabelsAlternate"}
License = "AMNH Digital Universe"
}
assetHelper.registerSceneGraphNodesAndExport(asset, { object })
......@@ -130,7 +130,7 @@ assetHelper.registerSceneGraphNodesAndExport(asset, {
asset.meta = {
Name = "Background Radiation",
Version = "2.0",
Version = "2.1",
Description = [[Various AllSky images for the Milky Way and observable Universe.
Included: Wilkinson Microwave Anisotropy Probe (WMAP), Cosmic Background Explorer,
Planck, and H Alpha <br><br> Data Reference: Planck/ESA and the Planck
......@@ -138,6 +138,5 @@ asset.meta = {
Finkbeiner (Princeton)]],
Author = "Brian Abbott (AMNH), OpenSpace Team",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe",
Identifiers = {"WMAP", "CBE", "Planck", "HAlpha"}
License = "AMNH Digital Universe"
}
......@@ -137,13 +137,11 @@ assetHelper.registerSceneGraphNodesAndExport(asset, {
asset.meta = {
Name = "Multiverse Background Radiation",
Version = "2.0",
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!]],
Author = "Brian Abbott (AMNH), OpenSpace Team",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe",
Identifiers = { "PlanckMultiverse1", "PlanckMultiverse2",
"PlanckMultiverse3", "PlanckMultiverse4" }
License = "AMNH Digital Universe"
}
......@@ -45,10 +45,9 @@ assetHelper.registerSceneGraphNodesAndExport(asset, { object })
asset.meta = {
Name = "Galaxy Clusters Labels",
Version = "1.0",
Version = "1.1",
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",
Identifiers = {"GalaxyClusterLabels"}
License = "AMNH Digital Universe"
}
......@@ -47,11 +47,10 @@ assetHelper.registerSceneGraphNodesAndExport(asset, { object })
asset.meta = {
Name = "Constellation Bounds",
Version = "1.0",
Version = "1.1",
Description = [[DU asset providing a Spherical mesh dividing the sky into regions that
fit the constellations.]],
Author = "Brian Abbott (AMNH)",
URL = "https://www.amnh.org/research/hayden-planetarium/digital-universe",
License = "AMNH Digital Universe",
Identifiers = {"ConstellationBounds"}
License = "AMNH Digital Universe"
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment