From 826caf6954ef039e9c341c37b0b0709de2e77cbb Mon Sep 17 00:00:00 2001 From: Lovisa Hassler Date: Sun, 12 Jan 2020 22:21:12 +0100 Subject: [PATCH] Adding iss asset as a renderablesatellite --- .../planets/earth/satellites/misc/iss.asset | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/assets/scene/solarsystem/planets/earth/satellites/misc/iss.asset diff --git a/data/assets/scene/solarsystem/planets/earth/satellites/misc/iss.asset b/data/assets/scene/solarsystem/planets/earth/satellites/misc/iss.asset new file mode 100644 index 0000000000..27e3f964dd --- /dev/null +++ b/data/assets/scene/solarsystem/planets/earth/satellites/misc/iss.asset @@ -0,0 +1,11 @@ +local assetHelper = asset.require('util/asset_helper') +local shared = asset.require('../satellites_shared') + +local group = { + Title = "ISS", + Url = "https://live.ariss.org/iss.txt", + TrailColor = { 0.0, 1.0, 0.0 } +} + +local tle = shared.downloadTLEFile(asset, group.Url, group.Title) +shared.registerSatelliteGroupObjects(asset, group, tle, true)