GPS ์ฐ๊ตฌ 16
๊ฐ์
GPS๋ฅผ ์ดํดํ๊ณ ์ถ์์ต๋๋ค.
ntrip caster์ RTK2go.com์ sourcetable์ ํผ์ค ํด ๋ณด์๋ค.
์ฌ์ง

์ํ ์ฝ๋
function run() {
var objs = [];
var src = document.getElementById('src');
var lines = src.value.split('\n');
for (var i = 0; i < lines.length - 1; i++)
{
var line = lines[i].split(';');
switch (line[0])
{
case 'STR':
objs.push({
mountpoint: line[1],
identifier: line[2],
format: line[3],
format_details: line[4],
carrier: line[5],
nav_system: line[6],
network: line[7],
country: line[8],
latitude: line[9],
longitude: line[10],
nmea: line[11],
solution: line[12],
generator: line[13],
compression: line[14],
authentication: line[15],
bitrate: line[16],
misc: line[17]
});
case 'CAS':
case 'NET':
default:
}
}
var table = d3.select("body").insert("table", ":first-child");
var thead = table.append("thead");
var tbody = table.append("tbody");
thead.append("tr").selectAll("th").data(d3.entries(objs[0])).enter().append("th").on("click", function(d, i) {
createTableBody(d.key);
}).text(function(d) {
return d.key;
});
createTableBody("id");
function createTableBody(sortKey) {
objs.sort(function(x, y) {
return d3.descending(x[sortKey], y[sortKey]);
});
tbody.selectAll("tr").data(objs).enter().append("tr").selectAll("td").data(function(d) {
return d3.entries(d);
}).enter().append("td").text(function(d) {
return d.value;
});
tbody.selectAll("tr").data(objs).selectAll("td").data(function(d) {
return d3.entries(d);
}).text(function(d) {
return d.value;
});
}
}
์ํฐํฉํธ
์ด์.
Reference
์ด ๋ฌธ์ ์ ๊ดํ์ฌ(GPS ์ฐ๊ตฌ 16), ์ฐ๋ฆฌ๋ ์ด๊ณณ์์ ๋ ๋ง์ ์๋ฃ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋งํฌ๋ฅผ ํด๋ฆญํ์ฌ ๋ณด์๋ค https://qiita.com/ohisama@github/items/f2b09be601f8d46f3566ํ ์คํธ๋ฅผ ์์ ๋กญ๊ฒ ๊ณต์ ํ๊ฑฐ๋ ๋ณต์ฌํ ์ ์์ต๋๋ค.ํ์ง๋ง ์ด ๋ฌธ์์ URL์ ์ฐธ์กฐ URL๋ก ๋จ๊ฒจ ๋์ญ์์ค.
์ฐ์ํ ๊ฐ๋ฐ์ ์ฝํ
์ธ ๋ฐ๊ฒฌ์ ์ ๋
(Collection and Share based on the CC Protocol.)
์ข์ ์นํ์ด์ง ์ฆ๊ฒจ์ฐพ๊ธฐ
๊ฐ๋ฐ์ ์ฐ์ ์ฌ์ดํธ ์์ง
๊ฐ๋ฐ์๊ฐ ์์์ผ ํ ํ์ ์ฌ์ดํธ 100์ ์ถ์ฒ ์ฐ๋ฆฌ๋ ๋น์ ์ ์ํด 100๊ฐ์ ์์ฃผ ์ฌ์ฉํ๋ ๊ฐ๋ฐ์ ํ์ต ์ฌ์ดํธ๋ฅผ ์ ๋ฆฌํ์ต๋๋ค