Skip to content

Calculate nice centered linestrings for labelling OpenStreetMap lakes

License

Notifications You must be signed in to change notification settings

openmaptiles/osm-lakelines

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenStreetMap Lake Labels

Lake center lines for labels

An "updated version" of Lukas Martinelli's osm-lakelines using newer base images, Imposm3 0.11.1, Python 3.8, NetworkX 2+ and ungarj's updated label_centerlines repsitory. There are two main reasons for this version, one being OpenMapTiles repository is still pulling from Luka's version 0.9 of global lake lines. The second being the problems I had with foreign character sets (UTF-8) in Python 2 while running Luka's code.

Database parameters are now parsed from .env and .env-postgres so to integrate with OpenMapTiles. The parameter -segmentize_maxlen is increased from 0.5 to 100 in order to tackle a "Polygon has too few points" error.

Otherwise everything remains relatively identical.

Calculate nice centered linestrings for labelling lake polygons. This repository provides downloadable Shapefiles containing center lines for lake polygons that you can use to label OSM lake polygons. You can match the OSM ID of the linestrings to your data source to merge the data.

It is using ungarj/label_centerlines from Joachim Ungar to calculate the center lines. This doesn't always result the optimal result and has issues with more complicated lake structures but is sufficient enough for most use cases. Linestrings are not calculated for all lake polygons. Very small polygons, multi polygons and lakes without names are excluded.

Run Workflow

The entire project is structured components using Docker containers to work together. Ensure you meet the prerequisites.

Start up the PostgreSQL database with the PostGIS extension.

docker-compose up -d postgres

Now download a OSM PBF extract and store it in the ./data dir.

wget -P ./data https://download.geofabrik.de/europe/andorra-latest.osm.pbf

Import the OSM PBF.

docker-compose run import-osm

Export a Shapefile containing simplified lake polygons.

docker-compose run export-shapefile

Calculate lake center lines from the previously exported Shapefile.

docker-compose run calculate-centerlines

About

Calculate nice centered linestrings for labelling OpenStreetMap lakes

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 70.0%
  • Dockerfile 15.2%
  • Shell 14.8%