├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── lakelines.png └── src ├── calculate-centerlines └── Dockerfile ├── export-shapefile ├── Dockerfile └── export-shapefile.sh ├── import-osm ├── Dockerfile ├── import-pbf.sh └── mapping.yml └── postgres ├── Dockerfile └── initdb-postgis.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lakelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/lakelines.png -------------------------------------------------------------------------------- /src/calculate-centerlines/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/src/calculate-centerlines/Dockerfile -------------------------------------------------------------------------------- /src/export-shapefile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/src/export-shapefile/Dockerfile -------------------------------------------------------------------------------- /src/export-shapefile/export-shapefile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/src/export-shapefile/export-shapefile.sh -------------------------------------------------------------------------------- /src/import-osm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/src/import-osm/Dockerfile -------------------------------------------------------------------------------- /src/import-osm/import-pbf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/src/import-osm/import-pbf.sh -------------------------------------------------------------------------------- /src/import-osm/mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/src/import-osm/mapping.yml -------------------------------------------------------------------------------- /src/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/src/postgres/Dockerfile -------------------------------------------------------------------------------- /src/postgres/initdb-postgis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasmartinelli/osm-lakelines/HEAD/src/postgres/initdb-postgis.sh --------------------------------------------------------------------------------