first show lad
[rb-clock.git] / php / gpsd / gpsd_config.inc
1 <?PHP
2 $title = 'My GPS Server';
3 $server = 'localhost';
4 #$advertise = 'localhost';
5 $port = 2947;
6 $autorefresh = 60; # number of seconds after which to refresh
7 $showmap = 2; # set to 1 if you want to have a google map, set it to 2 if you want a map based on openstreetmap
8 $gmap_key = 'GetYourOwnGoogleKey'; # your google API key goes here
9 $swap_ew = 0; # set to 1 if you don't understand projections
10 $open = 0; # set to 1 to show the form to change the GPSd server
11
12 ## You can read the header, footer and blurb from a file...
13 # $head = file_get_contents('/path/to/header.inc');
14 # $body = file_get_contents('/path/to/body.inc');
15 # $footer = file_get_contents('/path/to/footer.hinc');
16 # $blurb = file_get_contents('/path/to/blurb.inc');
17
18 ## ... or you can just define them here
19 $head = '';
20 $body = '';
21 $footer = '';
22 $blurb = <<<EOT
23 This is a
24 <a href="@WEBSITE@">gpsd</a>
25 server <blink><font color="red">located someplace</font></blink>.
26
27 The hardware is a
28 <blink><font color="red">hardware description and link</font></blink>.
29
30 This machine is maintained by
31 <a href="mailto:you@example.com">Your Name Goes Here</a>.<br/>
32 EOT;
33
34 ?>