summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgpsprof2
-rw-r--r--libgpsd_core.c4
-rw-r--r--www/performance/graph6.pngbin6492 -> 6584 bytes
-rw-r--r--www/performance/graph7.pngbin6433 -> 6647 bytes
-rw-r--r--www/performance/graph8.pngbin6566 -> 6579 bytes
-rw-r--r--www/performance/graph9.pngbin6180 -> 6763 bytes
-rw-r--r--www/performance/performance.xml23
-rw-r--r--www/performance/profile6.txt201
-rw-r--r--www/performance/profile7.txt202
-rw-r--r--www/performance/profile8.txt202
-rw-r--r--www/performance/profile9.txt202
11 files changed, 423 insertions, 413 deletions
diff --git a/gpsprof b/gpsprof
index e7fd9c23..ba7de0ae 100755
--- a/gpsprof
+++ b/gpsprof
@@ -267,7 +267,7 @@ class instrumented(plotter):
res = ""
for (tag, time, chars, start, xmit, recv) in self.fixes:
rs232_time = (chars * 10.0) / self.device['bps']
- res += "% 8s %.9f %9u %.9f %.9f %.9f %.9f\n" % (tag, time, chars, start-time, rs232_time, xmit-time, recv-time)
+ res += "% 8s %.9f %9u %.9f %.9f %.9f %.9f\n" % (tag, time, chars, start-time, (start-time)+rs232_time, xmit-time, recv-time)
return res
def plot(self):
legends = (
diff --git a/libgpsd_core.c b/libgpsd_core.c
index 76317f14..5146a135 100644
--- a/libgpsd_core.c
+++ b/libgpsd_core.c
@@ -849,8 +849,8 @@ gps_mask_t gpsd_poll(struct gps_device_t *session)
* in the cycle.
*
* In practice, it seems that edge detection succeeds at 9600bps but
- * fails at 4800bps. This is not surprsing, as previous proviling has
- * indicated that st 4800bps some devices overrun a 1-second cycle time
+ * fails at 4800bps. This is not surprsing, as previous profiling has
+ * indicated that at 4800bps some devices overrun a 1-second cycle time
* with the data they transmit.
*/
#define MINIMUM_QUIET_TIME 0.25
diff --git a/www/performance/graph6.png b/www/performance/graph6.png
index fecfa5f7..26da013b 100644
--- a/www/performance/graph6.png
+++ b/www/performance/graph6.png
Binary files differ
diff --git a/www/performance/graph7.png b/www/performance/graph7.png
index e90bae13..277b3445 100644
--- a/www/performance/graph7.png
+++ b/www/performance/graph7.png
Binary files differ
diff --git a/www/performance/graph8.png b/www/performance/graph8.png
index fd13408b..43bf1042 100644
--- a/www/performance/graph8.png
+++ b/www/performance/graph8.png
Binary files differ
diff --git a/www/performance/graph9.png b/www/performance/graph9.png
index 8cf4b898..7d00c1da 100644
--- a/www/performance/graph9.png
+++ b/www/performance/graph9.png
Binary files differ
diff --git a/www/performance/performance.xml b/www/performance/performance.xml
index 403dca64..88f8b7d2 100644
--- a/www/performance/performance.xml
+++ b/www/performance/performance.xml
@@ -30,6 +30,14 @@
<revhistory>
<revision>
+ <revnumber>2.2</revnumber>
+ <date>30 September 2011</date>
+ <authorinitials>esr</authorinitials>
+ <revremark>
+ Fix errors in some whole-cycle visualizations.
+ </revremark>
+ </revision>
+ <revision>
<revnumber>2.1</revnumber>
<date>29 September 2011</date>
<authorinitials>esr</authorinitials>
@@ -578,24 +586,25 @@ data</ulink>.</para>
</figure>
<para>Fix latency (S - T, the purple time segment in each sample) is
-consistently about 70msec. Some of this represents. on-chip
+consistently about 120msec. Some of this represents. on-chip
processing. Some may represent actual skew between NTP time and GPS
time.</para>
<para>RS232 time (the blue segment) is the character transmission time
-estimate we computed. It seems steady at around 100ms. This is
+estimate we computed. It seems relatively steady at around 125ms. This is
probably a bit low, proportionately speaking.</para>
<para>The green segment is (E-S) with RS232 computed time subtracted.
It approximates the time required by <application>gpsd</application>
-for itelf. It too seems steady at around 100ms. This is probably a bit
+for itelf. It seems steady at around 15ms. This is probably a bit
high, proportionately speaking.</para>
<para>The red dots that are just barely visible at the tops of some
sample bars represent R-E, the client reception delta. Inspection of
the raw data reveals that it is on the close order of 1ms.</para>
-<para>Total fix latency is steady at about 260ms.</para>
+<para>Total fix latency is steady at about 310ms. Transmission
+time dominates.</para>
<para>It is instructive to compare this with the graph (and the
<ulink url='profile7.txt'>raw data</ulink>) from the same device
@@ -617,7 +626,7 @@ fix latency is simply to bump up the transmission speed.
</para>
<para>It is equally instructive to compare these graphs with graphs
-taken from the same GPS, at the dme speed, running in NMEA rather than
+taken from the same GPS, at the same speed, running in NMEA rather than
vendor binary mode. Consider, for example, these:</para>
<figure><title>Per-cycle latency report, NMEA mode, 9600bps</title>
@@ -715,9 +724,9 @@ magnitude for this to change.</para>
<para>In 2011, with better whole-cycle oriented profiling tools and a
faster test machine, latency incurred by
-<application>gpsd</application> can be measured. It is less than 0.1
+<application>gpsd</application> can be measured. It is less than 15ms
sec on a 2.66 Intel Core Duo under normal load. How much less depends
-on how the model computations underestimate RS232 transmission time
+on how much the model computations underestimate RS232 transmission time
for the GPS data.</para>
</sect2>
</sect1>
diff --git a/www/performance/profile6.txt b/www/performance/profile6.txt
index aaadc5f1..0795137b 100644
--- a/www/performance/profile6.txt
+++ b/www/performance/profile6.txt
@@ -1,101 +1,102 @@
+# Analyzed latency, 2011-09-30T05:57:55, SiRF binary, 19200 8N1, cycle 1s
#- Tag - ----- Fix time ----- - Chars - - Latency - -- RS232 -- --Analysis- --- Recv --
- MID2 1316809844.210000038 334 0.078161001 0.173958333 0.267078876 0.272048950
- MID2 1316809845.210000038 331 0.078178883 0.172395833 0.259165049 0.260313034
- MID2 1316809846.210000038 382 0.036905050 0.198958333 0.268332958 0.269080877
- MID2 1316809847.210000038 332 0.076905966 0.172916667 0.257470846 0.258215904
- MID2 1316809848.210000038 332 0.076912880 0.172916667 0.257266045 0.258271933
- MID2 1316809849.210000038 332 0.076912880 0.172916667 0.258297920 0.259088039
- MID2 1316809850.210000038 333 0.076915979 0.173437500 0.258297920 0.259057999
- MID2 1316809851.210000038 328 0.078314066 0.170833333 0.258446932 0.259252071
- MID2 1316809852.210000038 329 0.078348875 0.171354167 0.258517027 0.259526014
- MID2 1316809853.210000038 331 0.076912880 0.172395833 0.258496046 0.259255886
- MID2 1316809854.210000038 327 0.078382969 0.170312500 0.258512020 0.259271860
- MID2 1316809855.210000038 335 0.076906919 0.174479167 0.258293867 0.259113073
- MID2 1316809856.210000038 330 0.076914072 0.171875000 0.257016897 0.257669926
- MID2 1316809857.210000038 335 0.076905012 0.174479167 0.267041922 0.267884016
- MID2 1316809858.210000038 394 0.028480053 0.205208333 0.268602848 0.269353867
- MID2 1316809859.210000038 323 0.078253031 0.168229167 0.258666039 0.259677887
- MID2 1316809860.210000038 327 0.078527927 0.170312500 0.258687019 0.259634972
- MID2 1316809861.210000038 328 0.078553915 0.170833333 0.258466005 0.259322882
- MID2 1316809862.210000038 328 0.076922894 0.170833333 0.257082939 0.258250952
- MID2 1316809863.210000038 314 0.086951017 0.163541667 0.257242918 0.258336067
- MID2 1316809864.210000038 329 0.076911926 0.171354167 0.258735895 0.259644032
- MID2 1316809865.210000038 327 0.078639984 0.170312500 0.258810997 0.259809971
- MID2 1316809866.210000038 324 0.086945057 0.168750000 0.277086020 0.278136969
- MID2 1316809867.210000038 327 0.068794012 0.170312500 0.258837938 0.259876013
- MID2 1316809868.210000038 325 0.078707933 0.169270833 0.258872986 0.259994984
- MID2 1316809869.210000038 327 0.078250885 0.170312500 0.258527994 0.259598017
- MID2 1316809870.210000038 330 0.076907873 0.171875000 0.258878946 0.259602070
- MID2 1316809871.210000038 329 0.076912880 0.171354167 0.257941961 0.258913994
- MID2 1316809872.210000038 328 0.076905966 0.170833333 0.257925987 0.258638859
- MID2 1316809873.210000038 326 0.076905012 0.169791667 0.258954048 0.259858847
- MID2 1316809874.210000038 332 0.076905966 0.172916667 0.258980036 0.259701967
- MID2 1316809875.210000038 327 0.068861961 0.170312500 0.259733915 0.260526896
- MID2 1316809876.210000038 391 0.028892040 0.203645833 0.269540071 0.270493984
- MID2 1316809877.210000038 327 0.068918943 0.170312500 0.259079933 0.260105848
- MID2 1316809878.210000038 311 0.086921930 0.161979167 0.257140875 0.258148909
- MID2 1316809879.210000038 327 0.066992998 0.170312500 0.259119034 0.260132074
- MID2 1316809880.210000038 327 0.066994905 0.170312500 0.259140968 0.260091066
- MID2 1316809881.210000038 327 0.076912880 0.170312500 0.258744955 0.259765863
- MID2 1316809882.210000038 327 0.076911926 0.170312500 0.259192944 0.260177851
- MID2 1316809883.210000038 312 0.079050064 0.162500000 0.258745909 0.259762049
- MID2 1316809884.210000038 329 0.067071915 0.171354167 0.257117033 0.258067846
- MID2 1316809885.210000038 326 0.076915026 0.169791667 0.259253979 0.260235071
- MID2 1316809886.210000038 315 0.079120874 0.164062500 0.259279013 0.260218859
- MID2 1316809887.210000038 326 0.076910973 0.169791667 0.259295940 0.260264874
- MID2 1316809888.210000038 328 0.076919079 0.170833333 0.257163048 0.257992983
- MID2 1316809889.210000038 315 0.078219891 0.164062500 0.258347034 0.259341002
- MID2 1316809890.210000038 311 0.078212023 0.161979167 0.258722067 0.259672880
- MID2 1316809891.210000038 311 0.078227043 0.161979167 0.258352995 0.259115934
- MID2 1316809892.210000038 325 0.076912880 0.169270833 0.258411884 0.259306908
- MID2 1316809893.210000038 324 0.078279018 0.168750000 0.258432865 0.259393930
- MID2 1316809894.210000038 325 0.076911926 0.169270833 0.267360926 0.269270897
- MID2 1316809895.210000038 325 0.076911926 0.169270833 0.258481979 0.259526968
- MID2 1316809896.210000038 326 0.076916933 0.169791667 0.258504868 0.259427071
- MID2 1316809897.210000038 325 0.076914072 0.169270833 0.258528948 0.259536028
- MID2 1316809898.210000038 324 0.076911926 0.168750000 0.258950949 0.259882927
- MID2 1316809899.210000038 352 0.028450966 0.183333333 0.257068872 0.257869005
- MID2 1316809900.210000038 324 0.076910973 0.168750000 0.258592844 0.259480953
- MID2 1316809901.210000038 312 0.076915026 0.162500000 0.248290062 0.248966932
- MID2 1316809902.210000038 325 0.076907873 0.169270833 0.258596897 0.259216070
- MID2 1316809903.210000038 313 0.076906919 0.163020833 0.248291969 0.248971939
- MID2 1316809904.210000038 315 0.076910973 0.164062500 0.248766899 0.249953032
- MID2 1316809905.210000038 313 0.076905966 0.163020833 0.248287916 0.248939991
- MID2 1316809906.210000038 388 0.028537989 0.202083333 0.258694887 0.259335995
- MID2 1316809907.210000038 323 0.076906919 0.168229167 0.258717060 0.259482861
- MID2 1316809908.210000038 324 0.076905966 0.168750000 0.258748055 0.259499073
- MID2 1316809909.210000038 324 0.076910973 0.168750000 0.258801937 0.259773016
- MID2 1316809910.210000038 323 0.076914072 0.168229167 0.258817911 0.259713888
- MID2 1316809911.210000038 312 0.076932907 0.162500000 0.247102976 0.247969866
- MID2 1316809912.210000038 311 0.076912880 0.161979167 0.248359919 0.249124050
- MID2 1316809913.210000038 311 0.076914072 0.161979167 0.248323917 0.249124050
- MID2 1316809914.210000038 322 0.076914072 0.167708333 0.258877993 0.259638071
- MID2 1316809915.210000038 323 0.076906919 0.168229167 0.258902073 0.259773970
- MID2 1316809916.210000038 323 0.076906919 0.168229167 0.258959055 0.260052919
- MID2 1316809917.210000038 353 0.030505896 0.183854167 0.258985043 0.259974957
- MID2 1316809918.210000038 321 0.076914072 0.167187500 0.259007931 0.259953022
- MID2 1316809919.210000038 321 0.076910973 0.167187500 0.255054951 0.256033897
- MID2 1316809920.210000038 338 0.066912889 0.176041667 0.259616852 0.260365009
- MID2 1316809921.210000038 310 0.076911926 0.161458333 0.248287916 0.248949051
- MID2 1316809922.210000038 322 0.076905966 0.167708333 0.259057045 0.259692907
- MID2 1316809923.210000038 353 0.016975880 0.183854167 0.259088039 0.259842873
- MID2 1316809924.210000038 340 0.066909075 0.177083333 0.257030010 0.257751942
- MID2 1316809925.210000038 322 0.076907873 0.167708333 0.259135962 0.260143042
- MID2 1316809926.210000038 313 0.086914062 0.163020833 0.259162903 0.259896040
- MID2 1316809927.210000038 322 0.076915026 0.167708333 0.249300957 0.250267029
- MID2 1316809928.210000038 323 0.076915026 0.168229167 0.259124041 0.260024071
- MID2 1316809929.210000038 326 0.076911926 0.169791667 0.267134905 0.268316031
- MID2 1316809930.210000038 322 0.076914072 0.167708333 0.249670982 0.250582933
- MID2 1316809931.210000038 339 0.066963911 0.176562500 0.248290062 0.249014854
- MID2 1316809932.210000038 321 0.076906919 0.167187500 0.258291960 0.259007931
- MID2 1316809933.210000038 343 0.066912889 0.178645833 0.258316040 0.259073019
- MID2 1316809934.210000038 339 0.066907883 0.176562500 0.258334875 0.259042978
- MID2 1316809935.210000038 323 0.076909065 0.168229167 0.258357048 0.259104013
- MID2 1316809936.210000038 386 0.028254986 0.201041667 0.258384943 0.259114981
- MID2 1316809937.210000038 320 0.076914072 0.166666667 0.249122858 0.250115871
- MID2 1316809938.210000038 320 0.076911926 0.166666667 0.257071018 0.258005857
- MID2 1316809939.210000038 337 0.066911936 0.175520833 0.248291016 0.249100924
- MID2 1316809940.210000038 320 0.076909065 0.166666667 0.248802900 0.249520063
- MID2 1316809941.210000038 349 0.028323889 0.181770833 0.258450985 0.259261847
- MID2 1316809942.210000038 339 0.066910982 0.176562500 0.248631954 0.249739885
- MID2 1316809943.210000038 320 0.076911926 0.166666667 0.249032021 0.249920845
+ MID2 1317362275.960000038 339 0.120786905 0.297349405 0.311004877 0.315770864
+ MID2 1317362276.960000038 339 0.120786905 0.297349405 0.311009884 0.312087059
+ MID2 1317362277.960000038 340 0.121535063 0.298618396 0.311007023 0.311739922
+ MID2 1317362278.960000038 342 0.120785952 0.298910952 0.311001062 0.311764956
+ MID2 1317362279.960000038 342 0.120787859 0.298912859 0.312306881 0.313271999
+ MID2 1317362280.960000038 340 0.121617079 0.298700412 0.312254906 0.313040018
+ MID2 1317362281.960000038 342 0.120976925 0.299101925 0.321029902 0.321873903
+ MID2 1317362282.960000038 332 0.102081060 0.274997727 0.281002998 0.281749010
+ MID2 1317362283.960000038 328 0.130850077 0.301683410 0.321539879 0.322449923
+ MID2 1317362284.960000038 343 0.120786905 0.299432739 0.311011076 0.312005997
+ MID2 1317362285.960000038 338 0.120786905 0.296828572 0.311044931 0.312072039
+ MID2 1317362286.960000038 342 0.120800018 0.298925018 0.312247038 0.312986851
+ MID2 1317362287.960000038 334 0.103317976 0.277276309 0.291023970 0.291804075
+ MID2 1317362288.960000038 338 0.120790958 0.296832625 0.311033010 0.311995983
+ MID2 1317362289.960000038 343 0.120785952 0.299431785 0.311006069 0.311807871
+ MID2 1317362290.960000038 327 0.120867014 0.291179514 0.312259912 0.313086033
+ MID2 1317362291.960000038 342 0.120791912 0.298916912 0.311017990 0.311862946
+ MID2 1317362292.960000038 342 0.120791912 0.298916912 0.311002970 0.311737061
+ MID2 1317362293.960000038 329 0.130786896 0.302141062 0.311007023 0.311735868
+ MID2 1317362294.960000038 339 0.120800018 0.297362518 0.311009884 0.311831951
+ MID2 1317362295.960000038 342 0.120785952 0.298910952 0.311022997 0.311702967
+ MID2 1317362296.960000038 327 0.130795956 0.301108456 0.311017990 0.311980009
+ MID2 1317362297.960000038 343 0.120787859 0.299433692 0.311009884 0.311728001
+ MID2 1317362298.960000038 338 0.122115850 0.298157517 0.321325064 0.322681904
+ MID2 1317362299.960000038 326 0.130786896 0.300578562 0.311065912 0.311810970
+ MID2 1317362300.960000038 339 0.120790005 0.297352505 0.311009884 0.311887980
+ MID2 1317362301.960000038 342 0.120786905 0.298911905 0.311006069 0.311694860
+ MID2 1317362302.960000038 326 0.130784988 0.300576655 0.311009884 0.311810017
+ MID2 1317362303.960000038 329 0.130787849 0.302142016 0.311012030 0.311863899
+ MID2 1317362304.960000038 342 0.120800018 0.298925018 0.310988903 0.311750889
+ MID2 1317362305.960000038 342 0.120785952 0.298910952 0.311012983 0.311761856
+ MID2 1317362306.960000038 333 0.100786924 0.274224424 0.281343937 0.283143044
+ MID2 1317362307.960000038 336 0.120790958 0.295790958 0.311120033 0.312434912
+ MID2 1317362308.960000038 343 0.120786905 0.299432739 0.311006069 0.311805964
+ MID2 1317362309.960000038 341 0.120786905 0.298391072 0.311001062 0.311717987
+ MID2 1317362310.960000038 339 0.120790005 0.297352505 0.311001062 0.311742067
+ MID2 1317362311.960000038 340 0.102046967 0.279130300 0.291022062 0.291820049
+ MID2 1317362312.960000038 323 0.130786896 0.299016062 0.311007023 0.311763048
+ MID2 1317362313.960000038 326 0.132047892 0.301839558 0.311004877 0.311701059
+ MID2 1317362314.960000038 343 0.120785952 0.299431785 0.311006069 0.311902046
+ MID2 1317362315.960000038 340 0.120785952 0.297869285 0.310998917 0.311804056
+ MID2 1317362316.960000038 339 0.120796919 0.297359419 0.321233034 0.322872877
+ MID2 1317362317.960000038 343 0.120790005 0.299435838 0.311018944 0.311830997
+ MID2 1317362318.960000038 332 0.100787878 0.273704545 0.280997038 0.281708956
+ MID2 1317362319.960000038 339 0.120789051 0.297351551 0.311009884 0.311873913
+ MID2 1317362320.960000038 343 0.120787859 0.299433692 0.311013937 0.311832905
+ MID2 1317362321.960000038 342 0.120789051 0.298914051 0.312258005 0.312963009
+ MID2 1317362322.960000038 340 0.120787859 0.297871192 0.311015844 0.311805010
+ MID2 1317362323.960000038 343 0.120789051 0.299434884 0.311011076 0.311766863
+ MID2 1317362324.960000038 339 0.120787859 0.297350359 0.311007023 0.311748028
+ MID2 1317362325.960000038 354 0.120785952 0.305160952 0.322260857 0.323051929
+ MID2 1317362326.960000038 334 0.130787849 0.304746183 0.322255850 0.323088884
+ MID2 1317362327.960000038 337 0.122036934 0.297557767 0.311009884 0.311866045
+ MID2 1317362328.960000038 339 0.120786905 0.297349405 0.311011076 0.311811924
+ MID2 1317362329.960000038 339 0.120786905 0.297349405 0.311024904 0.311882973
+ MID2 1317362330.960000038 330 0.100786924 0.272661924 0.281014919 0.281779051
+ MID2 1317362331.960000038 337 0.110857010 0.286377843 0.310997963 0.311724901
+ MID2 1317362332.960000038 343 0.110853910 0.289499744 0.311009884 0.311784029
+ MID2 1317362333.960000038 339 0.120799065 0.297361565 0.311004877 0.311765909
+ MID2 1317362334.960000038 330 0.130787849 0.302662849 0.311001062 0.311766863
+ MID2 1317362335.960000038 379 0.102087021 0.299482854 0.310998917 0.311686993
+ MID2 1317362336.960000038 336 0.132046938 0.307046938 0.322360992 0.323642015
+ MID2 1317362337.960000038 389 0.120787859 0.323392026 0.341253042 0.342056036
+ MID2 1317362338.960000038 332 0.130789042 0.303705708 0.311018944 0.311836958
+ MID2 1317362339.960000038 391 0.120789051 0.324434884 0.342273951 0.343029022
+ MID2 1317362340.960000038 339 0.120786905 0.297349405 0.311002016 0.311866045
+ MID2 1317362341.960000038 339 0.120826960 0.297389460 0.311006069 0.311840057
+ MID2 1317362342.960000038 330 0.100786924 0.272661924 0.282271862 0.283037901
+ MID2 1317362343.960000038 339 0.120786905 0.297349405 0.311009884 0.311723948
+ MID2 1317362344.950000048 336 0.132045984 0.307045984 0.321013927 0.321822882
+ MID2 1317362345.960000038 338 0.120786905 0.296828572 0.311004877 0.311714888
+ MID2 1317362346.950000048 338 0.130785942 0.306827609 0.321007967 0.321774006
+ MID2 1317362347.950000048 343 0.130786896 0.309432729 0.321018934 0.321806908
+ MID2 1317362348.950000048 336 0.130833864 0.305833864 0.321007967 0.321902037
+ MID2 1317362349.950000048 335 0.130787849 0.305267016 0.321007967 0.321693897
+ MID2 1317362350.950000048 343 0.130787849 0.309433683 0.321013927 0.321841002
+ MID2 1317362351.950000048 337 0.130786896 0.306307729 0.321012020 0.321712971
+ MID2 1317362352.950000048 337 0.130789042 0.306309875 0.321009874 0.321902037
+ MID2 1317362353.950000048 331 0.112046003 0.284441837 0.290993929 0.291790962
+ MID2 1317362354.950000048 335 0.130786896 0.305266062 0.321011066 0.321755886
+ MID2 1317362355.950000048 328 0.110786915 0.281620248 0.291013002 0.291741848
+ MID2 1317362356.950000048 335 0.130787849 0.305267016 0.321017981 0.321874857
+ MID2 1317362357.950000048 336 0.130786896 0.305786896 0.320997953 0.321792841
+ MID2 1317362358.950000048 336 0.130785942 0.305785942 0.321001053 0.321775913
+ MID2 1317362359.950000048 329 0.110806942 0.282161109 0.291013002 0.291748047
+ MID2 1317362360.950000048 337 0.130787849 0.306308683 0.321012974 0.321915865
+ MID2 1317362361.950000048 335 0.130787849 0.305267016 0.321027994 0.321846962
+ MID2 1317362362.950000048 337 0.130790949 0.306311782 0.321006060 0.321779966
+ MID2 1317362363.950000048 335 0.130789042 0.305268208 0.320998907 0.321816921
+ MID2 1317362364.950000048 335 0.131278992 0.305758158 0.322366953 0.323838949
+ MID2 1317362365.950000048 334 0.131657839 0.305616172 0.321008921 0.321765900
+ MID2 1317362366.950000048 328 0.110792875 0.281626209 0.291007996 0.291903019
+ MID2 1317362367.950000048 358 0.100786924 0.287245258 0.301033020 0.301836967
+ MID2 1317362368.950000048 335 0.130791903 0.305271069 0.321059942 0.322376013
+ MID2 1317362369.950000048 333 0.130784035 0.304221535 0.311003923 0.311708927
+ MID2 1317362370.950000048 333 0.130991936 0.304429436 0.311022043 0.311867952
+ MID2 1317362371.950000048 327 0.112802982 0.283115482 0.291080952 0.291816950
+ MID2 1317362372.950000048 339 0.130789042 0.307351542 0.321002007 0.321732044
+ MID2 1317362373.950000048 333 0.120861053 0.294298553 0.311002016 0.311717033
+ MID2 1317362374.950000048 333 0.130807877 0.304245377 0.321038961 0.321925879
diff --git a/www/performance/profile7.txt b/www/performance/profile7.txt
index b171e8e7..07bff771 100644
--- a/www/performance/profile7.txt
+++ b/www/performance/profile7.txt
@@ -1,102 +1,102 @@
-# Analyzed latency, 2011-09-23T22:32:37, SiRF binary, 9600 8N1, cycle 1s
+# Analyzed latency, 2011-09-30T05:53:13, SiRF binary, 9600 8N1, cycle 1s
#- Tag - ----- Fix time ----- - Chars - - Latency - -- RS232 -- --Analysis- --- Recv --
- MID2 1316817057.779999971 358 0.026911020 0.372916667 0.457086086 0.491603136
- MID2 1316817058.779999971 341 0.076910973 0.355208333 0.457087994 0.458806992
- MID2 1316817059.779999971 341 0.076911926 0.355208333 0.457077980 0.458070040
- MID2 1316817060.779999971 341 0.076916933 0.355208333 0.457095146 0.458158970
- MID2 1316817061.779999971 340 0.076920033 0.354166667 0.457149982 0.458240986
- MID2 1316817062.779999971 340 0.076910973 0.354166667 0.457077980 0.457906008
- MID2 1316817063.779999971 338 0.078161955 0.352083333 0.459304094 0.460211992
- MID2 1316817064.779999971 341 0.076913118 0.355208333 0.458320141 0.459108114
- MID2 1316817065.779999971 331 0.086944103 0.344791667 0.457334042 0.458647013
- MID2 1316817066.779999971 339 0.078233957 0.353125000 0.458400965 0.459445953
- MID2 1316817067.779999971 338 0.078238010 0.352083333 0.457489967 0.458286047
- MID2 1316817068.779999971 338 0.078274012 0.352083333 0.467080116 0.468117952
- MID2 1316817069.779999971 338 0.078872919 0.352083333 0.458477974 0.459487915
- MID2 1316817070.779999971 341 0.078323126 0.355208333 0.458871126 0.459948063
- MID2 1316817071.779999971 338 0.078349113 0.352083333 0.458518982 0.459512949
- MID2 1316817072.779999971 338 0.078366041 0.352083333 0.458500147 0.459311008
- MID2 1316817073.779999971 338 0.078385115 0.352083333 0.458519936 0.459455013
- MID2 1316817074.779999971 339 0.076911926 0.353125000 0.458343983 0.459159136
- MID2 1316817075.779999971 355 0.028428078 0.369791667 0.458616018 0.459609032
- MID2 1316817076.779999971 340 0.076905012 0.354166667 0.458586931 0.459468126
- MID2 1316817077.779999971 340 0.076919079 0.354166667 0.458616018 0.459414005
- MID2 1316817078.779999971 340 0.076905012 0.354166667 0.459538937 0.460380077
- MID2 1316817079.779999971 340 0.076915979 0.354166667 0.457075119 0.458045006
- MID2 1316817080.779999971 341 0.076913118 0.355208333 0.460694075 0.461545944
- MID2 1316817081.779999971 337 0.079065084 0.351041667 0.458739042 0.459917068
- MID2 1316817082.779999971 335 0.078594923 0.348958333 0.457185030 0.458231926
- MID2 1316817083.779999971 336 0.078215122 0.350000000 0.459994078 0.460995913
- MID2 1316817084.779999971 330 0.086930990 0.343750000 0.457063913 0.458643913
- MID2 1316817085.779999971 332 0.086910963 0.345833333 0.457082033 0.457906008
- MID2 1316817086.779999971 330 0.086906910 0.343750000 0.457039118 0.457871914
- MID2 1316817087.779999971 337 0.078696012 0.351041667 0.459748983 0.460534096
- MID2 1316817088.779999971 338 0.076906919 0.352083333 0.458848000 0.459640026
- MID2 1316817089.779999971 338 0.076913118 0.352083333 0.457046032 0.457813025
- MID2 1316817090.779999971 330 0.086947918 0.343750000 0.460807085 0.461624146
- MID2 1316817091.779999971 337 0.078788042 0.351041667 0.467072964 0.467911005
- MID2 1316817092.779999971 338 0.076910973 0.352083333 0.458945990 0.459752083
- MID2 1316817093.779999971 337 0.078679085 0.351041667 0.457225084 0.458287001
- MID2 1316817094.779999971 339 0.076931953 0.353125000 0.457101107 0.458578110
- MID2 1316817095.779999971 340 0.076913118 0.354166667 0.457245111 0.458585978
- MID2 1316817096.779999971 338 0.076916933 0.352083333 0.459028959 0.459851980
- MID2 1316817097.779999971 336 0.078921080 0.350000000 0.459051132 0.459841013
- MID2 1316817098.769999981 337 0.088943005 0.351041667 0.469279051 0.470462084
- MID2 1316817099.769999981 336 0.089967012 0.350000000 0.469140053 0.470257044
- MID2 1316817100.769999981 336 0.088985920 0.350000000 0.469118118 0.469962120
- MID2 1316817101.769999981 338 0.086906910 0.352083333 0.469139099 0.469969034
- MID2 1316817102.769999981 336 0.090025902 0.350000000 0.468900919 0.469758034
- MID2 1316817103.769999981 335 0.088805914 0.348958333 0.467109919 0.468117952
- MID2 1316817104.769999981 335 0.088586092 0.348958333 0.467067957 0.467921972
- MID2 1316817105.769999981 330 0.096910000 0.343750000 0.467091084 0.467924118
- MID2 1316817106.769999981 337 0.089118004 0.351041667 0.467036963 0.467854023
- MID2 1316817107.769999981 334 0.089136124 0.347916667 0.467071056 0.468014002
- MID2 1316817108.769999981 337 0.086914062 0.351041667 0.467072964 0.468980074
- MID2 1316817109.769999981 337 0.086914062 0.351041667 0.467072010 0.468027115
- MID2 1316817110.769999981 338 0.086920023 0.352083333 0.467080116 0.468123913
- MID2 1316817111.769999981 336 0.078232050 0.350000000 0.468358040 0.469132900
- MID2 1316817112.769999981 335 0.088244915 0.348958333 0.468421936 0.469456911
- MID2 1316817113.769999981 328 0.096911907 0.341666667 0.468643904 0.469433069
- MID2 1316817114.769999981 336 0.086919069 0.350000000 0.467092037 0.467947006
- MID2 1316817115.769999981 337 0.086996078 0.351041667 0.469334126 0.470109940
- MID2 1316817116.769999981 339 0.086966038 0.353125000 0.467030048 0.467802048
- MID2 1316817117.769999981 334 0.088356018 0.347916667 0.467037916 0.467847109
- MID2 1316817118.769999981 337 0.086914062 0.351041667 0.468513012 0.469352007
- MID2 1316817119.769999981 334 0.088397980 0.347916667 0.468575001 0.469583035
- MID2 1316817120.769999981 333 0.088433027 0.346875000 0.468601942 0.469656944
- MID2 1316817121.769999981 334 0.089452028 0.347916667 0.468615055 0.469587088
- MID2 1316817122.769999981 334 0.088477135 0.347916667 0.468598127 0.469523907
- MID2 1316817123.769999981 337 0.086906910 0.351041667 0.467077017 0.468039036
- MID2 1316817124.769999981 335 0.086914062 0.348958333 0.469388962 0.470211983
- MID2 1316817125.769999981 336 0.086910963 0.350000000 0.468663931 0.469411135
- MID2 1316817126.769999981 336 0.086914062 0.350000000 0.467093945 0.468025923
- MID2 1316817127.769999981 338 0.087007046 0.352083333 0.468528032 0.469381094
- MID2 1316817128.769999981 339 0.066934109 0.353125000 0.447508097 0.449511051
- MID2 1316817129.769999981 338 0.066915035 0.352083333 0.447035074 0.447849989
- MID2 1316817130.769999981 343 0.066911936 0.357291667 0.447403908 0.448971987
- MID2 1316817131.769999981 338 0.066915035 0.352083333 0.447376966 0.448381901
- MID2 1316817132.769999981 338 0.066913128 0.352083333 0.447080135 0.448148966
- MID2 1316817133.769999981 337 0.066911936 0.351041667 0.447076082 0.448086977
- MID2 1316817134.769999981 338 0.066915035 0.352083333 0.447077036 0.448398113
- MID2 1316817135.769999981 337 0.066913128 0.351041667 0.447047949 0.447873116
- MID2 1316817136.769999981 339 0.066914082 0.353125000 0.447726011 0.449131966
- MID2 1316817137.769999981 338 0.066951036 0.352083333 0.447148085 0.448971987
- MID2 1316817138.769999981 337 0.066913128 0.351041667 0.447080135 0.448154926
- MID2 1316817139.769999981 339 0.066910982 0.353125000 0.447073936 0.448051929
- MID2 1316817140.769999981 337 0.066910982 0.351041667 0.447397947 0.448445082
- MID2 1316817141.769999981 337 0.066910982 0.351041667 0.447075129 0.448050976
- MID2 1316817142.769999981 336 0.066911936 0.350000000 0.447077990 0.448118925
- MID2 1316817143.769999981 336 0.066914082 0.350000000 0.447076082 0.448036909
- MID2 1316817144.769999981 337 0.056984901 0.351041667 0.447145939 0.448188066
- MID2 1316817145.769999981 339 0.056988001 0.353125000 0.447071075 0.448014975
- MID2 1316817146.769999981 339 0.066926956 0.353125000 0.447415113 0.448514938
- MID2 1316817147.769999981 337 0.067071915 0.351041667 0.447071075 0.448049068
- MID2 1316817148.769999981 337 0.066913128 0.351041667 0.447073936 0.448096991
- MID2 1316817149.769999981 337 0.066916943 0.351041667 0.447245121 0.448221922
- MID2 1316817150.769999981 337 0.066913128 0.351041667 0.447518110 0.448560953
- MID2 1316817151.769999981 336 0.066913128 0.350000000 0.447073936 0.448063135
- MID2 1316817152.769999981 336 0.066910982 0.350000000 0.447294950 0.448343992
- MID2 1316817153.769999981 336 0.066919088 0.350000000 0.447319031 0.448297977
- MID2 1316817154.769999981 336 0.066911936 0.350000000 0.447071075 0.448086977
- MID2 1316817155.769999981 336 0.066914082 0.350000000 0.447372913 0.448369980
- MID2 1316817156.769999981 336 0.066915035 0.350000000 0.447389126 0.448779106
+ MID2 1317362018.970000029 343 0.120789051 0.478080718 0.501016855 0.501831055
+ MID2 1317362019.970000029 339 0.100787878 0.453912878 0.481019974 0.481862068
+ MID2 1317362020.970000029 335 0.130788088 0.479746421 0.511008024 0.511754990
+ MID2 1317362021.970000029 343 0.120785952 0.478077618 0.511543989 0.512351036
+ MID2 1317362022.970000029 335 0.130786896 0.479745229 0.511568069 0.512320995
+ MID2 1317362023.970000029 337 0.100787878 0.451829545 0.481081009 0.481924057
+ MID2 1317362024.970000029 340 0.122050047 0.476216714 0.502279043 0.503143072
+ MID2 1317362025.970000029 336 0.130828857 0.480828857 0.511041880 0.511842966
+ MID2 1317362026.970000029 343 0.120785952 0.478077618 0.511024952 0.511844873
+ MID2 1317362027.970000029 397 0.120781898 0.534323565 0.571017027 0.571892023
+ MID2 1317362028.970000029 343 0.120804071 0.478095738 0.502250910 0.502964020
+ MID2 1317362029.970000029 340 0.120786905 0.474953572 0.501013041 0.501826048
+ MID2 1317362030.960000038 341 0.110787868 0.465996202 0.491030931 0.492050886
+ MID2 1317362031.960000038 338 0.142051935 0.494135269 0.521010876 0.521810055
+ MID2 1317362032.960000038 341 0.130786896 0.485995229 0.511008978 0.511765957
+ MID2 1317362033.960000038 342 0.132035017 0.488285017 0.511012077 0.511920929
+ MID2 1317362034.960000038 343 0.130789995 0.488081662 0.511004925 0.511715889
+ MID2 1317362035.960000038 340 0.130789042 0.484955708 0.511013985 0.511827946
+ MID2 1317362036.960000038 339 0.132039070 0.485164070 0.511008978 0.511870861
+ MID2 1317362037.960000038 340 0.132041931 0.486208598 0.511075974 0.511970043
+ MID2 1317362038.970000029 341 0.120785952 0.475994285 0.501008034 0.501749992
+ MID2 1317362039.970000029 342 0.122052908 0.478302908 0.501013041 0.501932859
+ MID2 1317362040.960000038 335 0.141808987 0.490767320 0.521012068 0.521872997
+ MID2 1317362041.970000029 335 0.100830078 0.449788411 0.482017994 0.482805014
+ MID2 1317362042.970000029 342 0.120786905 0.477036905 0.501048088 0.501857996
+ MID2 1317362043.970000029 343 0.120800018 0.478091685 0.511004925 0.511775970
+ MID2 1317362044.960000038 341 0.120858908 0.476067241 0.511007071 0.511749983
+ MID2 1317362045.960000038 338 0.130905867 0.482989200 0.521012068 0.521829844
+ MID2 1317362046.960000038 343 0.130787849 0.488079516 0.521005869 0.521726847
+ MID2 1317362047.970000029 341 0.120827913 0.476036247 0.501014948 0.501883984
+ MID2 1317362048.970000029 340 0.121152878 0.475319544 0.502281904 0.503182888
+ MID2 1317362049.970000029 343 0.120786905 0.478078572 0.511002064 0.511765003
+ MID2 1317362050.970000029 343 0.120790005 0.478081671 0.511014938 0.511759043
+ MID2 1317362051.970000029 341 0.120789051 0.475997384 0.501026869 0.501878023
+ MID2 1317362052.960000038 343 0.130783081 0.488074748 0.511333942 0.512076855
+ MID2 1317362053.970000029 340 0.120784998 0.474951665 0.501019001 0.501827002
+ MID2 1317362054.970000029 336 0.100787878 0.450787878 0.481247902 0.481981993
+ MID2 1317362055.960000038 341 0.130786896 0.485995229 0.511106014 0.512075901
+ MID2 1317362056.970000029 340 0.120816946 0.474983613 0.501019001 0.501765966
+ MID2 1317362057.970000029 340 0.120786905 0.474953572 0.501012087 0.501905918
+ MID2 1317362058.960000038 342 0.130787849 0.487037849 0.510988951 0.511698961
+ MID2 1317362059.960000038 341 0.130785942 0.485994275 0.511012077 0.511818886
+ MID2 1317362060.960000038 343 0.130800009 0.488091675 0.521012068 0.521770954
+ MID2 1317362061.960000038 340 0.130786896 0.484953562 0.511008978 0.511803865
+ MID2 1317362062.960000038 340 0.130786896 0.484953562 0.511009932 0.511864901
+ MID2 1317362063.960000038 340 0.130785942 0.484952609 0.511040926 0.511946917
+ MID2 1317362064.960000038 341 0.130786896 0.485995229 0.511012077 0.511879921
+ MID2 1317362065.960000038 335 0.110790014 0.459748348 0.492259979 0.493052006
+ MID2 1317362066.960000038 339 0.132035971 0.485160971 0.511030912 0.511790991
+ MID2 1317362067.960000038 336 0.112038851 0.462038851 0.491008997 0.491806984
+ MID2 1317362068.960000038 340 0.130786896 0.484953562 0.511014938 0.511909008
+ MID2 1317362069.960000038 334 0.140788078 0.488704745 0.521021843 0.521975994
+ MID2 1317362070.960000038 340 0.130789042 0.484955708 0.511013985 0.511739969
+ MID2 1317362071.960000038 333 0.110789061 0.457664061 0.491009951 0.491823912
+ MID2 1317362072.960000038 339 0.130789042 0.483914042 0.511008024 0.511721849
+ MID2 1317362073.960000038 340 0.130791903 0.484958569 0.511005878 0.511775017
+ MID2 1317362074.960000038 339 0.130785942 0.483910942 0.511007071 0.511744976
+ MID2 1317362075.960000038 339 0.130784035 0.483909035 0.512573957 0.514559984
+ MID2 1317362076.960000038 340 0.130789042 0.484955708 0.511029005 0.511849880
+ MID2 1317362077.960000038 339 0.130786896 0.483911896 0.511005878 0.511801958
+ MID2 1317362078.960000038 335 0.110785961 0.459744294 0.491065025 0.491951942
+ MID2 1317362079.960000038 338 0.110784054 0.462867387 0.491004944 0.491808891
+ MID2 1317362080.960000038 339 0.130786896 0.483911896 0.511025906 0.511834860
+ MID2 1317362081.960000038 338 0.130787849 0.482871183 0.511016846 0.511937857
+ MID2 1317362082.960000038 339 0.132111073 0.485236073 0.511013031 0.511759043
+ MID2 1317362083.960000038 341 0.100794077 0.456002410 0.491035938 0.491880894
+ MID2 1317362084.960000038 337 0.130864859 0.481906525 0.511103868 0.512131929
+ MID2 1317362085.960000038 340 0.120863914 0.475030581 0.511012077 0.511806011
+ MID2 1317362086.960000038 339 0.120889902 0.474014902 0.511012077 0.511870861
+ MID2 1317362087.960000038 339 0.130787849 0.483912849 0.511008978 0.511934996
+ MID2 1317362088.960000038 340 0.130786896 0.484953562 0.511009932 0.511765957
+ MID2 1317362089.960000038 339 0.130801916 0.483926916 0.511005878 0.511788845
+ MID2 1317362090.960000038 337 0.130787849 0.481829516 0.511003017 0.511725903
+ MID2 1317362091.960000038 340 0.130786896 0.484953562 0.511007071 0.511795044
+ MID2 1317362092.960000038 339 0.130787849 0.483912849 0.511005878 0.511730909
+ MID2 1317362093.960000038 339 0.130812883 0.483937883 0.511000872 0.511760950
+ MID2 1317362094.960000038 339 0.131744862 0.484869862 0.511014938 0.511767864
+ MID2 1317362095.960000038 333 0.110786915 0.457661915 0.491008997 0.492532969
+ MID2 1317362096.960000038 337 0.130786896 0.481828562 0.511030912 0.511941910
+ MID2 1317362097.960000038 340 0.130807877 0.484974543 0.511020899 0.511908054
+ MID2 1317362098.960000038 339 0.130786896 0.483911896 0.511010885 0.511756897
+ MID2 1317362099.960000038 339 0.132050037 0.485175037 0.510990858 0.511811018
+ MID2 1317362100.960000038 340 0.130789995 0.484956662 0.511008978 0.511880875
+ MID2 1317362101.960000038 336 0.130785942 0.480785942 0.511013985 0.511821985
+ MID2 1317362102.960000038 336 0.110785961 0.460785961 0.491010904 0.491759062
+ MID2 1317362103.960000038 334 0.110789061 0.458705727 0.491195917 0.492439032
+ MID2 1317362104.960000038 338 0.130787849 0.482871183 0.511007071 0.511839867
+ MID2 1317362105.960000038 335 0.140789032 0.489747365 0.521018028 0.521813869
+ MID2 1317362106.960000038 338 0.130787849 0.482871183 0.511008978 0.511757851
+ MID2 1317362107.960000038 337 0.130786896 0.481828562 0.511002064 0.511775017
+ MID2 1317362108.960000038 336 0.130786896 0.480786896 0.511008978 0.511755943
+ MID2 1317362109.960000038 338 0.132061005 0.484144338 0.511016846 0.511821032
+ MID2 1317362110.960000038 337 0.130787849 0.481829516 0.511003017 0.511718035
+ MID2 1317362111.960000038 337 0.130789042 0.481830708 0.510994911 0.511780977
+ MID2 1317362112.960000038 338 0.130784988 0.482868322 0.511009932 0.511770010
+ MID2 1317362113.960000038 341 0.100785971 0.455994304 0.481015921 0.481806040
+ MID2 1317362114.960000038 337 0.132050037 0.483091704 0.511040926 0.511865854
+ MID2 1317362115.960000038 335 0.130787849 0.479746183 0.511004925 0.511795998
+ MID2 1317362116.960000038 336 0.130791903 0.480791903 0.511021852 0.511919022
+ MID2 1317362117.960000038 337 0.130784988 0.481826655 0.511013031 0.511821032
diff --git a/www/performance/profile8.txt b/www/performance/profile8.txt
index 35d2a6e6..6415caff 100644
--- a/www/performance/profile8.txt
+++ b/www/performance/profile8.txt
@@ -1,102 +1,102 @@
-# Analyzed latency, 2011-09-24T20:57:31, Generic NMEA, 9600 8N1, cycle 1s
+# Analyzed latency, 2011-09-30T06:43:37, Generic NMEA, 9600 8N1, cycle 1s
#- Tag - ----- Fix time ----- - Chars - - Latency - -- RS232 -- --Analysis- --- Recv --
- RMC 1316897851.924999952 185 0.041912079 0.192708333 0.252104998 0.323405027
- RMC 1316897852.924999952 185 0.041919947 0.192708333 0.252122164 0.254208088
- RMC 1316897853.924000025 185 0.042912006 0.192708333 0.253100872 0.254040003
- RMC 1316897854.924000025 356 0.042913914 0.370833333 0.443109035 0.444084883
- RMC 1316897855.924000025 185 0.042912006 0.192708333 0.253109932 0.254047871
- RMC 1316897856.924000025 188 0.042917013 0.195833333 0.253105879 0.254076958
- RMC 1316897857.924000025 185 0.042913914 0.192708333 0.253162861 0.254109859
- RMC 1316897858.924000025 185 0.042927980 0.192708333 0.253122091 0.254106998
- RMC 1316897859.924000025 356 0.042912006 0.370833333 0.443312883 0.444289923
- RMC 1316897860.924000025 184 0.044230938 0.191666667 0.253104925 0.254122019
- RMC 1316897861.924000025 187 0.042912006 0.194791667 0.253108025 0.254709959
- RMC 1316897862.924000025 185 0.042912006 0.192708333 0.253099918 0.254127026
- RMC 1316897863.924000025 184 0.042911053 0.191666667 0.253118038 0.254069090
- RMC 1316897864.924000025 356 0.042912960 0.370833333 0.443103075 0.444082022
- RMC 1316897865.924000025 199 0.044167042 0.207291667 0.263103008 0.264061928
- RMC 1316897866.924000025 191 0.052975893 0.198958333 0.263062954 0.264314890
- RMC 1316897867.924000025 190 0.052917004 0.197916667 0.263109922 0.264051914
- RMC 1316897868.924000025 190 0.052910089 0.197916667 0.263114929 0.264131069
- RMC 1316897869.923000097 362 0.053911924 0.377083333 0.464136839 0.465076923
- RMC 1316897870.923000097 193 0.053911924 0.201041667 0.264145851 0.265129805
- RMC 1316897871.923000097 188 0.053965807 0.195833333 0.264083862 0.264829874
- RMC 1316897872.923000097 190 0.053910017 0.197916667 0.264063835 0.264848948
- RMC 1316897873.923000097 190 0.053941965 0.197916667 0.266104937 0.267050982
- RMC 1316897874.923000097 361 0.053918839 0.376041667 0.464155912 0.465156794
- RMC 1316897875.923000097 190 0.053931952 0.197916667 0.264360905 0.265516996
- RMC 1316897876.923000097 190 0.053975821 0.197916667 0.274086952 0.274906874
- RMC 1316897877.923000097 191 0.044003963 0.198958333 0.264122009 0.265064001
- RMC 1316897878.923000097 189 0.046137810 0.196875000 0.274199009 0.275206804
- RMC 1316897879.923000097 361 0.053910017 0.376041667 0.464067936 0.464816809
- RMC 1316897880.923000097 190 0.053952932 0.197916667 0.264064789 0.265493870
- RMC 1316897881.923000097 190 0.053954840 0.197916667 0.264065981 0.264812946
- RMC 1316897882.923000097 191 0.053911924 0.198958333 0.264110804 0.265094995
- RMC 1316897883.923000097 189 0.053929806 0.196875000 0.264145851 0.265079021
- RMC 1316897884.923000097 370 0.043934822 0.385416667 0.464109898 0.464896917
- RMC 1316897885.923000097 190 0.053913832 0.197916667 0.264117956 0.265067816
- RMC 1316897886.921999931 183 0.064932108 0.190625000 0.265110016 0.266093969
- RMC 1316897887.921999931 190 0.054913044 0.197916667 0.275110006 0.276039124
- RMC 1316897888.921999931 191 0.054931164 0.198958333 0.265110970 0.266088009
- RMC 1316897889.921999931 362 0.054913998 0.377083333 0.465106010 0.467010975
- RMC 1316897890.921999931 198 0.046270132 0.206250000 0.265102148 0.266070127
- RMC 1316897891.921999931 199 0.046168089 0.207291667 0.265136003 0.266062975
- RMC 1316897892.921999931 199 0.045319080 0.207291667 0.265103102 0.266055107
- RMC 1316897893.921999931 199 0.046188116 0.207291667 0.265186071 0.266204119
- RMC 1316897894.921999931 370 0.046174049 0.385416667 0.465109110 0.466051102
- RMC 1316897895.921999931 194 0.054919004 0.202083333 0.275110960 0.276036978
- RMC 1316897896.921999931 197 0.054911137 0.205208333 0.275102139 0.276043177
- RMC 1316897897.921999931 199 0.046161175 0.207291667 0.265103102 0.265993118
- RMC 1316897898.921999931 199 0.046226025 0.207291667 0.265110016 0.266093969
- RMC 1316897899.921999931 365 0.054912090 0.380208333 0.465110064 0.466026068
- RMC 1316897900.921999931 199 0.044912100 0.207291667 0.265104055 0.266069174
- RMC 1316897901.921999931 192 0.054912090 0.200000000 0.265104055 0.266009092
- RMC 1316897902.921000004 189 0.065908909 0.196875000 0.266104937 0.267081976
- RMC 1316897903.921000004 199 0.046015024 0.207291667 0.266102076 0.267158031
- RMC 1316897904.921000004 360 0.055907011 0.375000000 0.466156960 0.466969013
- RMC 1316897905.921000004 198 0.045907021 0.206250000 0.266227961 0.267235994
- RMC 1316897906.921000004 199 0.045913935 0.207291667 0.266119957 0.267107964
- RMC 1316897907.921000004 199 0.047241926 0.207291667 0.266182899 0.267370939
- RMC 1316897908.921000004 199 0.045917034 0.207291667 0.266099930 0.267112970
- RMC 1316897909.921000004 361 0.055918932 0.376041667 0.466080904 0.466830969
- RMC 1316897910.921000004 188 0.056437016 0.195833333 0.266172886 0.267199993
- RMC 1316897911.921000004 189 0.059950113 0.196875000 0.266133070 0.267101049
- RMC 1316897912.921000004 181 0.065926075 0.188541667 0.266128063 0.267143965
- RMC 1316897913.921000004 190 0.055913925 0.197916667 0.266108990 0.267051935
- RMC 1316897914.921000004 361 0.055917025 0.376041667 0.466103077 0.467114925
- RMC 1316897915.921000004 190 0.055912971 0.197916667 0.266110897 0.267122984
- RMC 1316897916.921000004 189 0.066400051 0.196875000 0.266105890 0.267179012
- RMC 1316897917.921000004 189 0.055917025 0.196875000 0.266108036 0.267111063
- RMC 1316897918.920000076 181 0.066917896 0.188541667 0.267107964 0.268157959
- RMC 1316897919.920000076 352 0.067001820 0.366666667 0.477114916 0.478127003
- RMC 1316897920.920000076 181 0.066912889 0.188541667 0.267174959 0.268455982
- RMC 1316897921.920000076 182 0.056990862 0.189583333 0.268657923 0.269657850
- RMC 1316897922.920000076 182 0.066926003 0.189583333 0.267132998 0.268203974
- RMC 1316897923.920000076 189 0.058167934 0.196875000 0.267104864 0.268100977
- RMC 1316897924.920000076 359 0.066959858 0.373958333 0.467106819 0.468145847
- RMC 1316897925.920000076 189 0.066916943 0.196875000 0.268608809 0.269618034
- RMC 1316897926.920000076 194 0.056905031 0.202083333 0.277052879 0.277890921
- RMC 1316897927.920000076 189 0.056905985 0.196875000 0.267064810 0.267876863
- RMC 1316897928.920000076 188 0.056905985 0.195833333 0.267108917 0.268180847
- RMC 1316897929.920000076 370 0.046911955 0.385416667 0.467125893 0.468149900
- RMC 1316897930.920000076 197 0.048159838 0.205208333 0.267442942 0.268431902
- RMC 1316897931.920000076 188 0.056907892 0.195833333 0.267074823 0.267833948
- RMC 1316897932.920000076 187 0.056911945 0.194791667 0.267056942 0.267850876
- RMC 1316897933.920000076 188 0.056910038 0.195833333 0.267107010 0.268038988
- RMC 1316897934.920000076 368 0.046912909 0.383333333 0.457110882 0.458112001
- RMC 1316897935.918999910 196 0.047913074 0.204166667 0.268105984 0.269031048
- RMC 1316897936.918999910 196 0.047913074 0.204166667 0.268113136 0.269090176
- RMC 1316897937.918999910 196 0.047912121 0.204166667 0.268125057 0.269052029
- RMC 1316897938.918999910 196 0.047914982 0.204166667 0.268105030 0.269077063
- RMC 1316897939.918999910 370 0.047913074 0.385416667 0.468095064 0.468839169
- RMC 1316897940.918999910 194 0.049410105 0.202083333 0.268066168 0.268841028
- RMC 1316897941.918999910 187 0.049442053 0.194791667 0.271138191 0.272047043
- RMC 1316897942.918999910 186 0.067986012 0.193750000 0.268471003 0.269448042
- RMC 1316897943.918999910 187 0.049487114 0.194791667 0.273059130 0.274183035
- RMC 1316897944.918999910 357 0.057934046 0.371875000 0.468114138 0.469089985
- RMC 1316897945.918999910 186 0.057928085 0.193750000 0.268105984 0.269042015
- RMC 1316897946.918999910 196 0.049556017 0.204166667 0.269680023 0.270914078
- RMC 1316897947.918999910 187 0.057922125 0.194791667 0.268120050 0.269289017
- RMC 1316897948.918999910 186 0.057914972 0.193750000 0.270905972 0.271879196
- RMC 1316897949.918999910 354 0.047921181 0.368750000 0.450472116 0.451369047
- RMC 1316897950.918999910 182 0.049160004 0.189583333 0.258115053 0.259095192
+ RMC 1317365018.907000065 198 0.063787937 0.270037937 0.285295010 0.290180922
+ RMC 1317365019.907000065 198 0.133827925 0.340077925 0.354048014 0.355290890
+ RMC 1317365020.907000065 200 0.135617971 0.343951305 0.354040861 0.354965925
+ RMC 1317365021.907000065 193 0.133787870 0.334829537 0.354051828 0.355003834
+ RMC 1317365022.907000065 376 0.135121822 0.526788489 0.564038992 0.564972878
+ RMC 1317365023.907000065 191 0.093791962 0.292750295 0.304045916 0.305083036
+ RMC 1317365024.907000065 190 0.125713825 0.323630492 0.334063053 0.335098982
+ RMC 1317365025.907000065 198 0.103791952 0.310041952 0.324041843 0.325112820
+ RMC 1317365026.907000065 192 0.113804817 0.313804817 0.324041843 0.325070858
+ RMC 1317365027.905999899 381 0.104794025 0.501669025 0.535078049 0.536077023
+ RMC 1317365028.905999899 196 0.104793072 0.308959738 0.326292038 0.327264071
+ RMC 1317365029.905999899 196 0.094851017 0.299017684 0.325041056 0.326122999
+ RMC 1317365030.905999899 195 0.076040030 0.279165030 0.295055151 0.296079159
+ RMC 1317365031.905999899 197 0.104795218 0.310003551 0.325042009 0.326103210
+ RMC 1317365032.905999899 380 0.105216026 0.501049360 0.536300182 0.537355185
+ RMC 1317365033.905999899 196 0.104789019 0.308955685 0.325044155 0.326108217
+ RMC 1317365034.905999899 196 0.104788065 0.308954732 0.325043201 0.326050997
+ RMC 1317365035.905999899 200 0.106048107 0.314381440 0.326295137 0.327327013
+ RMC 1317365036.905999899 196 0.104788065 0.308954732 0.325384140 0.326354027
+ RMC 1317365037.905999899 383 0.104790211 0.503748544 0.536291122 0.537281990
+ RMC 1317365038.905999899 196 0.104797125 0.308963792 0.325038195 0.325985193
+ RMC 1317365039.905999899 196 0.105074167 0.309240834 0.325046062 0.326109171
+ RMC 1317365040.905999899 198 0.104787111 0.311037111 0.325037003 0.326061010
+ RMC 1317365041.905999899 200 0.074788094 0.283121427 0.295047045 0.296121120
+ RMC 1317365042.905999899 381 0.104789019 0.501664019 0.535087109 0.536026001
+ RMC 1317365043.904999971 196 0.105787039 0.309953705 0.326040983 0.327105045
+ RMC 1317365044.904999971 197 0.097052097 0.302260431 0.316036940 0.317059994
+ RMC 1317365045.904999971 200 0.106885910 0.315219243 0.326046944 0.327134132
+ RMC 1317365046.904999971 196 0.105786085 0.309952752 0.326046944 0.327072144
+ RMC 1317365047.904999971 379 0.075787067 0.470578734 0.506045103 0.507064104
+ RMC 1317365048.904999971 195 0.105787992 0.308912992 0.326039076 0.327059984
+ RMC 1317365049.904999971 196 0.105786085 0.309952752 0.326038122 0.327096939
+ RMC 1317365050.904999971 193 0.115787983 0.316829650 0.326040030 0.327073097
+ RMC 1317365051.904999971 199 0.095787048 0.303078715 0.316045046 0.317116976
+ RMC 1317365052.904999971 382 0.115793943 0.513710610 0.546042919 0.547039986
+ RMC 1317365053.904999971 196 0.115787983 0.319954650 0.336045027 0.337120056
+ RMC 1317365054.904999971 197 0.085787058 0.290995391 0.306051970 0.307040930
+ RMC 1317365055.904999971 198 0.117046118 0.323296118 0.336040974 0.337089062
+ RMC 1317365056.904999971 195 0.125790119 0.328915119 0.346050024 0.347079039
+ RMC 1317365057.904999971 381 0.125800133 0.522675133 0.556447983 0.557600975
+ RMC 1317365058.904999971 198 0.125793934 0.332043934 0.346092939 0.347089052
+ RMC 1317365059.904999971 197 0.125807047 0.331015380 0.347181082 0.348305941
+ RMC 1317365060.904000044 197 0.128048897 0.333257230 0.347050905 0.348078966
+ RMC 1317365061.904000044 196 0.126792908 0.330959574 0.347053051 0.348108053
+ RMC 1317365062.904000044 381 0.128100872 0.524975872 0.557047844 0.558099031
+ RMC 1317365063.904000044 198 0.128042936 0.334292936 0.347056866 0.348114967
+ RMC 1317365064.904000044 197 0.126796961 0.332005294 0.347055912 0.348080873
+ RMC 1317365065.904000044 197 0.096791029 0.301999362 0.317049026 0.318089008
+ RMC 1317365066.904000044 194 0.096791029 0.298874362 0.317049026 0.318064928
+ RMC 1317365067.904000044 383 0.126787901 0.525746234 0.557034969 0.558003902
+ RMC 1317365068.904000044 203 0.138771057 0.350229390 0.367040873 0.368074894
+ RMC 1317365069.904000044 198 0.136874914 0.343124914 0.357051849 0.358108997
+ RMC 1317365070.904000044 197 0.138814926 0.344023259 0.357058048 0.358065844
+ RMC 1317365071.904000044 196 0.096855879 0.301022545 0.327051878 0.328099012
+ RMC 1317365072.904000044 380 0.136800051 0.532633384 0.567041874 0.568057060
+ RMC 1317365073.904000044 199 0.136790991 0.344082657 0.357053041 0.358108044
+ RMC 1317365074.904000044 196 0.138332844 0.342499510 0.357049942 0.358084917
+ RMC 1317365075.904000044 199 0.136790991 0.344082657 0.357048988 0.358134985
+ RMC 1317365076.903000116 198 0.139041901 0.345291901 0.358050823 0.358963966
+ RMC 1317365077.903000116 382 0.137995958 0.535912625 0.568046808 0.569079876
+ RMC 1317365078.903000116 195 0.107791901 0.310916901 0.328022957 0.328929901
+ RMC 1317365079.903000116 198 0.139035940 0.345285940 0.358052969 0.359160900
+ RMC 1317365080.903000116 201 0.137839794 0.347214794 0.358128786 0.359264851
+ RMC 1317365081.903000116 196 0.127789974 0.331956641 0.348041773 0.349121809
+ RMC 1317365082.903000116 380 0.127787828 0.523621162 0.558051825 0.559052944
+ RMC 1317365083.903000116 196 0.127787828 0.331954495 0.348176003 0.349668980
+ RMC 1317365084.903000116 194 0.129040003 0.331123336 0.348050833 0.349066973
+ RMC 1317365085.903000116 195 0.128341913 0.331466913 0.348048925 0.349087000
+ RMC 1317365086.903000116 200 0.129049778 0.337383111 0.349294901 0.350268841
+ RMC 1317365087.903000116 378 0.127813816 0.521563816 0.558042765 0.559069872
+ RMC 1317365088.903000116 194 0.127787828 0.329871162 0.348040819 0.349036932
+ RMC 1317365089.903000116 193 0.097786903 0.298828570 0.318081856 0.319162846
+ RMC 1317365090.903000116 196 0.139036894 0.343203561 0.358046770 0.359065771
+ RMC 1317365091.903000116 198 0.139036894 0.345286894 0.358040810 0.359054804
+ RMC 1317365092.901999950 384 0.140048027 0.540048027 0.570292950 0.571217060
+ RMC 1317365093.901999950 198 0.138786077 0.345036077 0.359040976 0.360090971
+ RMC 1317365094.901999950 201 0.128792048 0.338167048 0.349048138 0.350082159
+ RMC 1317365095.901999950 199 0.108788967 0.316080634 0.329041004 0.330106974
+ RMC 1317365096.901999950 201 0.130435944 0.339810944 0.349040031 0.350039959
+ RMC 1317365097.901999950 380 0.138787985 0.534621318 0.569036961 0.570057154
+ RMC 1317365098.901999950 196 0.140051126 0.344217793 0.359045982 0.360074997
+ RMC 1317365099.901999950 198 0.140036106 0.346286106 0.359045982 0.360146046
+ RMC 1317365100.901999950 195 0.140045166 0.343170166 0.359042168 0.360051155
+ RMC 1317365101.901999950 196 0.140037060 0.344203726 0.359046936 0.360131979
+ RMC 1317365102.901999950 379 0.128787041 0.523578707 0.560289145 0.561255932
+ RMC 1317365103.901999950 194 0.128787994 0.330871328 0.349044085 0.350121021
+ RMC 1317365104.901999950 191 0.130046129 0.329004463 0.349050999 0.350088120
+ RMC 1317365105.901999950 194 0.129687071 0.331770404 0.349044085 0.350106001
+ RMC 1317365106.901999950 195 0.130038977 0.333163977 0.349044085 0.350039005
+ RMC 1317365107.901999950 376 0.128914118 0.520580784 0.549044132 0.550058126
+ RMC 1317365108.901999950 192 0.128786087 0.328786087 0.339038134 0.340041161
+ RMC 1317365109.901000023 196 0.129787922 0.333954589 0.350044012 0.351109982
+ RMC 1317365110.901000023 194 0.131040096 0.333123430 0.350046873 0.351049900
+ RMC 1317365111.901000023 194 0.129827023 0.331910356 0.350044012 0.351105928
+ RMC 1317365112.901000023 376 0.131819963 0.523486630 0.560045004 0.561039925
+ RMC 1317365113.901000023 193 0.099786043 0.300827710 0.320044994 0.321239948
+ RMC 1317365114.901000023 193 0.129786968 0.330828635 0.350039005 0.351047039
+ RMC 1317365115.901000023 194 0.129834890 0.331918224 0.351332903 0.352393866
+ RMC 1317365116.901000023 199 0.131036043 0.338327710 0.350046873 0.351063967
+ RMC 1317365117.901000023 380 0.139793873 0.535627206 0.570065975 0.571263075
diff --git a/www/performance/profile9.txt b/www/performance/profile9.txt
index 09af4ad4..b4f89172 100644
--- a/www/performance/profile9.txt
+++ b/www/performance/profile9.txt
@@ -1,102 +1,102 @@
-# Analyzed latency, 2011-09-24T20:26:30, Generic NMEA, 19200 8N1, cycle 1s
+# Analyzed latency, 2011-09-30T06:23:37, Generic NMEA, 19200 8N1, cycle 1s
#- Tag - ----- Fix time ----- - Chars - - Latency - -- RS232 -- --Analysis- --- Recv --
- RMC 1316895991.038000107 185 0.058912992 0.096354167 0.159091949 0.164496899
- RMC 1316895992.038000107 185 0.058913946 0.096354167 0.159089804 0.160807848
- RMC 1316895993.038000107 197 0.048910856 0.102604167 0.159446955 0.160533905
- RMC 1316895994.038000107 368 0.048910856 0.191666667 0.249092817 0.250088930
- RMC 1316895995.038000107 197 0.048910856 0.102604167 0.159092903 0.160135984
- RMC 1316895996.038000107 197 0.048911810 0.102604167 0.159086943 0.160154819
- RMC 1316895997.038000107 197 0.048910856 0.102604167 0.159267902 0.160406828
- RMC 1316895998.038000107 182 0.058913946 0.094791667 0.159094810 0.160305977
- RMC 1316895999.038000107 350 0.058914900 0.182291667 0.249102831 0.250263929
- RMC 1316896000.038000107 178 0.064208984 0.092708333 0.159193993 0.160602808
- RMC 1316896001.038000107 179 0.048986912 0.093229167 0.159092903 0.160130978
- RMC 1316896002.038000107 179 0.058912992 0.093229167 0.159102917 0.160183907
- RMC 1316896003.038000107 195 0.048910856 0.101562500 0.159096003 0.160143852
- RMC 1316896004.038000107 363 0.048913956 0.189062500 0.249099970 0.250285864
- RMC 1316896005.038000107 193 0.048914909 0.100520833 0.149142981 0.150755882
- RMC 1316896006.038000107 196 0.048918009 0.102083333 0.159109831 0.160134792
- RMC 1316896007.036999941 192 0.049911976 0.100000000 0.150097132 0.151287079
- RMC 1316896008.036999941 190 0.049911022 0.098958333 0.150091171 0.151076078
- RMC 1316896009.036999941 361 0.049911976 0.188020833 0.250098944 0.250969172
- RMC 1316896010.036999941 191 0.049911022 0.099479167 0.150098085 0.151112080
- RMC 1316896011.036999941 191 0.049914122 0.099479167 0.150088072 0.150872946
- RMC 1316896012.036999941 190 0.049911976 0.098958333 0.150078058 0.150870085
- RMC 1316896013.036999941 186 0.039916039 0.096875000 0.140167952 0.141194105
- RMC 1316896014.036999941 358 0.049911976 0.186458333 0.250113010 0.251049042
- RMC 1316896015.036999941 184 0.039911032 0.095833333 0.140105963 0.141072035
- RMC 1316896016.036999941 185 0.049911022 0.096354167 0.150094986 0.151088953
- RMC 1316896017.036999941 185 0.039911985 0.096354167 0.140107155 0.141050100
- RMC 1316896018.036999941 186 0.049913168 0.096875000 0.150094986 0.151083946
- RMC 1316896019.036999941 358 0.049915075 0.186458333 0.250096083 0.250981092
- RMC 1316896020.036999941 187 0.049913168 0.097395833 0.150096178 0.151113987
- RMC 1316896021.036999941 187 0.049911976 0.097395833 0.150074959 0.150840044
- RMC 1316896022.036999941 191 0.049911022 0.099479167 0.150094032 0.151083946
- RMC 1316896023.036999941 192 0.049911976 0.100000000 0.150094986 0.151047945
- RMC 1316896024.036000013 364 0.050915003 0.189583333 0.251098871 0.252045870
- RMC 1316896025.036000013 187 0.050910950 0.097395833 0.151093006 0.152054071
- RMC 1316896026.036000013 187 0.050941944 0.097395833 0.151130915 0.151993990
- RMC 1316896027.036000013 186 0.050911903 0.096875000 0.151099920 0.152049065
- RMC 1316896028.036000013 186 0.050913095 0.096875000 0.151100874 0.152116060
- RMC 1316896029.036000013 361 0.050910950 0.188020833 0.251105070 0.252021074
- RMC 1316896030.036000013 187 0.050910950 0.097395833 0.151102066 0.152127028
- RMC 1316896031.036000013 186 0.050911903 0.096875000 0.151093960 0.152025938
- RMC 1316896032.036000013 185 0.050911903 0.096354167 0.151400089 0.153237104
- RMC 1316896033.036000013 189 0.050910950 0.098437500 0.151093006 0.152021885
- RMC 1316896034.036000013 356 0.050911903 0.185416667 0.251096964 0.252022982
- RMC 1316896035.036000013 185 0.050971031 0.096354167 0.151089907 0.152029037
- RMC 1316896036.036000013 190 0.050915003 0.098958333 0.151108980 0.152127028
- RMC 1316896037.036000013 185 0.050910950 0.096354167 0.151092052 0.152009010
- RMC 1316896038.036000013 184 0.050910950 0.095833333 0.151093006 0.152083874
- RMC 1316896039.036000013 356 0.050910950 0.185416667 0.251096010 0.251966953
- RMC 1316896040.035000086 185 0.051911831 0.096354167 0.152102947 0.153081894
- RMC 1316896041.035000086 185 0.051911831 0.096354167 0.152096987 0.153047800
- RMC 1316896042.035000086 185 0.051920891 0.096354167 0.152097940 0.153105021
- RMC 1316896043.035000086 190 0.051911831 0.098958333 0.152092934 0.153007984
- RMC 1316896044.035000086 358 0.041984797 0.186458333 0.252096891 0.253328800
- RMC 1316896045.035000086 186 0.041985989 0.096875000 0.152179956 0.153344870
- RMC 1316896046.035000086 186 0.051911831 0.096875000 0.152096987 0.153086901
- RMC 1316896047.035000086 185 0.051911831 0.096354167 0.152093887 0.153033972
- RMC 1316896048.035000086 186 0.051911831 0.096875000 0.152107000 0.153100014
- RMC 1316896049.035000086 357 0.051910877 0.185937500 0.252102852 0.253006935
- RMC 1316896050.035000086 186 0.051915884 0.096875000 0.152100801 0.153093815
- RMC 1316896051.035000086 189 0.051910877 0.098437500 0.152096033 0.153026819
- RMC 1316896052.035000086 189 0.051910877 0.098437500 0.152094841 0.153083801
- RMC 1316896053.035000086 189 0.051911831 0.098437500 0.152096987 0.153028965
- RMC 1316896054.035000086 356 0.051910877 0.185416667 0.252098799 0.253033876
- RMC 1316896055.035000086 184 0.051911831 0.095833333 0.152100801 0.153040886
- RMC 1316896056.033999920 185 0.053030968 0.096354167 0.153392076 0.154407978
- RMC 1316896057.033999920 185 0.052914143 0.096354167 0.153095007 0.154030085
- RMC 1316896058.033999920 184 0.052914143 0.095833333 0.153092146 0.154078007
- RMC 1316896059.033999920 357 0.052911997 0.185937500 0.253100157 0.254417181
- RMC 1316896060.033999920 184 0.052914143 0.095833333 0.153095007 0.154080153
- RMC 1316896061.033999920 183 0.052914143 0.095312500 0.153098106 0.154030085
- RMC 1316896062.033999920 184 0.052913189 0.095833333 0.153094053 0.154083967
- RMC 1316896063.033999920 188 0.052915096 0.097916667 0.153105974 0.154054165
- RMC 1316896064.033999920 354 0.052915096 0.184375000 0.253094196 0.254027128
- RMC 1316896065.033999920 183 0.052914143 0.095312500 0.153113127 0.154043198
- RMC 1316896066.033999920 183 0.052914143 0.095312500 0.153097153 0.154092073
- RMC 1316896067.033999920 191 0.052914143 0.099479167 0.153115034 0.154060125
- RMC 1316896068.033999920 183 0.052915096 0.095312500 0.153092146 0.154081106
- RMC 1316896069.033999920 354 0.052913189 0.184375000 0.253100157 0.253995180
- RMC 1316896070.033999920 183 0.053009033 0.095312500 0.153100967 0.154083014
- RMC 1316896071.033999920 182 0.052911997 0.094791667 0.153094053 0.154007196
- RMC 1316896072.033999920 182 0.052915096 0.094791667 0.153097153 0.154091120
- RMC 1316896073.032999992 199 0.043910980 0.103645833 0.154164076 0.155303955
- RMC 1316896074.032999992 370 0.043910980 0.192708333 0.254096031 0.255013943
- RMC 1316896075.032999992 183 0.053910971 0.095312500 0.154093027 0.155009031
- RMC 1316896076.032999992 182 0.053911924 0.094791667 0.154096127 0.155069113
- RMC 1316896077.032999992 199 0.043916941 0.103645833 0.154098034 0.155116081
- RMC 1316896078.032999992 199 0.043911934 0.103645833 0.154093981 0.155091047
- RMC 1316896079.032999992 369 0.043911934 0.192187500 0.254094124 0.255034924
- RMC 1316896080.032999992 198 0.043910980 0.103125000 0.154097080 0.155118942
- RMC 1316896081.032999992 199 0.043910980 0.103645833 0.154093027 0.155046940
- RMC 1316896082.032999992 199 0.043914080 0.103645833 0.154181957 0.155421019
- RMC 1316896083.032999992 185 0.053913116 0.096354167 0.154093027 0.155033112
- RMC 1316896084.032999992 356 0.053911924 0.185416667 0.254106045 0.255131960
- RMC 1316896085.032999992 199 0.043911934 0.103645833 0.154096127 0.155052900
- RMC 1316896086.032999992 199 0.043921947 0.103645833 0.154097080 0.155107021
- RMC 1316896087.032999992 199 0.043915033 0.103645833 0.154099941 0.155046940
- RMC 1316896088.032999992 182 0.043987036 0.094791667 0.154097080 0.155098915
- RMC 1316896089.032000065 357 0.054910898 0.185937500 0.255097866 0.255987883
- RMC 1316896090.032000065 199 0.044914961 0.103645833 0.155102015 0.156100035
+ RMC 1317363817.980999947 188 0.129788160 0.227704827 0.230034113 0.235080004
+ RMC 1317363818.980999947 187 0.129799128 0.227194961 0.230033159 0.231380939
+ RMC 1317363819.980000019 384 0.130796909 0.330796909 0.341032028 0.341877937
+ RMC 1317363820.980000019 181 0.130863905 0.225134738 0.241031885 0.242109060
+ RMC 1317363821.980000019 186 0.120861053 0.217736053 0.231075048 0.232064009
+ RMC 1317363822.980000019 186 0.130786896 0.227661896 0.231045961 0.232097864
+ RMC 1317363823.980000019 190 0.090785027 0.189743360 0.201034069 0.202038050
+ RMC 1317363824.980000019 382 0.120788097 0.319746431 0.331064939 0.332175970
+ RMC 1317363825.980000019 198 0.122057915 0.225182915 0.231046915 0.232085943
+ RMC 1317363826.980000019 195 0.130789042 0.232351542 0.241050005 0.242119074
+ RMC 1317363827.980000019 191 0.132060051 0.231539218 0.241051912 0.241877079
+ RMC 1317363828.980000019 184 0.130785942 0.226619275 0.231041908 0.232115030
+ RMC 1317363829.980000019 376 0.130789995 0.326623329 0.341053963 0.342101097
+ RMC 1317363830.980000019 194 0.090804100 0.191845767 0.192414045 0.196037054
+ RMC 1317363831.980000019 190 0.090787888 0.189746221 0.201056957 0.202113867
+ RMC 1317363832.980000019 184 0.130789995 0.226623329 0.231059074 0.232120037
+ RMC 1317363833.980000019 185 0.130785942 0.227140109 0.231107950 0.232104063
+ RMC 1317363834.980000019 380 0.130788088 0.328704755 0.342299938 0.343309879
+ RMC 1317363835.979000092 185 0.131786823 0.228140990 0.232050896 0.233076811
+ RMC 1317363836.979000092 182 0.131785870 0.226577536 0.232043982 0.233098984
+ RMC 1317363837.979000092 191 0.131786823 0.231265990 0.232043982 0.233038902
+ RMC 1317363838.979000092 185 0.131788015 0.228142182 0.232038975 0.233110905
+ RMC 1317363839.979000092 379 0.131786823 0.329182657 0.342041969 0.343039989
+ RMC 1317363840.979000092 183 0.131783009 0.227095509 0.232049942 0.233583927
+ RMC 1317363841.979000092 184 0.131788015 0.227621349 0.232042789 0.233069897
+ RMC 1317363842.979000092 192 0.091786861 0.191786861 0.193284988 0.194345951
+ RMC 1317363843.979000092 198 0.121786833 0.224911833 0.233285904 0.234498978
+ RMC 1317363844.979000092 377 0.131788969 0.328143136 0.342031956 0.343029976
+ RMC 1317363845.979000092 182 0.131793022 0.226584689 0.232041836 0.233066797
+ RMC 1317363846.979000092 198 0.121786833 0.224911833 0.232031822 0.233124971
+ RMC 1317363847.979000092 197 0.093047857 0.195652024 0.202032804 0.203070879
+ RMC 1317363848.979000092 198 0.121785879 0.224910879 0.232039928 0.233106852
+ RMC 1317363849.979000092 378 0.131783962 0.328658962 0.342058897 0.342995882
+ RMC 1317363850.979000092 182 0.131788969 0.226580636 0.232040882 0.233107805
+ RMC 1317363851.979000092 182 0.131788969 0.226580636 0.232047796 0.233096838
+ RMC 1317363852.977999926 181 0.132789135 0.227059968 0.233030081 0.234099150
+ RMC 1317363853.977999926 189 0.092791080 0.191228580 0.193041086 0.194038153
+ RMC 1317363854.977999926 389 0.124044180 0.326648347 0.343034029 0.343973160
+ RMC 1317363855.977999926 188 0.092787027 0.190703694 0.193047047 0.194010019
+ RMC 1317363856.977999926 191 0.132786989 0.232266156 0.233046055 0.234140158
+ RMC 1317363857.977999926 185 0.092787981 0.189142148 0.193644047 0.194629192
+ RMC 1317363858.977999926 185 0.132788181 0.229142348 0.233074188 0.234179020
+ RMC 1317363859.977999926 392 0.122789145 0.326955811 0.343053102 0.344072104
+ RMC 1317363860.977999926 185 0.092797995 0.189152161 0.193041086 0.194131136
+ RMC 1317363861.977999926 197 0.122791052 0.225395219 0.233054161 0.234105110
+ RMC 1317363862.977999926 181 0.122863054 0.217133888 0.233040094 0.234107971
+ RMC 1317363863.977999926 181 0.122866154 0.217136987 0.233039141 0.234045029
+ RMC 1317363864.977999926 389 0.124099016 0.326703183 0.343068123 0.344135046
+ RMC 1317363865.977999926 197 0.122789145 0.225393311 0.233385086 0.234375000
+ RMC 1317363866.977999926 192 0.092787027 0.192787027 0.193034172 0.194095135
+ RMC 1317363867.977999926 183 0.112789154 0.208101654 0.213646173 0.214715958
+ RMC 1317363868.976999998 194 0.133786917 0.234828583 0.234045029 0.235167980
+ RMC 1317363869.976999998 394 0.133788109 0.338996442 0.354047060 0.355031013
+ RMC 1317363870.976999998 194 0.135092974 0.236134640 0.235302925 0.236232996
+ RMC 1317363871.976999998 184 0.104044914 0.199878248 0.204051018 0.205076933
+ RMC 1317363872.976999998 193 0.133785963 0.234306796 0.234039068 0.235106945
+ RMC 1317363873.976999998 192 0.133791924 0.233791924 0.234044075 0.235033989
+ RMC 1317363874.976999998 390 0.133783102 0.336908102 0.345360041 0.346230984
+ RMC 1317363875.976999998 195 0.133781910 0.235344410 0.244081974 0.245019913
+ RMC 1317363876.976999998 184 0.103993893 0.199827226 0.204046965 0.205131054
+ RMC 1317363877.976999998 196 0.085232019 0.187315353 0.204052925 0.205070972
+ RMC 1317363878.976999998 184 0.103787899 0.199621232 0.204032898 0.205107927
+ RMC 1317363879.976999998 382 0.103787899 0.302746232 0.314035892 0.314918041
+ RMC 1317363880.976999998 184 0.143789053 0.239622386 0.244043112 0.245126963
+ RMC 1317363881.976999998 194 0.133789062 0.234830729 0.244052887 0.245079041
+ RMC 1317363882.976999998 193 0.133790016 0.234310850 0.234035015 0.235111952
+ RMC 1317363883.976999998 193 0.134478092 0.234998926 0.234031916 0.235065937
+ RMC 1317363884.976000071 386 0.134785891 0.335827557 0.345057011 0.346105814
+ RMC 1317363885.976000071 192 0.134786844 0.234786844 0.235034943 0.236079931
+ RMC 1317363886.976000071 185 0.144785881 0.241140048 0.245090008 0.246441841
+ RMC 1317363887.976000071 200 0.134784937 0.238951604 0.245033979 0.246037960
+ RMC 1317363888.976000071 192 0.134963989 0.234963989 0.245144844 0.246696949
+ RMC 1317363889.976000071 391 0.096043825 0.299689658 0.315032959 0.315913916
+ RMC 1317363890.976000071 189 0.135535955 0.233973455 0.235046864 0.236120939
+ RMC 1317363891.976000071 190 0.134785891 0.233744224 0.235086918 0.236392975
+ RMC 1317363892.976000071 189 0.136073828 0.234511328 0.236379862 0.237308025
+ RMC 1317363893.976000071 191 0.134786844 0.234266011 0.235052824 0.236080885
+ RMC 1317363894.976000071 386 0.134788036 0.335829703 0.345085859 0.346196890
+ RMC 1317363895.976000071 195 0.094785929 0.196348429 0.205675840 0.206773996
+ RMC 1317363896.976000071 189 0.134788990 0.233226490 0.235045910 0.236142874
+ RMC 1317363897.976000071 193 0.134789944 0.235310777 0.235041857 0.236018896
+ RMC 1317363898.976000071 190 0.136037827 0.234996160 0.235036850 0.236093998
+ RMC 1317363899.976000071 386 0.134788990 0.335830657 0.345036030 0.345943928
+ RMC 1317363900.976000071 188 0.134788036 0.232704703 0.235054970 0.236148834
+ RMC 1317363901.974999905 187 0.125786066 0.223181899 0.226047039 0.227079153
+ RMC 1317363902.974999905 180 0.095800161 0.189550161 0.204610109 0.205708981
+ RMC 1317363903.974999905 190 0.125791073 0.224749406 0.226042986 0.227045059
+ RMC 1317363904.974999905 385 0.115862131 0.316382964 0.336050987 0.337148190
+ RMC 1317363905.974999905 190 0.125789165 0.224747499 0.226055145 0.227066040
+ RMC 1317363906.974999905 190 0.125789165 0.224747499 0.226078987 0.227143049
+ RMC 1317363907.974999905 187 0.125787020 0.223182853 0.226050138 0.227113008
+ RMC 1317363908.974999905 187 0.125961065 0.223356899 0.226046085 0.227159977
+ RMC 1317363909.974999905 376 0.135786057 0.331619390 0.346053123 0.347045183
+ RMC 1317363910.974999905 189 0.125790119 0.224227619 0.227307081 0.228378057
+ RMC 1317363911.974999905 189 0.125787020 0.224224520 0.226047039 0.227070093
+ RMC 1317363912.974999905 190 0.125794172 0.224752506 0.226054192 0.227162123
+ RMC 1317363913.974999905 189 0.127080202 0.225517702 0.226205111 0.227627039
+ RMC 1317363914.974999905 392 0.087044001 0.291210667 0.306097031 0.307219982
+ RMC 1317363915.974999905 192 0.125806093 0.225806093 0.226052046 0.227094173
+ RMC 1317363916.974999905 197 0.125787020 0.228391186 0.236163139 0.237526178