Warning: Undefined array key 1 in /var/www/html/blog/wp-includes/class-wp-query.php on line 3448

FootballTracker

By Iain MacDonald 2008-11-17• Android

This is an app built for android to allow followers of non-league football teams to keep up to date with their team’s matches whether they can make it to the game or not. The site’s home page is http://footballtracker.co.cc it also has a google code page at http://code.google.com/p/footballtracker/.

User Orientated

The user is the key to up-to-the-minute information so information is gathered from those users who manage to attend matches. These users carry the app with them and add goals as soon as the happen to inform every other fan of the event. Users are ranked by their performance in accurate and swift reporting to maintain a healthy community.

Interface

Currently the interface looks like this:

API

The service also defines an XML format for transmitting the data efficiently.

This is an example of a result from a query to http://footballtracker.co.cc/query.php?request=team

<?xml version="1.0" encoding="utf-8" ?>
<footballtracker version="1" xmlns="http://footballtracker.co.cc"
     xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
     xsi:schemaLocation="http://footballtracker.co.cc http://footballtracker.co.cc/footballtracker.xsd">
<query>
 <request value="team" timestamp="1263250606">
   <restriction type="select" value="name,shortname,nickname,logo_small,logo,logo_big" />
   <restriction type="limit" value="3" />
  </request>
  <result count="3">
   <team uuid="urn:uuid:7d2a3458-796c-05e8-7b8d-7bdeaf9d8788">
    <name>AFC Hornchurch</name>
    <shortname>Hornchurch</shortname>
   </team>
   <team uuid="urn:uuid:6e193522-67f0-15f3-937b-06d54b376ac0">
    <name>AFC Wimbledon</name>
    <shortname>Wimbledon</shortname>
   </team>
   <team uuid="urn:uuid:275a42fa-2dc7-e2b0-80ab-b3ea6176b293">
    <name>Ashford</name>
    <shortname>Ashford</shortname>
   </team>
  </result>
 </query>
</footballtracker>
SnakeSnacks »

Comments