mapscii/README.md

147 wiersze
6.4 KiB
Markdown
Czysty Zwykły widok Historia

# MapSCII - The Whole World In Your Console.
2016-09-18 17:57:47 +00:00
MapSCII is node.js based [Vector Tile](https://github.com/mapbox/vector-tile-spec) to [Braille](http://www.fileformat.info/info/unicode/block/braille_patterns/utf8test.htm) renderer for [xterm](https://en.wikipedia.org/wiki/Xterm)-compatible terminals.
2016-09-18 17:57:47 +00:00
2016-09-28 23:25:47 +00:00
<img src="http://i.imgur.com/yYVt7No.png" width="100%" />
* Discover the globe or zoom in to explore your neighbourhood
2016-09-20 21:02:21 +00:00
* See Point-of-Interest around any given location
* Highly customizable layer styling with [Mapbox Styles](https://www.mapbox.com/mapbox-gl-style-spec/)
* Compatible with Linux and OSX terminals, Windows support via [PuTTY](http://www.putty.org/)
* Connect to any vector tile server - or just use my custom [OpenStreetMap](https://en.wikipedia.org/wiki/OpenStreetMap) based one
* Work offline and discover local VectorTile/MBTiles
* 100% pure Coffee-/JavaScript! :sunglasses:
2016-09-18 17:57:47 +00:00
## How to install
2016-09-18 17:57:47 +00:00
If you haven't already got Node.js >= version 4, then [go get it](http://nodejs.org/).
2016-09-19 07:19:31 +00:00
```
npm install -g mapscii
```
2016-09-19 07:19:31 +00: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 07:19:31 +00:00
## Running
2016-09-18 17:57:47 +00: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
* 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 21:02:21 +00:00
2016-09-18 17:57:47 +00:00
## Behind the scenes
### Libraries
#### Mastering the console
* [`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)
* [`term-mouse`](https://github.com/CoderPuppy/term-mouse) for mouse handling
* [`keypress`](https://github.com/TooTallNate/keypress) for input handling
#### Discovering the map data
* [`vector-tile`](https://github.com/mapbox/vector-tile-js) for [VectorTile](https://github.com/mapbox/vector-tile-spec/tree/master/2.1) parsing
* [`pbf`](https://github.com/mapbox/pbf) for [Protobuf](https://developers.google.com/protocol-buffers/) decoding
* [`mbtiles`](https://github.com/mapbox/node-mbtiles) for [MBTiles](https://github.com/mapbox/mbtiles-spec/blob/master/1.2/spec.md) parsing
#### Juggling the vectors and numbers
* [`earcut`](https://github.com/mapbox/earcut) for polygon triangulation
* [`rbush`](https://github.com/mourner/rbush) for 2D spatial indexing based label and mouse collision detection
* [`breseham`](https://github.com/madbence/node-bresenham) for line calculations
2016-09-20 20:40:25 +00:00
* [`sphericalmercator`](https://github.com/mapbox/node-sphericalmercator) for [EPSG:3857](http://spatialreference.org/ref/sr-org/6864/) <> [WGS84](http://spatialreference.org/ref/epsg/wgs-84/) conversions
* [`tilebelt`](https://github.com/mapbox/tilebelt) for some [slippy map tilename](https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames) calculations
#### 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
* [`request-promise`](https://github.com/request/request-promise) for promisified HTTP request handling
* [`userhome`](https://github.com/shama/userhome) to determine where to persist downloaded tiles
2016-09-18 00:44:31 +00:00
### TODOs
* MapSCII
2016-09-30 13:19:00 +00:00
* [ ] CLI support
* [X] global linking for npm install -g
2016-09-30 13:19:00 +00:00
* [ ] startup parameters
* TileSource
* [ ] VectorTile
* [ ] MBTile
* [ ] Tileserver
2016-09-30 13:19:00 +00:00
* [ ] Style
* [ ] center position
* [ ] POI filter?
* [ ] Viewport
* [x] start with zoom level which shows full
* [X] world
* [ ] vector tile
* [X] boundary based on current zoom & size
* [X] determain tiles to show
* [X] zoom while keeping center
2016-09-30 13:19:00 +00:00
* [ ] calculate tile areas
* [X] center based on mercator
2016-09-30 13:19:00 +00:00
* [x] handle console resize
* [ ] mapscii-server
* [ ] telnet
* [ ] ssh
* [x] handle console resize
2016-09-30 13:19:00 +00:00
* [ ] mouse control
* [x] accurate mouse drag&drop with instant update
* [x] hover POIs/labels
* [ ] hover maybe even polygons/-lines?
* [ ] get hover lat/lng
* [ ] zoom into mouse pos
2016-09-30 13:19:00 +00:00
* [ ] API
* [ ] setCenter
* [ ] setZoom
* Styler
* [x] compile filters to function chains
* [x] support constants
* [x] respect minzoom
2016-09-30 13:19:00 +00:00
* Renderer
* [x] position tiles accordingly
2016-09-30 13:19:00 +00:00
* [ ] line drawing
* [x] support for stroke width
* [ ] support for dashed/dotted lines?
* [ ] feature selection for priority rerendering (roads -> warter -> roads:bridges)
2016-09-30 13:19:00 +00:00
* [ ] label drawing
* [x] support for point labels
* [x] dynamic decluttering of labels
* [x] centering text labels
* [x] clipping fix when x<0 after repositioning
* [ ] multi line label
* [x] label margin to avoid POI overlap?
* [ ] translatable raster fonts
* [x] filled polygons
* [x] convert polygons to triangles
* [x] use triangulation for filling
* [x] respect fill/line style file based setting
2016-09-30 13:19:00 +00:00
* Tile
* [x] directly throw away features that aren't covered by any style
* [x] TileSource class (abstracting URL, mbtiles, single vector tile source)
* [x] tile request system
* [ ] from single vector-tile
* [x] from local mbtiles
* [x] from remote url
* [x] permanent caching of received files
2016-09-30 13:19:00 +00:00
2016-09-19 07:19:31 +00:00
## License
2016-09-20 20:40:25 +00:00
#### The MIT License (MIT)
2016-09-19 07:19:31 +00:00
Copyright (c) 2016 Michael Straßburger
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.