Skip to content

A Radar which displays all the aircrafts that are in transit in a given range

Notifications You must be signed in to change notification settings

davidecalza/virtual-radar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Virtual Radar

A Radar which displays all the aircrafts that are in transit in a given range. The project contains both client and server side.

Prerequisites

  • Node (to run the web service)
  • MySQL

To manage the database

Go to the ./server/conf folder. To create the database:

$ node createDatabase.js

To drop the database:

$ node dropDatabase.js

To clean existing tables of the database:

$ node deleteTables.js

To run the web service

Go to the ./server/webservice folder and run

$ node index.js

Client side configuration

To change the IP address of the web service to get data from, go to the folder ./client/script/script.js and edit the WP_IP variable

WP_IP = "192.168.1.20";

Credits