{"id":19388402,"url":"https://github.com/mk-fg/planetscape","last_synced_at":"2026-04-16T22:31:12.051Z","repository":{"id":4188474,"uuid":"5306354","full_name":"mk-fg/planetscape","owner":"mk-fg","description":"node-webkit app that renders network-related data (e.g. traceroutes) to a d3 world map projection","archived":false,"fork":false,"pushed_at":"2015-05-02T10:05:33.000Z","size":616,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-24T19:58:27.251Z","etag":null,"topics":["d3js","desktop","events","geo","networking","node-webkit","notifications"],"latest_commit_sha":null,"homepage":"","language":"CoffeeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"wtfpl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mk-fg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-08-05T19:33:35.000Z","updated_at":"2015-05-02T10:05:33.000Z","dependencies_parsed_at":"2022-08-26T23:10:12.955Z","dependency_job_id":null,"html_url":"https://github.com/mk-fg/planetscape","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mk-fg/planetscape","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mk-fg%2Fplanetscape","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mk-fg%2Fplanetscape/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mk-fg%2Fplanetscape/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mk-fg%2Fplanetscape/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mk-fg","download_url":"https://codeload.github.com/mk-fg/planetscape/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mk-fg%2Fplanetscape/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31907424,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["d3js","desktop","events","geo","networking","node-webkit","notifications"],"created_at":"2024-11-10T10:12:37.118Z","updated_at":"2026-04-16T22:31:12.009Z","avatar_url":"https://github.com/mk-fg.png","language":"CoffeeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Planetscape\n--------------------\n\nScript to render network-related data to a world map (and optionally place it on\ndesktop).\n\nA project of mine from a few years ago, imported from\n[old fossil repo](http://fraggod.net/code/fossil/planetscape/).\n\nIn process of being converted from python + xplanet thing to a node-webkit app.\n\nCurrent idea is to create niceish js desktop, basically:\n\n* Have kinda-heatmap of network connections there, so that paths most travelled\n\twill glow persistently.\n\n* API thru which conntrack data can be piped into the app, so that lists of\n\tconnections can be grabbed elsewhere (e.g. random remote server(s)),\n\tand it's kinda required anyway as both proper event-based conntrack data\n\t(via netlink on leenooks) and traceroutes (raw sockets) require privileged\n\tcomponent (i.e. need root euid or NET_ADMIN cap) - running node-webkit as root\n\tis just bananas.\n\n\tCurrently this stuff is just done via two api's of system cli binaries - \"mtr\"\n\t(for traceroute) and \"ss\" (connections - it's a netstat thing from iproute2).\n\n* Have all that as just one plugin, have more plugins for misc other geo-data \\o/\n\n\"desktop\" itself in this case will be an app running in a root X window and\ncomposited as a background by your favorite wm.\n\n\nLinks\n--------------------\n\n* [Amazing WebGL-based three.js geo-related rendering apps](http://callum.com/sandbox/)\n\n* [Google Ideas project to render firearm imports/exports on the globe](http://workshop.chromeexperiments.com/projects/armsglobe/)\n\t(three.js, d3.js, dat.GUI and more - see also [Data Arts project](http://data-arts.appspot.com/))\n\n* Nice wargames-style raphael.js maps for irc/visitors data:\n\t[maptail](https://github.com/stagas/maptail),\n\t[node-wargames](https://github.com/mape/node-wargames)\n\t(theme originally from [wargamez.mape.me](http://wargamez.mape.me), but that URL doesn't seem to work anymore)\n\n* [d3.js + pingdom api + geoip-lite maps php/js project](http://techslides.com/traceroute-on-a-map-using-pingdom-api-maxmind-and-d3/)\n\n* [Great overview of js libs/plugins for maps](http://techslides.com/50-javascript-libraries-and-plugins-for-maps/)\n\n* [More d3 map projections/ideas](http://www.jasondavies.com/maps/)\n\n* [GeoXPlanet app](http://sourceforge.net/projects/geoxplanet/) - source of the\n\tidea behind this project, uses [XPlanet](http://xplanet.sourceforge.net/)\n\n* [node-webkit project](https://github.com/rogerwang/node-webkit)\n\n* Old [fossil](http://www.fossil-scm.org/) project:\n\thttp://fraggod.net/code/fossil/planetscape/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmk-fg%2Fplanetscape","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmk-fg%2Fplanetscape","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmk-fg%2Fplanetscape/lists"}