Go to file
sys4-fr 6af26530ca Remplissage du dépôt 2018-12-13 21:09:02 +01:00
cmd Remplissage du dépôt 2018-12-13 21:09:02 +01:00
common Remplissage du dépôt 2018-12-13 21:09:02 +01:00
mods/track_players Remplissage du dépôt 2018-12-13 21:09:02 +01:00
.hg_archival.txt Remplissage du dépôt 2018-12-13 21:09:02 +01:00
.hgtags Remplissage du dépôt 2018-12-13 21:09:02 +01:00
3rdpartylibs.sh Remplissage du dépôt 2018-12-13 21:09:02 +01:00
COMPILE.md Remplissage du dépôt 2018-12-13 21:09:02 +01:00
LICENSE Remplissage du dépôt 2018-12-13 21:09:02 +01:00
README.md Remplissage du dépôt 2018-12-13 21:09:02 +01:00
SETUP.md Remplissage du dépôt 2018-12-13 21:09:02 +01:00
TODO Remplissage du dépôt 2018-12-13 21:09:02 +01:00
colors.txt Remplissage du dépôt 2018-12-13 21:09:02 +01:00

README.md

MTSatellite

MTSatellite is a "realtime" web mapping system for Minetest worlds.
With this system you can play your world and you instantly have an online map of it which can be shared on the web.

To get a glimpse what it does watch Realtime Webmapping for Minetest worlds on YouTube.
A live map of an online world can be viewed here.

See COMPILE how to compile MTSatellite. Essentially you need Go 1.4 (or higher) and a GNU/Linux system.

See SETUP how to bring MTSatellite to life.

To use it you have to configure your Minetest server to use the Redis backend data store. Instead of a real Redis server you have to run mtredisalize. The data itself is not stored in a Redis server. It only uses the Redis protocol to communicate with the MT server. The data is stored in an optimized form in a LevelDB or SQLite3 database. Changes made to the world are collected over a configurable amount of time periodically. After a cycle of collection the web server mtwebmapper is triggered to regenerate the map. To not fully regenerate the whole world map but only the differences the map has to be pre-rendered with mtseeder.

  • mtredisalize is a server which has to be configured as a Redis backend to the Minetest server.

  • mtwebmapper Web server that serves Leaflet compatible tiles to a web browser. Running in the background this server updates the pre-computed map tiles.

  • mtdbconverter is converter between Minetest databases. mtredisalize works best if you use a special interleaved LevelDB key schema. To bring your old database (LevelBD or SQLite3) into this format this tool does the job. It can also be used to convert the interleaved database back to a plain LevelDB or SQLite3 one.

  • mtseeder pre-computes all tiles of the map of the world plus a set of pyramidal overview images. Even playing in a dynamic and fully changeable world most of the data is pretty constant over time. Therefore it makes sense to do only small updates on pre-calculated images instead of generating the map entirely on the fly.

This is Free Software under the terms of the MIT license. See LICENSE file for details.
(c) 2014 by Sascha L. Teichmann