Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ramyaragupathy/v1-extractor
https://github.com/ramyaragupathy/v1-extractor
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ramyaragupathy/v1-extractor
- Owner: ramyaragupathy
- Created: 2018-11-13T13:11:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T06:47:40.000Z (about 6 years ago)
- Last Synced: 2024-11-07T15:52:46.836Z (2 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# v1-extractor
- Run overpass query: http://overpass-turbo.eu/s/DD1. Query returns all version 2 & version 3 nodes in csv format. Save these results in a csv file. In this case, I've saved it in `refugee-list.csv` file
- Clone this git repository: `[email protected]:ramyaragupathy/v1-extractor.git`
- cd into the working directory: `cd v1-extractor`
- Run `npm install` to install dependencies
- Copy your `refugee-list.csv` to this working directory
- Next run `node v1-timestamp-extractor.js > v1-nodes.csv`. This saves all version 1 timestamp in a csv file## Usage on windows
In Windows setup, you might encounter a `node-gyp rebuild` related issue while running `npm install`. Follow the [documentation from node-gyp](https://github.com/nodejs/node-gyp) for the installation to get through. Listing out the steps that was tested on Windows:
- Install all the required tools and configurations using Microsoft's windows-build-tools using `npm install --global --production windows-build-tools` from an elevated PowerShell or CMD.exe (run as Administrator).
- If you have multiple Python versions installed, you can identify which Python version node-gyp uses by setting the --python variable:
`node-gyp --python /path/to/python2.7`
- Then run `npm install`