A python script was from the ideas mentioned in [4]. This python script will convert a text message into appropriate node locations and create a mobility scenario file from it. The nodes are started to move from a random location and finally form a text message at the end of the mobility.
You can see this python script at the following link:
The following ns-3 simulation script presents the idea of creating a 'drone show' using ns-2 mobility trace file.
#include "ns3/core-module.h"
#include "ns3/mobility-module.h"
#include "ns3/ns2-mobility-helper.h"
#include "ns3/netanim-module.h"
using namespace ns3;
int main (int argc, char *argv[])
{
// Create Ns2MobilityHelper with the specified trace log file as parameter
Ns2MobilityHelper ns2 = Ns2MobilityHelper ("mobility.txt");
// Create Moble nodes.
NodeContainer MobileNodes;
MobileNodes.Create (464);
// configure movements for each node, while reading trace file
ns2.Install ();
AnimationInterface anim ("SimpleNS3DroneShowSimulationWith-ns2-mobility-trace.xml");
Simulator::Stop (Seconds (100));
Simulator::Run ();
return 0;
}


--
Posting to this group should follow these guidelines https://www.nsnam.org/wiki/Ns-3-users-guidelines-for-posting
---
You received this message because you are subscribed to the Google Groups "ns-3-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ns-3-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ns-3-users/CAHXeiM8xfx3uHh%2B3N0HfR51Ovid4YxFmKtxtri%3D36TkzV4Opbg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ns-3-users/CAJe%3DBVbyYkq89LLmy8W56RFv%2BuBA1Y7Fau%2BcX0sRh7G7_3FexQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ns-3-users/CADeTpUeiYS8V7Owc1LLvtXEzT6Sit4Kp5MgCJdd0mV92aKYULw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ns-3-users/CAHXeiM9GFb5mdGxUZB2Ktc6_BZTg9QSGbFL5BQj0YAWdeduwmw%40mail.gmail.com.