summaryrefslogtreecommitdiff
path: root/tools/mmd/tracker.html
diff options
context:
space:
mode:
authorJogi Hofmüller <jogi@mur.at>2011-08-24 14:27:54 +0000
committerJogi Hofmüller <jogi@mur.at>2011-08-24 14:27:54 +0000
commit0944d1cb011a8f625dc4c3b025b1669a792823f6 (patch)
tree517e2afa75e211527d283d0e2ca48b9357411ef1 /tools/mmd/tracker.html
parent- changed font for groundstation display (diff)
- added button to display TLE in new window
git-svn-id: https://svn.spreadspace.org/mur.sat@159 7de4ea59-55d0-425e-a1af-a3118ea81d4c
Diffstat (limited to 'tools/mmd/tracker.html')
-rw-r--r--tools/mmd/tracker.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/mmd/tracker.html b/tools/mmd/tracker.html
index 19c098e..82dbbec 100644
--- a/tools/mmd/tracker.html
+++ b/tools/mmd/tracker.html
@@ -12,6 +12,13 @@
{
Orb.startOSMTracking(15.4422, 47.0658, 376, 'Graz');
}
+
+ function printTLE ()
+ {
+ tleWindow = window.open ("", "", "width=500, height=40");
+ tleWindow.document.write ("<pre>" + Orb.printTLE () + "</pre>");
+ tleWindow.focus ();
+ }
</script>
<link rel="stylesheet" type="text/css" href="mmd.css" />
</head>
@@ -66,6 +73,9 @@
preview for the next <input class="options" type="text" name="previewMinutes" id="previewMinutes" value="90" size="5" tabindex="3" />
minutes
</div>
+ <div class="options">
+ <input class="options" type="submit" value="show TLE" onClick="printTLE ()" />
+ </div>
<pre class="debug" id="debug"></pre>
</body>
</html>