Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klzns/map-viz
https://github.com/klzns/map-viz
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/klzns/map-viz
- Owner: klzns
- Created: 2017-07-17T03:26:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T18:12:52.000Z (over 7 years ago)
- Last Synced: 2024-11-12T15:43:46.519Z (3 months ago)
- Language: JavaScript
- Size: 124 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Map Viz
## Setup```sh
npm install
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
```Install Redis
Mac:
```sh
brew install redis
```Ubuntu
```sh
sudo apt-get install redis-server
```Add the data file to the root folder with the name `data.geojson`
## Running
Open a terminal and type:
```sh
npm start
```Open another terminal and type:
```sh
source venv/bin/activate
python app.py
```Run Redis
```sh
redis-server
```