Add animated plot for satellite positions

This commit is contained in:
Tim Schubert 2020-08-17 11:52:53 +02:00
parent d145337d6c
commit f8804533cc
3 changed files with 67 additions and 1 deletions

View file

@ -1,4 +1,10 @@
# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
def build(bld):
pass
if not bld.env['ENABLE_EXAMPLES']:
return;
obj = bld.create_ns3_program('leo-circular-orbit-trace',
['core', 'leo', 'mobility'])
obj.source = 'leo-circular-orbit-tracing-example.cc'