mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-09 21:21:19 -06:00
added tdr6
This commit is contained in:
@@ -57,6 +57,7 @@ local TD12Asset = asset.require('scene/solarsystem/dsn/spacecrafts/td12/td12')
|
||||
local TD13Asset = asset.require('scene/solarsystem/dsn/spacecrafts/td13/td13')
|
||||
local TDR3Asset = asset.require('scene/solarsystem/dsn/spacecrafts/tdr3/tdr3')
|
||||
local TDR5Asset = asset.require('scene/solarsystem/dsn/spacecrafts/tdr5/tdr5')
|
||||
local TDR6Asset = asset.require('scene/solarsystem/dsn/spacecrafts/tdr6/tdr6')
|
||||
local TDR7Asset = asset.require('scene/solarsystem/dsn/spacecrafts/tdr7/tdr7')
|
||||
local TDR9Asset = asset.require('scene/solarsystem/dsn/spacecrafts/tdr9/tdr9')
|
||||
local TERRAsset = asset.require('scene/solarsystem/dsn/spacecrafts/terr/terr')
|
||||
@@ -126,6 +127,7 @@ local signalDataIdMap = {
|
||||
TD13 = TD13Asset.spacecraftID,
|
||||
TDR3 = TDR3Asset.spacecraftID,
|
||||
TDR5 = TDR5Asset.spacecraftID,
|
||||
TDR6 = TDR6Asset.spacecraftID,
|
||||
TDR7 = TDR7Asset.spacecraftID,
|
||||
TDR9 = TDR9Asset.spacecraftID,
|
||||
TESS = TessAsset.spacecraftID,
|
||||
@@ -196,6 +198,7 @@ asset.export("TD12Asset", TD12Asset)
|
||||
asset.export("TD13Asset", TD13Asset)
|
||||
asset.export("TDR3Asset", TDR3Asset)
|
||||
asset.export("TDR5Asset", TDR5Asset)
|
||||
asset.export("TDR6Asset", TDR6Asset)
|
||||
asset.export("TDR7Asset", TDR7Asset)
|
||||
asset.export("TDR9Asset", TDR9Asset)
|
||||
asset.export("TERRAsset", TERRAsset)
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
local assetHelper = asset.require('util/asset_helper')
|
||||
local dataFolder = openspace.absPath("${SYNC}/http/dsn_data/1/positioning/TDR6")
|
||||
|
||||
|
||||
local spacecraftID = "TDR6";
|
||||
|
||||
local TDR6 = {
|
||||
Identifier = spacecraftID,
|
||||
Transform = {
|
||||
Translation = {
|
||||
Type = "RadecTranslation",
|
||||
DataFolder = dataFolder,
|
||||
DataFileType = "json",
|
||||
ObjectIdentifier = spacecraftID
|
||||
}
|
||||
|
||||
},
|
||||
GUI = {
|
||||
Name = "TDR6",
|
||||
Path = "/Solar System/Missions/TDR6"
|
||||
}
|
||||
}
|
||||
asset.export("spacecraftID", spacecraftID)
|
||||
assetHelper.registerSceneGraphNodesAndExport(asset, {TDR6})
|
||||
@@ -212,6 +212,10 @@ local TDR5Label = {
|
||||
LabelText = ".TDR5",
|
||||
ObjectIdentifier = spacecrafts.TDR5Asset.spacecraftID
|
||||
}
|
||||
local TDR6Label = {
|
||||
LabelText = ".TDR6",
|
||||
ObjectIdentifier = spacecrafts.TDR6Asset.spacecraftID
|
||||
}
|
||||
local TDR7Label = {
|
||||
LabelText = ".TDR7",
|
||||
ObjectIdentifier = spacecrafts.TDR7Asset.spacecraftID
|
||||
@@ -342,25 +346,26 @@ local labelMapNearEarth = {
|
||||
label13 = TD13Label,
|
||||
label14 = TDR3Label,
|
||||
label15 = TDR5Label,
|
||||
label16 = TDR7Label,
|
||||
label17 = TDR9Label,
|
||||
label18 = XRayLabel,
|
||||
label19 = ImageLabel,
|
||||
label20 = CLU1Label,
|
||||
label21 = CLU2Label,
|
||||
label22 = CLU3Label,
|
||||
label23 = CLU4Label,
|
||||
label24 = MMS1Label,
|
||||
label25 = MMS2Label,
|
||||
label26 = MMS3Label,
|
||||
label27 = MMS4Label,
|
||||
label28 = TERRLabel,
|
||||
label29 = AceLabel,
|
||||
label30 = Ch2oLabel,
|
||||
label31 = JwstLabel,
|
||||
label32 = LadeLabel,
|
||||
label33 = SpilLabel,
|
||||
label34 = LroLabel
|
||||
label16 = TDR6Label,
|
||||
label17 = TDR7Label,
|
||||
label18 = TDR9Label,
|
||||
label19 = XRayLabel,
|
||||
label20 = ImageLabel,
|
||||
label21 = CLU1Label,
|
||||
label22 = CLU2Label,
|
||||
label23 = CLU3Label,
|
||||
label24 = CLU4Label,
|
||||
label25 = MMS1Label,
|
||||
label26 = MMS2Label,
|
||||
label27 = MMS3Label,
|
||||
label28 = MMS4Label,
|
||||
label29 = TERRLabel,
|
||||
label30 = AceLabel,
|
||||
label31 = Ch2oLabel,
|
||||
label32 = JwstLabel,
|
||||
label33 = LadeLabel,
|
||||
label34 = SpilLabel,
|
||||
label35 = LroLabel
|
||||
}
|
||||
local labelMapClusters = {
|
||||
Label1 = MarsClusterLabel,
|
||||
|
||||
Reference in New Issue
Block a user