2019-10-11 15:46:47 +02:00
# MapSCII - The Whole World In Your Console. [![Build Status](https://travis-ci.com/rastapasta/mapscii.svg?branch=master)](https://travis-ci.com/rastapasta/mapscii)
2016-09-18 19:57:47 +02:00
2016-11-08 15:10:57 +01:00
A node.js based [Vector Tile ](http://wiki.openstreetmap.org/wiki/Vector_tiles ) to [Braille ](http://www.fileformat.info/info/unicode/block/braille_patterns/utf8test.htm ) and [ASCII ](https://de.wikipedia.org/wiki/American_Standard_Code_for_Information_Interchange ) renderer for [xterm ](https://en.wikipedia.org/wiki/Xterm )-compatible terminals.
2016-09-18 19:57:47 +02:00
2017-04-27 13:17:25 +02:00
< a href = "https://asciinema.org/a/117813?autoplay=1" target = "_blank" > ![asciicast](https://cloud.githubusercontent.com/assets/1259904/25480718/497a64e2-2b4a-11e7-9cf0-ed52ee0b89c0.png)< / a >
2016-09-29 01:25:47 +02:00
2017-04-30 01:12:51 +02:00
## Try it out!
```sh
$ telnet mapscii.me
```
2017-05-10 14:34:42 +02:00
If you're on Windows, use the open source telnet client [PuTTY ](https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html ) to connect.
2016-11-08 15:10:57 +01:00
## Features
2017-04-29 00:39:20 +02:00
* Use your mouse to drag and zoom in and out!
2016-11-08 15:10:57 +01:00
* Discover Point-of-Interests around any given location
* Highly customizable layer styling with [Mapbox Styles ](https://www.mapbox.com/mapbox-gl-style-spec/ ) support
* Connect to any public or private vector tile server
2017-04-29 03:44:51 +02:00
* Or just use the supplied and optimized [OSM2VectorTiles ](https://github.com/osm2vectortiles ) based one
2016-11-08 15:10:57 +01:00
* Work offline and discover local [VectorTile ](https://github.com/mapbox/vector-tile-spec )/[MBTiles](https://github.com/mapbox/mbtiles-spec)
* Compatible with most Linux and OSX terminals
2019-07-12 00:15:09 +02:00
* Highly optimized algorithms for a smooth experience
2017-12-23 11:18:55 +01:00
* 100% pure JavaScript! :sunglasses:
2016-09-18 19:57:47 +02:00
2019-10-11 00:51:36 +02:00
## How to run it locally
With a modern node installation available, just start it with
```
npx mapscii
```
2017-04-30 01:12:51 +02:00
## How to install it locally
2016-09-18 19:57:47 +02:00
2018-02-13 02:32:18 +01:00
### With npm
2020-05-28 12:18:00 +02:00
If you haven't already got Node.js >= version 10, then [go get it ](http://nodejs.org/ ).
2016-09-19 09:19:31 +02:00
2016-11-05 22:02:51 +01:00
```
npm install -g mapscii
```
2016-09-19 09:19:31 +02:00
2016-11-05 22:02:51 +01:00
If you're on OSX, or get an error about file permissions, you may need to do ```sudo npm install -g mapscii```
2016-09-19 09:19:31 +02:00
2018-02-13 02:32:18 +01:00
### With snap
In any of the [supported Linux distros ](https://snapcraft.io/docs/core/install ):
sudo snap install mapscii
(This snap is maintained by [@nathanhaines ](https://github.com/nathanhaines/ ))
2016-11-05 22:02:51 +01:00
## Running
2016-09-18 19:57:47 +02:00
2016-11-05 22:02:51 +01:00
This is pretty simple too.
```
mapscii
```
## Keyboard shortcuts
* Arrows **up** , **down** , **left** , **right** to scroll around
* Press **a** or **z** to zoom in and out
2019-10-11 00:51:36 +02:00
* Press **c** to switch to block character mode
2016-11-05 22:02:51 +01:00
* Press **q** to quit
## Mouse control
If your terminal supports mouse events you can drag the map and use your scroll wheel to zoom in and out.
2016-09-20 23:02:21 +02:00
2016-09-18 19:57:47 +02:00
## Behind the scenes
### Libraries
2016-09-20 22:36:22 +02:00
#### Mastering the console
2016-09-27 14:53:47 +02:00
* [`x256` ](https://github.com/substack/node-x256 ) for converting RGB values to closest xterm-256 [color code ](https://en.wikipedia.org/wiki/File:Xterm_256color_chart.svg )
2016-09-20 22:36:22 +02:00
* [`term-mouse` ](https://github.com/CoderPuppy/term-mouse ) for mouse handling
* [`keypress` ](https://github.com/TooTallNate/keypress ) for input handling
2017-05-14 14:47:19 +02:00
* [`string-width` ](https://github.com/sindresorhus/string-width ) to determine visual string lengths
2016-09-20 22:36:22 +02:00
#### Discovering the map data
2016-11-03 02:41:08 +01:00
* [`vector-tile` ](https://github.com/mapbox/vector-tile-js ) for [VectorTile ](https://github.com/mapbox/vector-tile-spec/tree/master/2.1 ) parsing
2016-09-20 22:36:22 +02:00
* [`pbf` ](https://github.com/mapbox/pbf ) for [Protobuf ](https://developers.google.com/protocol-buffers/ ) decoding
2016-11-03 02:41:08 +01:00
* [`mbtiles` ](https://github.com/mapbox/node-mbtiles ) for [MBTiles ](https://github.com/mapbox/mbtiles-spec/blob/master/1.2/spec.md ) parsing
2016-09-20 22:36:22 +02:00
#### Juggling the vectors and numbers
2016-09-27 13:57:59 +02:00
* [`earcut` ](https://github.com/mapbox/earcut ) for polygon triangulation
2016-11-10 06:14:20 +01:00
* [`rbush` ](https://github.com/mourner/rbush ) for 2D spatial indexing of geo and label data
2018-07-14 23:26:07 +02:00
* [`bresenham` ](https://github.com/madbence/node-bresenham ) for line point calculations
2016-11-10 06:14:20 +01:00
* [`simplify-js` ](https://github.com/mourner/simplify-js ) for polyline simplifications
2016-11-03 02:41:08 +01:00
#### Handling the flow
* [`bluebird` ](https://github.com/petkaantonov/bluebird ) for all the asynchronous [Promise ](https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Promise ) magic
2017-04-26 23:39:02 +02:00
* [`node-fetch` ](https://github.com/bitinn/node-fetch ) for HTTP requests
2016-11-04 01:42:23 +01:00
* [`userhome` ](https://github.com/shama/userhome ) to determine where to persist downloaded tiles
2016-09-18 02:44:31 +02:00
2016-09-18 21:15:21 +02:00
### TODOs
2016-11-03 02:41:08 +01:00
* MapSCII
2017-04-26 17:55:03 +02:00
* [ ] GeoJSON support via [geojson-vt ](https://github.com/mapbox/geojson-vt )
2016-09-30 15:19:00 +02:00
* [ ] CLI support
* [ ] startup parameters
2016-11-08 15:10:57 +01:00
* [ ] TileSource
2016-09-30 15:19:00 +02:00
* [ ] Style
* [ ] center position
2016-11-08 15:10:57 +01:00
* [ ] zoom
* [ ] demo mode?
2016-09-30 15:19:00 +02:00
* [ ] mouse control
2016-11-08 15:10:57 +01:00
* [ ] hover POIs/labels
2016-09-30 15:19:00 +02:00
* [ ] hover maybe even polygons/-lines?
* Styler
2017-04-26 17:59:59 +02:00
* [ ] respect zoom based style ranges
2016-09-30 15:19:00 +02:00
* Renderer
2017-04-27 13:12:56 +02:00
* [ ] download and process tiles in a different thread ([#3](https://github.com/rastapasta/mapscii/issues/3))
* [ ] optimize renderer for large areas ([#6](https://github.com/rastapasta/mapscii/issues/6))
2016-09-30 15:19:00 +02:00
* [ ] label drawing
2016-11-08 15:10:57 +01:00
* [ ] multi line label?
* TileSource
* [ ] implement single vector-tile handling
2016-09-30 15:19:00 +02:00
2017-04-29 03:44:51 +02:00
## Special thanks
2017-04-29 06:46:54 +02:00
* [lukasmartinelli ](https://github.com/lukasmartinelli ) & [manuelroth ](https://github.com/manuelroth ) for all their work on [OSM2VectorTiles ](https://github.com/osm2vectortiles ) (global vector tiles from [OSM Planet ](https://wiki.openstreetmap.org/wiki/Planet.osm ))
2017-04-29 03:49:34 +02:00
* [mourner ](https://github.com/mourner ) for all his work on mindblowing GIS algorithms (like the used [earcut ](https://github.com/mapbox/earcut ), [rbush ](https://github.com/mourner/rbush ), [simplify-js ](https://github.com/mourner/simplify-js ), ..)
2017-04-29 03:44:51 +02:00
2017-05-10 14:32:45 +02:00
## Licenses
### Map data
#### The Open Data Commons Open Database License (oDbl)
[OpenStreetMap ](https://www.openstreetmap.org ) is open data, licensed under the [Open Data Commons Open Database License ](http://opendatacommons.org/licenses/odbl/ ) (ODbL) by the [OpenStreetMap Foundation ](http://osmfoundation.org/ ) (OSMF).
You are free to copy, distribute, transmit and adapt our data, as long as you credit OpenStreetMap and its contributors. If you alter or build upon our data, you may distribute the result only under the same licence. The full [legal code ](http://opendatacommons.org/licenses/odbl/1.0/ ) explains your rights and responsibilities.
The cartography in our map tiles, and our documentation, are licenced under the [Creative Commons Attribution-ShareAlike 2.0 ](http://creativecommons.org/licenses/by-sa/2.0/ ) licence (CC BY-SA).
### MapSCII
2019-03-25 01:36:30 +01:00
* [License ](./LICENSE )
2019-07-12 00:15:09 +02:00
* [Authors ](./AUTHORS )