https://github.com/codeforberlin/tilestache-config
Config for tiles.codefor.de
https://github.com/codeforberlin/tilestache-config
Last synced: 4 months ago
JSON representation
Config for tiles.codefor.de
- Host: GitHub
- URL: https://github.com/codeforberlin/tilestache-config
- Owner: codeforberlin
- Created: 2019-11-11T18:41:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-06-21T09:29:09.000Z (12 months ago)
- Last Synced: 2025-10-11T15:43:12.846Z (8 months ago)
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
## 🚫 Discontinued
**This repo is no longer actively maintained.**
From June 2025 on, https://github.com/codeforberlin/tiles-config is used to maintain the configuration for
https://tiles.codedefor.de. Please create issues or pull requests there.
---
About
-----
This repo hold the server config for maps like [jochenklar/berlin-maps](https://github.com/jochenklar/berlin-maps) an others.
Other projects
-----
* [luftbilder.berlin.codefor.de](https://luftbilder.berlin.codefor.de) showcases areal images from differnt years [Github](https://github.com/codeforberlin/luftbilder.berlin.codefor.de)
* [maps.berlin.codefor.de](https://maps.berlin.codefor.de) showcases all kind of maps [Github](https://github.com/codeforberlin/maps.berlin.codefor.de)
* [github.com/codeforberlin/mapproxy-config](https://github.com/codeforberlin/mapproxy-config) is a map proxy for some imagery layers by the City of Berlin
Setup
-----
```bash
apt-get install tilestache gunicorn memcached python-requests python-gdal gdal-bin
```
Usage
-----
```bash
# run dev server
tilestache-server -c config.json
# seed tiles
tilestache-seed -c config.json -b 55.05 5.86 47.27 14.04 -l bbs 10
```
Advanced
--------
Tilestache can also be installed using `pip`, but it will work only with `TileStache==1.51.4` and Python 2.
GDAL can be build manually, but it should be `<=2.4.4`. Then, the Python bindings need to be installed using `GDAL==2.4.4` (the version must match).
If GDAL is installed with a `--prefix`, e.g. `/opt/gdal-2.4.4`, the following command needs to be used to start the server:
```bash
PATH=/opt/gdal-2.4.4/bin:$PATH LD_LIBRARY_PATH=/opt/gdal-2.4.4/lib tilestache-server -c config.json
```