Stefan Erhardt

Results 72 comments of Stefan Erhardt

Great work, @max-dn! By scrolling around over your map, I found some lakes where the result is not optimum. The line of the "Malchiner See" is too close to its...

This looks very nice: ![lake4](https://user-images.githubusercontent.com/3618939/39780586-07ea50dc-530d-11e8-8587-1ecda4ac8e66.png)

In the current style there is an issue with the text rendering: https://github.com/der-stefan/OpenTopoMap/blob/95f308d43c80f6d5ae03dc47527d139d1d9895b8/mapnik/styles-otm/text-water-lowzoom.xml#L5 In detail: ``horizontal-alignment="adjust"`` sometimes works as expected, sometimes it simply doesn't show any label. Could be the...

@Ircama Yes, it would make sense to use this algorithm for any kind of "natural=*" polynom. Let's see what comes next.

OpenMapTile also creates center labels: https://openmaptiles.org/schema/#water_name from https://github.com/lukasmartinelli/osm-lakelines

You can see the style by visiting http://editor.openmaptiles.org and loading the style from URL https://raw.githubusercontent.com/der-stefan/OpenTopoMap/master/mapbox-gl/opentopomap.json

Here is an informative blog post about two different ways how to generate vector tiles: https://carto.com/blog/inside/MVT-mapnik-vs-postgis/ For us, mapnik-vecor-tile should be preferred, as the whole select logic is in our...

Yes, there was an issue with the XML parser. The standard one does not handle entities. But according to my notes in the readme file, I installed mapnik from the...

Thanks for your comment, @Schockwellenreiter. I increased the text size just by one - please wait for your tiles to be rendered (may take days to weeks).

This selects all line segments that intersect with riverbank polygons: ``` SELECT l.way,l.name,l.waterway FROM planet_osm_line l JOIN planet_osm_polygon p ON ST_Intersects(p.way,l.way) WHERE p.waterway='riverbank' AND l.name='Wiesent' AND l.waterway='river' ``` Problem: We...