[ Launch Inlet ]
Gist #4241962 [ Launch Inlet ]
Gist #4241906 [ Launch Inlet ]
Gist #4241890
Gist #4241836 [ Launch Inlet ]
Gist #4241090 [ Launch Inlet ]
Gist #4241088
Gist #4240927
-
-
Save enjalot/4241987 to your computer and use it in GitHub Desktop.
Another Inlet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"description":"Another Inlet","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":false,"vim":true,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"phone.csv":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"tab":"edit","display_percent":0.6041241924848383,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"hidepanel":false} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ch = 65; | |
var cw = tributary.sw; | |
/* | |
Walking in straight line with phone face up the whole time | |
Sensor_record_20121208_130821_AndroSensor | |
*/ | |
/* | |
accx = ACCELEROMETER X (m/s²) | |
accy = ACCELEROMETER Y (m/s²) | |
accz = ACCELEROMETER Z (m/s²) | |
gyrox = GYROSCOPE X (rad/s) | |
gyroy = GYROSCOPE Y (rad/s) | |
gyroz = GYROSCOPE Z (rad/s) | |
light = LIGHT ( lux) | |
magx = MAGNETIC FIELD X (μT) | |
magy = MAGNETIC FIELD Y (μT) | |
magz = MAGNETIC FIELD Z (μT) | |
orientx = ORIENTATION X (°) | |
orienty = ORIENTATION Y (°) | |
orientz = ORIENTATION Z (°) | |
proximity = PROXIMITY ( cm) | |
atmosphere = ATMOSPHERIC PRESSURE (mb) | |
sound = SOUND LEVEL (dB) | |
loclat = LOCATION Latitude | |
loclon = LOCATION Longitude | |
localt = LOCATION Altitude ( m) | |
locspeed = LOCATION Speed ( Kmh) | |
locacc = LOCATION Accuracy ( m) | |
temp = Temperature ( °F) | |
level = Level (%) | |
voltage = Voltage (Volt) | |
time = Time since start in ms | |
*/ | |
function cleanData(d) { | |
var field; | |
for(field in d) { | |
if(d.hasOwnProperty(field)) { | |
d[field] = parseFloat(d[field]); | |
} | |
} | |
} | |
var phone = tributary.phone; | |
phone.forEach(cleanData); | |
//make the time scale | |
var tscale = d3.scale.linear() | |
.domain(d3.extent(phone, function(d) { return d.time})) | |
.range([0, cw]); | |
//.range(["#00ff00", "#ff0000"]) | |
//.interpolate(d3.interpolateHsl); | |
function makeScale(field) { | |
var extent = d3.extent(phone, function(d) { return d[field] }); | |
if(extent[0] > 0) extent[0] = 0; | |
var yscale = d3.scale.linear() | |
.domain(extent) | |
.range([ch, 0]); | |
return yscale; | |
} | |
function makeLine(field) { | |
var yscale = makeScale(field); | |
var line = d3.svg.line() | |
.x(function(d) { | |
return tscale(d.time); | |
}) | |
.y(function(d) { | |
return yscale(d[field]); | |
}) | |
return line; | |
} | |
var fields = ["accx", "accy", "accz", "gyrox", "gyroy", "gyroz"]; | |
var colors = d3.scale.category20(); | |
var transform = function(d,i) { | |
var x = 0; | |
var y = 50 + (ch + 31) * i; | |
return "translate(" + [x,y] + ")"; | |
} | |
var svg = d3.select("svg"); | |
svg.append("rect") | |
.attr({ | |
width: "100%", | |
height: "100%" | |
}) | |
var accels = svg.append("g") | |
.selectAll("path.line") | |
.data(fields) | |
.enter(); | |
accels.append("rect") | |
.attr({ | |
width: cw, | |
height: ch, | |
fill: "none", | |
stroke: "#686868", | |
transform: transform | |
}) | |
accels.append("line") | |
.attr({ | |
x1: 0, | |
x2: cw, | |
y1: function(d) { return makeScale(d)(0) }, | |
y2: function(d) { return makeScale(d)(0) }, | |
//stroke: "#ffffff", | |
stroke: colors, | |
"stroke-width": 1, | |
transform: transform | |
}) | |
accels | |
.append("path") | |
.classed("line", true) | |
.attr({ | |
d: function(d) { | |
var line = makeLine(d)(phone); | |
return line; | |
}, | |
transform: transform | |
}) | |
.style({ | |
fill: "none", | |
stroke: colors, | |
"stroke-width": 3 | |
}) | |
accels.append("text") | |
.text(function(d) { return d }) | |
.attr({ | |
transform: transform | |
}) | |
.style({ | |
fill: colors | |
}) | |
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 25 columns, instead of 26 in line 1.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
accx,accy,accz,gyrox,gyroy,gyroz,light,magx,magy,magz,orientx,orienty,orientz,proximity,atmosphere,sound,loclat,loclon,localt,locspeed,locacc,temp,level,voltage,time | |
0.0308,0.5438,9.4277,-0.0064,0.0085,0.0181,89.3794,22.3,-6.9,-38.7,261.55,-3.68,-2.92,5.0,1009.59,34.089,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7, | |
0.0308,0.5438,9.4277,-0.0064,0.0085,0.0181,89.3794,22.3,-6.9,-38.7,261.55,-3.68,-2.92,5.0,1009.59,34.156,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,57, | |
-0.0257,0.7622,9.6033,-0.0927,-0.0405,0.0213,89.3794,22.1,-6.7,-39.2,258.22,-3.31,-1.22,5.0,1009.59,34.156,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,148, | |
-0.0257,0.7622,9.6033,-0.0927,-0.0405,0.0213,88.3377,22.1,-6.7,-39.2,258.22,-3.31,-1.22,5.0,1009.59,34.156,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,211, | |
-0.0257,0.7622,9.6033,0.049,-0.0373,-0.0554,88.3377,22.1,-6.7,-39.2,258.22,-3.31,-1.22,5.0,1009.62,34.156,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,280, | |
-0.094,1.2821,9.7935,0.049,-0.0373,-0.0554,88.3377,21.3,-6.2,-39.4,258.22,-3.31,-1.22,5.0,1009.62,34.156,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,367, | |
-0.094,1.2821,9.7935,-0.0554,-0.0234,0.1929,83.3086,21.3,-6.2,-39.4,258.22,-3.31,-1.22,5.0,1009.62,35.1,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,429, | |
-0.0078,0.979,9.385,-0.0554,-0.0234,0.1929,83.3086,21.3,-6.2,-39.4,258.22,-3.31,-1.22,5.0,1009.62,35.1,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,484, | |
-0.0078,0.979,9.385,-0.0714,-0.0757,0.1013,83.3086,20.6,-6.3,-39.7,259.56,-2.86,-1.14,5.0,1009.62,35.1,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,587, | |
0.2254,1.4758,9.1903,-0.0714,-0.0757,0.1013,78.5658,20.6,-6.3,-39.7,259.56,-2.86,-1.14,5.0,1009.62,35.1,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,637, | |
0.2254,1.4758,9.1903,-0.1577,-0.1567,0.0021,78.5658,20.6,-6.3,-39.7,259.56,-2.86,-1.14,5.0,1009.62,35.1,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,687, | |
0.082,1.8353,9.5594,-0.1577,-0.1567,0.0021,78.5658,20.2,-5.8,-40.5,259.56,-2.86,-1.14,5.0,1009.62,35.1,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,744, | |
0.082,1.8353,9.5594,-0.1577,-0.1567,0.0021,78.5658,20.2,-5.8,-40.5,259.56,-2.86,-1.14,5.0,1009.62,37.741,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,795, | |
0.082,1.8353,9.5594,-0.1045,-0.1077,-0.1727,78.5658,20.2,-5.8,-40.5,259.56,-2.86,-1.14,5.0,1009.62,37.741,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,845, | |
0.3295,1.2093,10.2442,-0.1045,-0.1077,-0.1727,63.6197,20.2,-5.8,-40.5,259.56,-2.86,-1.14,5.0,1009.62,37.741,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,898, | |
0.3295,1.2093,10.2442,-0.2078,0.0021,-0.3688,63.6197,20.7,-4.8,-40.5,262.05,-2.74,-1.91,5.0,1009.62,37.741,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,967, | |
0.5236,-0.1076,10.4456,-0.2078,0.0021,-0.3688,63.6197,20.7,-4.8,-40.5,262.05,-2.74,-1.91,5.0,1009.62,37.741,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1044, | |
0.5236,-0.1076,10.4456,0.1993,0.0938,0.1258,62.8782,21.6,-5.4,-40.7,262.05,-2.74,-1.91,5.0,1009.62,37.741,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1105, | |
0.1811,-0.2139,9.8036,0.1993,0.0938,0.1258,62.8782,21.6,-5.4,-40.7,262.05,-2.74,-1.91,5.0,1009.62,37.178,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1182, | |
0.1811,-0.2139,9.8036,0.081,-0.1663,0.3325,63.6197,21.6,-5.4,-40.7,262.05,-2.74,-1.91,5.0,1009.62,37.178,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1267, | |
0.1811,-0.2139,9.8036,0.081,-0.1663,0.3325,63.6197,19.9,-8.6,-41.2,251.44,-2.59,-1.91,5.0,1009.62,37.178,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1358, | |
0.417,0.7728,8.5719,0.2014,-0.0352,0.4359,69.8749,19.9,-8.6,-41.2,251.44,-2.59,-1.91,5.0,1009.62,37.178,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1423, | |
0.417,0.7728,8.5719,0.2014,-0.0352,0.4359,69.8749,19.9,-8.6,-41.2,251.44,-2.59,-1.91,5.0,1009.62,38.091,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1485, | |
0.469,1.8545,8.8179,-0.1172,-0.129,0.6118,69.8749,18.5,-10.2,-40.3,251.44,-2.59,-1.91,5.0,1009.64,38.091,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1564, | |
0.469,1.8545,8.8179,-0.1172,-0.129,0.6118,101.6813,18.5,-10.2,-40.3,251.44,-2.59,-1.91,5.0,1009.64,38.091,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1635, | |
-0.3313,0.7716,10.5975,0.9379,0.1844,0.6118,101.6813,18.5,-10.2,-40.3,251.44,-2.59,-1.91,5.0,1009.64,38.091,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1691, | |
-0.3313,0.7716,10.5975,0.9379,0.1844,0.6118,101.6813,15.9,-15.7,-39.1,232.96,-4.13,-2.21,5.0,1009.64,38.091,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1757, | |
-0.9772,-0.7152,11.905,-0.3368,0.1226,0.907,164.4302,15.9,-15.7,-39.1,232.96,-4.13,-2.21,5.0,1009.64,43.455,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1812, | |
-0.9772,-0.7152,11.905,-0.3368,0.1226,0.907,164.4302,15.9,-15.7,-39.1,232.96,-4.13,-2.21,5.0,1009.64,43.455,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1862, | |
-0.9772,-0.7152,11.905,-0.3368,0.1226,0.907,164.4302,15.9,-15.7,-39.1,232.96,-4.13,-2.21,5.0,1009.64,43.455,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1912, | |
-1.0056,0.9266,8.9403,-0.3016,-0.1514,1.1938,164.4302,12.1,-17.0,-40.5,232.96,-4.13,-2.21,5.0,1009.64,43.455,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,1979, | |
-1.0056,0.9266,8.9403,-0.3016,-0.1514,1.1938,164.4302,12.1,-17.0,-40.5,232.96,-4.13,-2.21,5.0,1009.64,43.455,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2029, | |
-0.9366,0.7428,9.3097,0.5425,0.1929,0.7493,164.4302,12.1,-17.0,-40.5,232.96,-4.13,-2.21,5.0,1009.64,43.455,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2104, | |
-0.9366,0.7428,9.3097,0.5425,0.1929,0.7493,164.4302,10.0,-22.2,-38.2,212.56,-5.25,-2.73,5.0,1009.64,42.117,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2172, | |
0.163,1.0945,9.8838,0.1588,0.0586,0.0671,168.331,10.0,-22.2,-38.2,212.56,-5.25,-2.73,5.0,1009.64,42.117,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2243, | |
0.163,1.0945,9.8838,0.1588,0.0586,0.0671,168.331,10.0,-22.2,-38.2,212.56,-5.25,-2.73,5.0,1009.64,42.117,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2293, | |
0.163,1.0945,9.8838,0.1588,0.0586,0.0671,168.331,10.0,-22.2,-38.2,212.56,-5.25,-2.73,5.0,1009.64,42.117,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2343, | |
1.089,-0.3581,11.8305,-0.0533,0.178,-0.4796,168.331,10.4,-22.9,-37.1,212.56,-5.25,-2.73,5.0,1009.64,42.117,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2404, | |
1.089,-0.3581,11.8305,-0.0533,0.178,-0.4796,172.3243,10.4,-22.9,-37.1,212.56,-5.25,-2.73,5.0,1009.64,42.117,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2454, | |
0.5,0.3133,10.6628,0.0448,-0.033,-0.1716,172.3243,10.4,-22.9,-37.1,212.56,-5.25,-2.73,5.0,1009.64,44.603,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2523, | |
0.5,0.3133,10.6628,0.0448,-0.033,-0.1716,172.3243,13.7,-23.5,-36.0,217.3,-6.79,-0.26,5.0,1009.64,44.603,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2583, | |
0.2337,0.7468,8.6144,0.0767,0.0171,-0.68,172.3243,13.7,-23.5,-36.0,217.3,-6.79,-0.26,5.0,1009.64,44.603,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2648, | |
0.2337,0.7468,8.6144,0.0767,0.0171,-0.68,170.3159,13.7,-23.5,-36.0,217.3,-6.79,-0.26,5.0,1009.64,44.603,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2705, | |
0.2337,0.7468,8.6144,0.0767,0.0171,-0.68,170.3159,15.6,-22.7,-35.0,217.3,-6.79,-0.26,5.0,1009.68,44.603,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2756, | |
0.2382,1.6033,8.13,0.2228,0.1215,-0.3592,170.3159,15.6,-22.7,-35.0,217.3,-6.79,-0.26,5.0,1009.68,44.603,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2806, | |
0.2382,1.6033,8.13,0.2228,0.1215,-0.3592,170.3159,15.6,-22.7,-35.0,217.3,-6.79,-0.26,5.0,1009.68,44.603,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2856, | |
0.6872,0.614,10.865,-0.1897,0.3059,-0.291,156.8977,18.7,-23.3,-33.7,223.03,-6.95,2.7,5.0,1009.68,43.575,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2928, | |
0.6872,0.614,10.865,-0.1897,0.3059,-0.291,156.8977,18.7,-23.3,-33.7,223.03,-6.95,2.7,5.0,1009.68,43.575,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,2978, | |
0.6872,0.614,10.865,-0.1897,0.3059,-0.291,156.8977,18.7,-23.3,-33.7,223.03,-6.95,2.7,5.0,1009.68,43.575,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3029, | |
0.1226,0.5916,10.4986,-0.1396,-0.2046,-0.8825,153.2619,21.2,-20.1,-34.0,223.03,-6.95,2.7,5.0,1009.68,43.575,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3129, | |
0.1226,0.5916,10.4986,-0.1396,-0.2046,-0.8825,153.2619,21.2,-20.1,-34.0,223.03,-6.95,2.7,5.0,1009.68,43.575,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3179, | |
0.1027,1.2819,8.4857,0.1151,-0.292,-1.0776,153.2619,21.2,-20.1,-34.0,223.03,-6.95,2.7,5.0,1009.68,45.057,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3231, | |
0.1027,1.2819,8.4857,0.1151,-0.292,-1.0776,146.241,23.9,-15.6,-34.6,242.05,-7.45,4.98,5.0,1009.68,45.057,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3304, | |
-0.0085,1.6057,9.0825,0.2483,-0.1055,-1.295,146.241,23.9,-15.6,-34.6,242.05,-7.45,4.98,5.0,1009.68,45.057,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3361, | |
-0.0085,1.6057,9.0825,0.2483,-0.1055,-1.295,146.241,23.9,-15.6,-34.6,242.05,-7.45,4.98,5.0,1009.68,45.057,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3411, | |
-0.0085,1.6057,9.0825,0.2483,-0.1055,-1.295,146.241,23.9,-15.6,-34.6,242.05,-7.45,4.98,5.0,1009.68,45.057,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3461, | |
0.3741,0.4946,11.3211,0.2324,-0.3475,-1.8471,122.6594,27.4,-9.8,-34.7,242.05,-7.45,4.98,5.0,1009.68,45.057,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3529, | |
0.3741,0.4946,11.3211,0.2324,-0.3475,-1.8471,122.6594,27.4,-9.8,-34.7,242.05,-7.45,4.98,5.0,1009.68,48.385,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3580, | |
0.3911,0.9643,10.0128,0.0266,-0.3645,-1.1703,122.6594,27.4,-9.8,-34.7,242.05,-7.45,4.98,5.0,1009.68,48.385,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3644, | |
0.3911,0.9643,10.0128,0.0266,-0.3645,-1.1703,111.6788,26.7,-2.5,-36.0,277.68,-8.25,3.0,5.0,1009.68,48.385,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3720, | |
-0.1084,1.317,8.038,0.0426,-0.2494,-0.9667,111.6788,26.7,-2.5,-36.0,277.68,-8.25,3.0,5.0,1009.68,48.385,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3782, | |
-0.1084,1.317,8.038,0.0426,-0.2494,-0.9667,111.6788,26.7,-2.5,-36.0,277.68,-8.25,3.0,5.0,1009.68,48.385,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3833, | |
-0.1084,1.317,8.038,0.0426,-0.2494,-0.9667,111.6788,26.7,-2.5,-36.0,277.68,-8.25,3.0,5.0,1009.68,48.385,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3884, | |
-0.2254,1.0261,9.825,-0.211,0.0533,-0.5169,90.4333,27.2,1.0,-36.9,277.68,-8.25,3.0,5.0,1009.71,46.324,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3941, | |
-0.2254,1.0261,9.825,-0.211,0.0533,-0.5169,90.4333,27.2,1.0,-36.9,277.68,-8.25,3.0,5.0,1009.71,46.324,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,3992, | |
-0.3712,0.2539,11.3298,-0.3048,-0.1535,-0.2292,90.4333,27.2,1.0,-36.9,277.68,-8.25,3.0,5.0,1009.71,46.324,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4072, | |
-0.3712,0.2539,11.3298,-0.3048,-0.1535,-0.2292,90.4333,25.7,4.6,-36.2,291.82,-7.52,2.37,5.0,1009.71,46.324,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4129, | |
0.1714,0.9022,8.9545,0.0405,-0.1801,-0.6075,87.3082,25.7,4.6,-36.2,291.82,-7.52,2.37,5.0,1009.71,46.324,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4204, | |
0.1714,0.9022,8.9545,0.0405,-0.1801,-0.6075,87.3082,25.7,4.6,-36.2,291.82,-7.52,2.37,5.0,1009.71,46.324,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4255, | |
0.1714,0.9022,8.9545,0.0405,-0.1801,-0.6075,87.3082,25.7,4.6,-36.2,291.82,-7.52,2.37,5.0,1009.71,48.901,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4305, | |
0.0729,1.3444,8.8285,0.1002,-0.2046,-0.5628,87.3082,24.3,6.5,-38.0,291.82,-7.52,2.37,5.0,1009.71,48.901,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4367, | |
0.0729,1.3444,8.8285,0.1002,-0.2046,-0.5628,87.3082,24.3,6.5,-38.0,291.82,-7.52,2.37,5.0,1009.71,48.901,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4417, | |
-0.0624,1.7057,10.7536,0.0703,0.6203,-0.3869,75.8508,24.3,6.5,-38.0,291.82,-7.52,2.37,5.0,1009.71,48.901,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4482, | |
-0.0624,1.7057,10.7536,0.0703,0.6203,-0.3869,75.8508,22.4,9.1,-38.1,300.6,-6.15,-0.02,5.0,1009.71,48.901,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4551, | |
0.6133,0.3392,10.0348,-0.3411,-0.0458,-0.1865,75.8508,22.4,9.1,-38.1,300.6,-6.15,-0.02,5.0,1009.71,48.901,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4626, | |
0.6133,0.3392,10.0348,-0.3411,-0.0458,-0.1865,75.8508,22.4,9.1,-38.1,300.6,-6.15,-0.02,5.0,1009.71,45.411,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4676, | |
0.6133,0.3392,10.0348,-0.3411,-0.0458,-0.1865,75.8508,22.4,9.1,-38.1,300.6,-6.15,-0.02,5.0,1009.71,45.411,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4727, | |
0.52,0.6764,7.917,-0.0895,0.0213,-0.1311,73.2295,21.7,11.2,-38.6,304.48,-6.15,-0.02,5.0,1009.71,45.411,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4789, | |
0.52,0.6764,7.917,-0.0895,0.0213,-0.1311,73.2295,21.7,11.2,-38.6,304.48,-6.15,-0.02,5.0,1009.71,45.411,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4839, | |
-0.0578,1.5181,9.14,0.0981,0.1311,0.3421,73.2295,21.7,11.2,-38.6,304.48,-6.15,-0.02,5.0,1009.71,45.411,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4903, | |
-0.0578,1.5181,9.14,0.0981,0.1311,0.3421,70.6989,22.0,9.8,-37.8,304.48,-6.15,-0.02,5.0,1009.71,45.411,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,4964, | |
0.2269,0.131,11.5904,-0.0853,0.0661,0.5702,70.6989,22.0,9.8,-37.8,304.48,-6.15,-0.02,5.0,1009.71,47.106,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5035, | |
0.2269,0.131,11.5904,-0.0853,0.0661,0.5702,70.6989,22.0,9.8,-37.8,304.48,-6.15,-0.02,5.0,1009.71,47.106,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5085, | |
0.2269,0.131,11.5904,-0.0853,0.0661,0.5702,71.5326,22.0,9.8,-37.8,304.48,-6.15,-0.02,5.0,1009.71,47.106,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5141, | |
-0.1892,-0.035,9.7663,-0.0746,-0.081,0.1279,71.5326,22.9,7.3,-38.8,292.6,-4.53,-1.53,5.0,1009.68,47.106,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5219, | |
-0.1892,-0.035,9.7663,-0.0746,-0.081,0.1279,71.5326,22.9,7.3,-38.8,292.6,-4.53,-1.53,5.0,1009.68,47.106,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5270, | |
-0.0187,0.9387,7.9783,0.0298,-0.1247,0.0863,71.5326,22.9,7.3,-38.8,292.6,-4.53,-1.53,5.0,1009.68,47.106,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5322, | |
-0.0187,0.9387,7.9783,0.0298,-0.1247,0.0863,72.3761,22.0,7.4,-39.2,292.6,-4.53,-1.53,5.0,1009.68,47.508,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5382, | |
0.1671,1.6135,9.1385,0.1077,0.0725,-0.032,72.3761,22.0,7.4,-39.2,292.6,-4.53,-1.53,5.0,1009.68,47.508,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5442, | |
0.1671,1.6135,9.1385,0.1077,0.0725,-0.032,72.3761,22.0,7.4,-39.2,292.6,-4.53,-1.53,5.0,1009.68,47.508,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5492, | |
0.1671,1.6135,9.1385,0.1077,0.0725,-0.032,72.3761,22.0,7.4,-39.2,292.6,-4.53,-1.53,5.0,1009.68,47.508,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5542, | |
0.3521,0.129,12.8211,0.2014,-0.4487,-0.6523,72.3761,21.5,8.2,-39.2,297.26,-4.88,-1.24,5.0,1009.68,47.508,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5620, | |
0.3521,0.129,12.8211,0.2014,-0.4487,-0.6523,72.3761,21.5,8.2,-39.2,297.26,-4.88,-1.24,5.0,1009.68,47.508,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5670, | |
0.2331,0.1829,9.6313,-0.1535,0.0554,-0.2238,72.3761,21.5,8.2,-39.2,297.26,-4.88,-1.24,5.0,1009.68,46.555,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5745, | |
0.2331,0.1829,9.6313,-0.1535,0.0554,-0.2238,72.3761,21.8,10.2,-37.3,297.26,-4.88,-1.24,5.0,1009.68,46.555,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5806, | |
-0.2048,1.0457,8.01,0.0107,0.2398,-0.1226,72.3761,21.8,10.2,-37.3,297.26,-4.88,-1.24,5.0,1009.68,46.555,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5881, | |
-0.2048,1.0457,8.01,0.0107,0.2398,-0.1226,74.0931,21.8,10.2,-37.3,297.26,-4.88,-1.24,5.0,1009.68,46.555,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5931, | |
-0.2048,1.0457,8.01,0.0107,0.2398,-0.1226,74.0931,21.8,10.2,-37.3,297.26,-4.88,-1.24,5.0,1009.68,46.555,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,5997, | |
-0.0624,1.0122,10.0925,-0.0075,0.1247,0.0298,74.0931,22.9,10.7,-36.4,301.79,-6.31,-1.48,5.0,1009.68,51.591,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6055, | |
-0.0624,1.0122,10.0925,-0.0075,0.1247,0.0298,74.0931,22.9,10.7,-36.4,301.79,-6.31,-1.48,5.0,1009.68,51.591,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6105, | |
0.5732,-0.2923,11.4097,0.1524,0.0075,-0.4668,79.4923,22.5,11.2,-37.0,301.79,-6.31,-1.48,5.0,1009.68,51.591,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6247, | |
0.5732,-0.2923,11.4097,0.1524,0.0075,-0.4668,79.4923,22.5,11.2,-37.0,301.79,-6.31,-1.48,5.0,1009.68,51.591,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6297, | |
0.2558,0.751,8.5222,0.0874,-0.0778,-0.7855,79.4923,21.8,13.5,-37.0,310.43,-5.26,2.38,5.0,1009.63,51.591,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6375, | |
0.2558,0.751,8.5222,0.0874,-0.0778,-0.7855,79.4923,21.8,13.5,-37.0,310.43,-5.26,2.38,5.0,1009.63,50.189,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6425, | |
0.2558,0.751,8.5222,0.0874,-0.0778,-0.7855,86.2906,21.8,13.5,-37.0,310.43,-5.26,2.38,5.0,1009.63,50.189,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6481, | |
0.2262,0.873,9.0943,0.1215,-0.1311,-1.149,86.2906,21.8,13.5,-37.0,310.43,-5.26,2.38,5.0,1009.63,50.189,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6531, | |
0.2262,0.873,9.0943,0.1215,-0.1311,-1.149,86.2906,18.8,16.4,-38.2,310.43,-5.26,2.38,5.0,1009.63,50.189,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6581, | |
0.3295,0.2632,12.3644,0.0011,-0.0501,-1.5071,86.2906,18.8,16.4,-38.2,310.43,-5.26,2.38,5.0,1009.63,50.189,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6677, | |
0.3295,0.2632,12.3644,0.0011,-0.0501,-1.5071,88.3377,18.8,16.4,-38.2,310.43,-5.26,2.38,5.0,1009.63,50.189,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6754, | |
0.4766,0.5086,9.9729,-0.1514,0.1226,-1.0552,88.3377,15.6,19.9,-36.5,327.42,-5.26,1.66,5.0,1009.63,49.089,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6841, | |
0.4766,0.5086,9.9729,-0.1514,0.1226,-1.0552,88.3377,15.6,19.9,-36.5,327.42,-5.26,1.66,5.0,1009.63,49.089,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6910, | |
0.3585,0.5781,8.7719,-0.049,-0.081,-0.9038,89.3794,12.8,22.5,-37.2,327.42,-5.26,1.66,5.0,1009.63,49.089,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,6970, | |
0.3585,0.5781,8.7719,-0.049,-0.081,-0.9038,89.3794,12.8,22.5,-37.2,327.42,-5.26,1.66,5.0,1009.63,49.089,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7031, | |
0.046,1.0058,9.3225,0.1013,0.0277,-0.6374,88.3377,12.8,22.5,-37.2,327.42,-5.26,1.66,5.0,1009.63,49.089,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7091, | |
0.046,1.0058,9.3225,0.1013,0.0277,-0.6374,88.3377,9.3,22.8,-37.7,346.19,-3.6,4.14,5.0,1009.63,47.23,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7180, | |
0.0575,-0.4839,11.7158,0.4349,-0.227,-0.8847,88.3377,9.3,22.8,-37.7,346.19,-3.6,4.14,5.0,1009.63,47.23,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7231, | |
0.0575,-0.4839,11.7158,0.4349,-0.227,-0.8847,88.3377,9.3,22.8,-37.7,346.19,-3.6,4.14,5.0,1009.63,47.23,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7281, | |
-0.0271,0.4777,9.9152,0.0757,-0.0426,-0.9038,88.3377,5.6,22.9,-37.7,346.19,-3.6,4.14,5.0,1009.63,47.23,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7385, | |
-0.0271,0.4777,9.9152,0.0757,-0.0426,-0.9038,88.3377,5.6,22.9,-37.7,346.19,-3.6,4.14,5.0,1009.63,47.23,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7435, | |
0.0289,0.8143,8.5501,0.3091,-0.1183,-0.8676,91.4997,5.6,22.9,-37.7,346.19,-3.6,4.14,5.0,1009.63,53.359,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7495, | |
0.0289,0.8143,8.5501,0.3091,-0.1183,-0.8676,91.4997,-0.4,21.0,-38.6,5.38,-3.98,3.27,5.0,1009.65,53.359,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7562, | |
0.3214,0.5306,10.4092,0.1833,0.0725,-1.0253,91.4997,-0.4,21.0,-38.6,5.38,-3.98,3.27,5.0,1009.65,53.359,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7632, | |
0.3214,0.5306,10.4092,0.1833,0.0725,-1.0253,90.4333,-0.4,21.0,-38.6,5.38,-3.98,3.27,5.0,1009.65,53.359,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7682, | |
0.3214,0.5306,10.4092,0.1833,0.0725,-1.0253,90.4333,-0.4,21.0,-38.6,5.38,-3.98,3.27,5.0,1009.65,53.359,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7732, | |
0.406,0.592,9.5329,-0.5319,-0.2888,-0.6726,90.4333,-5.9,18.3,-39.3,5.38,-3.98,3.27,5.0,1009.65,53.359,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7798, | |
0.406,0.592,9.5329,-0.5319,-0.2888,-0.6726,90.4333,-5.9,18.3,-39.3,5.38,-3.98,3.27,5.0,1009.65,49.697,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7848, | |
0.5278,1.0122,9.1401,0.0298,-0.0501,-0.5585,90.4333,-5.9,18.3,-39.3,5.38,-3.98,3.27,5.0,1009.65,49.697,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7912, | |
0.5278,1.0122,9.1401,0.0298,-0.0501,-0.5585,90.4333,-8.4,18.2,-38.8,21.12,-8.16,1.49,5.0,1009.65,49.697,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,7980, | |
0.4173,1.3137,9.4519,0.2025,-0.0959,-0.3102,97.0233,-8.4,18.2,-38.8,21.12,-8.16,1.49,5.0,1009.65,49.697,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8051, | |
0.4173,1.3137,9.4519,0.2025,-0.0959,-0.3102,97.0233,-8.4,18.2,-38.8,21.12,-8.16,1.49,5.0,1009.65,49.697,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8101, | |
0.4173,1.3137,9.4519,0.2025,-0.0959,-0.3102,97.0233,-8.4,18.2,-38.8,21.12,-8.16,1.49,5.0,1009.65,49.697,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8152, | |
0.4173,1.3137,9.4519,-0.1311,-0.2281,0.1801,99.325,-9.4,15.9,-38.7,21.12,-8.16,1.49,5.0,1009.65,47.491,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8226, | |
0.0543,0.2462,11.0603,-0.1311,-0.2281,0.1801,99.325,-9.4,15.9,-38.7,21.12,-8.16,1.49,5.0,1009.65,47.491,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8277, | |
0.0543,0.2462,11.0603,-0.388,-0.2473,0.0576,99.325,-9.4,15.9,-38.7,21.12,-8.16,1.49,5.0,1009.65,47.491,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8330, | |
-0.2438,0.8146,9.0819,-0.388,-0.2473,0.0576,99.325,-11.7,16.5,-38.4,27.93,-9.49,0.31,5.0,1009.65,47.491,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8417, | |
-0.2438,0.8146,9.0819,0.0021,-0.0885,-0.0522,107.8194,-11.7,16.5,-38.4,27.93,-9.49,0.31,5.0,1009.65,47.491,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8485, | |
-0.4429,1.5509,8.5785,0.0021,-0.0885,-0.0522,107.8194,-11.7,16.5,-38.4,27.93,-9.49,0.31,5.0,1009.65,50.338,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8541, | |
-0.4429,1.5509,8.5785,0.0139,-0.0256,-0.0714,107.8194,-12.9,16.8,-37.9,27.93,-9.49,0.31,5.0,1009.65,50.338,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8619, | |
0.2775,1.4253,10.2552,0.0139,-0.0256,-0.0714,114.3282,-12.9,16.8,-37.9,27.93,-9.49,0.31,5.0,1009.65,50.338,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8676, | |
0.2775,1.4253,10.2552,-0.3091,-0.2046,0.0906,114.3282,-12.9,16.8,-37.9,27.93,-9.49,0.31,5.0,1009.65,50.338,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8754, | |
0.1518,0.5961,10.2568,-0.3091,-0.2046,0.0906,114.3282,-13.8,16.5,-38.1,29.38,-7.43,-2.54,5.0,1009.65,50.338,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8833, | |
0.1518,0.5961,10.2568,-0.1514,0.0927,0.2398,118.4205,-13.8,16.5,-38.1,29.38,-7.43,-2.54,5.0,1009.65,51.246,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8899, | |
0.2769,0.1439,9.4762,-0.1514,0.0927,0.2398,118.4205,-12.3,16.7,-38.1,29.38,-7.43,-2.54,5.0,1009.65,51.246,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,8982, | |
0.2769,0.1439,9.4762,0.13,0.1407,0.2089,118.4205,-12.3,16.7,-38.1,29.38,-7.43,-2.54,5.0,1009.65,51.246,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,9043, | |
-0.1278,0.9378,8.8783,0.13,0.1407,0.2089,118.4205,-12.3,16.7,-38.1,29.38,-7.43,-2.54,5.0,1009.65,51.246,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,9095, | |
-0.1278,0.9378,8.8783,0.0831,0.0501,0.3581,125.5692,-10.6,17.1,-38.6,24.27,-6.29,-2.1,5.0,1009.65,51.246,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,9190, | |
-0.2464,0.8061,9.7871,0.0831,0.0501,0.3581,125.5692,-10.6,17.1,-38.6,24.27,-6.29,-2.1,5.0,1009.65,55.363,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,9253, | |
-0.2464,0.8061,9.7871,-0.1524,-0.0469,0.5852,125.5692,-10.6,17.1,-38.6,24.27,-6.29,-2.1,5.0,1009.65,55.363,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,9316, | |
-0.1828,0.4052,10.0167,-0.1524,-0.0469,0.5852,133.1494,-9.2,18.2,-38.9,24.27,-6.29,-2.1,5.0,1009.65,55.363,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,9402, | |
-0.1828,0.4052,10.0167,-0.2153,-0.0725,0.4668,133.1494,-9.2,18.2,-38.9,24.27,-6.29,-2.1,5.0,1009.65,55.363,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,9452, | |
0.1645,0.4393,9.6464,-0.2153,-0.0725,0.4668,133.1494,-9.2,18.2,-38.9,24.27,-6.29,-2.1,5.0,1009.65,55.363,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,9526, | |
0.1645,0.4393,9.6464,0.1013,0.0448,0.016,141.1872,-8.4,19.6,-38.3,15.8,-5.12,-2.1,5.0,1009.65,55.363,37.96732,-122.28161,?,?,25.0,86.0,82.0,3.986,9600, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment