Added Starlink satellites asset file; closes #1818

This commit is contained in:
GPayne
2022-03-30 14:36:52 -06:00
parent 92b250d860
commit 83561ca09d
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
local shared = asset.require("util/tle_helper")
local group = {
Title = "Starlink",
Url = "http://www.celestrak.com/NORAD/elements/starlink.txt",
TrailColor = { 0.65, 0.55, 0.55 },
Description = [[LEO satellite constellation launched by SpaceX to provide
broadband internet access.]]
}
local tle = shared.downloadTLEFile(asset, group.Url, group.Title)
shared.registerSatelliteGroupObjects(asset, group, tle, true)
asset.meta = {
Name = "Satellites Communications - Starlink",
Version = "1.0",
Description = [[ Satellites asset for Communications - Starlink. Data from
Celestrak]],
Author = "OpenSpace Team",
URL = "https://celestrak.com/NORAD/elements/",
License = "Celestrak"
}

View File

@@ -11,6 +11,7 @@ asset.require("./communications/other_comm")
asset.require("./communications/gorizont")
asset.require("./communications/raduga")
asset.require("./communications/molniya")
asset.require("./communications/starlink")
asset.meta = {