summaryrefslogtreecommitdiff
path: root/contrib/skyview.php
Commit message (Collapse)AuthorAgeFilesLines
* LICENSE: Update license's to be more consistent. No functional changes.Gary E. Miller2018-11-191-0/+3
|
* Clean up code, now that it works.Sanjeev Gupta2015-03-281-26/+26
|
* Remove trailing whitespaceGary E. Miller2015-03-261-7/+7
|
* Document skyview.phpSanjeev Gupta2015-03-261-2/+17
| | | | | | Added comments and removed debugs. Signed-off-by: Gary E. Miller <gem@rellim.com>
* skyview.php now worksSanjeev Gupta2015-03-261-2/+1
| | | | Signed-off-by: Gary E. Miller <gem@rellim.com>
* Update skyview.php to work with modern GPSDSanjeev Gupta2015-03-261-9/+63
| | | | | | The original program was by Chris Kuethe <chris.kuethe@gmail.com> Signed-off-by: Gary E. Miller <gem@rellim.com>
* Revert "Removed contrib/skyview.php amd contrib/maxsats.pl, they used the ↵Gary E. Miller2015-03-251-0/+264
| | | | | | | | old protocol." This reverts commit 0dac112485e7a7117bd9ac735625f20e10750e79. Sanjeev Gupta wants a chance to fix the old programs.
* Removed contrib/skyview.php amd contrib/maxsats.pl, they used the old protocol.Eric S. Raymond2015-03-241-264/+0
|
* accept and parse lines without a timestampChris Kuethe2009-11-111-1/+1
|
* stop slurping the whole file into a buffer in memory; Chris Kuethe2008-02-101-4/+5
| | | | | just pull in a line at a time. also, change the colour scheme a bit so unusably weak sectors are set to a dark gray.
* Clamp satellite positions here too.Chris Kuethe2008-02-101-1/+2
|
* oops. was extracting azimuth and elevation in the wrong orderChris Kuethe2007-10-221-2/+2
|
* add a "cell" mode to the skyview plotter. Chris Kuethe2007-10-221-5/+77
| | | | | | | | | | | | | | this will plot the average signal strength in a patch of sky. also speed up the plot by storing all the signal strengths in an array which means i'll never have to store more than about 32.5k points. much better than trying to plot 86400 points (1 satellite info report per second for a day). The old "slug trail" mode is invoked as before: skyview.php log.txt picture.png The new "cell" mode is invoked by adding the "cell" keyword skyview.php log.txt picture2.png cell
* This script is derived from gpsd.php, and generates a plot... Chris Kuethe2007-01-151-0/+190
...of satellite position and signal strength over time. May be useful if you're trying to set up a static receiver in an urban canyon. May also be useful as an example of how to toss together a quick analyzer.