{"id":19050502,"url":"https://github.com/blakek/wff2csv","last_synced_at":"2025-06-13T11:08:39.244Z","repository":{"id":77618762,"uuid":"62278101","full_name":"blakek/wff2csv","owner":"blakek","description":"Converts WiFiFoFum kml files to CSV logs","archived":false,"fork":false,"pushed_at":"2019-04-30T14:50:20.000Z","size":121,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-13T11:08:28.746Z","etag":null,"topics":["csv","csv-logs","kml","wardriving","wififofum","wififofum-kml-files"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blakek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-30T04:00:56.000Z","updated_at":"2020-03-27T12:02:54.000Z","dependencies_parsed_at":"2023-03-10T08:46:03.615Z","dependency_job_id":null,"html_url":"https://github.com/blakek/wff2csv","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/blakek/wff2csv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakek%2Fwff2csv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakek%2Fwff2csv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakek%2Fwff2csv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakek%2Fwff2csv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blakek","download_url":"https://codeload.github.com/blakek/wff2csv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blakek%2Fwff2csv/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259634375,"owners_count":22887699,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["csv","csv-logs","kml","wardriving","wififofum","wififofum-kml-files"],"created_at":"2024-11-08T23:15:07.966Z","updated_at":"2025-06-13T11:08:39.232Z","avatar_url":"https://github.com/blakek.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wff2csv\n\n\u003e Convert WiFiFoFum KML files to CSV logs (e.g. for data visualization)\n\nI had a homework assignment in a security class to just go wardriving and see what interesting patterns could be found.  With an old iPhone 3GS I got got for $15, I just drove around town and collected hotspot data and geolocations.  However, I couldn't interact with it the way I wanted...  So, I wrote this to convert the KML-ish output to a CSV that can be used for data visualization.\n\n## Usage\n\nConvert the WiFiFoFum KML files to a CSV:\n\n```bash\n$ wff2csv WiFiFoFum_Log_586.kml \u003e wifi.csv\n```\n\nOutputs these fields:\n  * ESSID\n  * MAC Address\n  * Channel\n  * Security\n  * Type\n  * Latitude\n  * Longitude\n  * Elevation\n\nThen, you can choose your own way of dealing with data.  For example, you can easily create a visualization using [Google My Maps](https://www.google.com/mymaps):\n\n![Example screenshot](https://raw.githubusercontent.com/blakek/wff2csv/master/example.png)\n\n## API\n\nIf you want to write a different conversion (e.g. to JSON), there is a separate `wffParser.js` file you can take advantage of.\n\nParse a WFF KML file:\n\n```js\n// parser is installed with wff2csv\nconst wffParser = require('wff2csv/wffParser')\n\nconst wifiData = wffParser\n  .parseFile('WiFiFoFum_Log_586.kml')\n  .then(data =\u003e console.log(data))\n```\n\nLogs:\n\n```js\n[{\n  essid: '',\n  macAddress: '',\n  channel: '',\n  security: '',\n  type: '',\n  latitude: '',\n  longitude: '',\n  elevation: ''\n}]\n```\n\n## Install\n\nWith [npm](https://npmjs.org/) installed:\n\nInstall for system-wide usage:\n\n```bash\n$ npm install -g wff2csv\n```\n\nInstall for API/parser usage:\n\n```bash\n$ npm install --save wff2csv\n```\n\n## License\n\nMPL-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblakek%2Fwff2csv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblakek%2Fwff2csv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblakek%2Fwff2csv/lists"}