UKHAS Wiki

UK High Altitude Society

User Tools

Site Tools


projects:tracker

This is an old revision of the document!


AJAX Tracker

Description

AJAX tracker to track payloads. Locations can be submitted to the tracker via email or via HTTP GET. Google Earth is also supported.

Screenshot

Download

Installation

  • Run the following SQL command on your database which creates the positions table:
 
  CREATE TABLE IF NOT EXISTS `positions` (
  `position_id` int(11) NOT NULL auto_increment,
  `mission_id` int(11) NOT NULL default '0',
  `vehicle` varchar(32) NOT NULL default '',
  `server_time` timestamp NOT NULL default CURRENT_TIMESTAMP,
  `gps_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `gps_lat` double NOT NULL default '0',
  `gps_lon` double NOT NULL default '0',
  `gps_alt` double NOT NULL default '0',
  `gps_heading` double NOT NULL default '0',
  `gps_speed` double NOT NULL default '0',
  PRIMARY KEY  (`position_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
  • Copy all files to a folder on your server.
  • Edit config.php and track.kml
  • Google maps requires an API Key for each domain, sign up for one at http://code.google.com/apis/maps/signup.html and replace the key in index.php
projects/tracker.1217625427.txt.gz · Last modified: 2008/08/01 21:17 by jcoxon

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki