Compare commits
42 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
705237446a | ||
|
1e684edb6a | ||
|
4b93ca3e52 | ||
|
0a4d079b08 | ||
|
60ac7657d1 | ||
|
ce176ae32e | ||
|
7b82bcae9d | ||
|
85eaca5c79 | ||
|
9679b29b50 | ||
|
8f2c575ad6 | ||
|
75e7714f20 | ||
|
ec500a2cde | ||
|
affae5a92d | ||
|
a204fb85fd | ||
|
7636079b4d | ||
|
2ae828c52b | ||
|
6fb62935f3 | ||
|
953232051f | ||
|
bedff2a880 | ||
|
e79901b7dd | ||
|
5a059ab0a5 | ||
|
bcf2cfcada | ||
|
0e1db36457 | ||
|
677b52468e | ||
|
1093734e1b | ||
|
9fb0743c51 | ||
|
19cb75baa4 | ||
|
82bc6a35a3 | ||
|
44490df8c5 | ||
|
6dc84f1d26 | ||
|
26a4b9f239 | ||
|
2754592d1c | ||
|
e838310073 | ||
|
cca2d00a78 | ||
|
cc5b50b050 | ||
|
d8f2fc14e4 | ||
|
1b437e143f | ||
|
acedcce53d | ||
|
e15dee4665 | ||
|
83f26e1abe | ||
|
6d0e8070f5 | ||
|
2a69c977c9 |
299
Dockerfile
299
Dockerfile
@@ -1,183 +1,214 @@
|
|||||||
FROM ubuntu:18.04
|
FROM ubuntu:20.04 AS compiler-common
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
git-core \
|
||||||
|
checkinstall \
|
||||||
|
g++ \
|
||||||
|
make \
|
||||||
|
tar \
|
||||||
|
wget \
|
||||||
|
ca-certificates
|
||||||
|
|
||||||
|
###########################################################################################################
|
||||||
|
|
||||||
|
FROM compiler-common AS compiler-postgis
|
||||||
|
RUN apt-get install -y --no-install-recommends \
|
||||||
|
postgresql-server-dev-12 \
|
||||||
|
libxml2-dev \
|
||||||
|
libgeos-dev \
|
||||||
|
libproj-dev
|
||||||
|
RUN wget https://download.osgeo.org/postgis/source/postgis-3.1.1.tar.gz -O postgis.tar.gz \
|
||||||
|
&& mkdir -p postgis_src \
|
||||||
|
&& tar -xvzf postgis.tar.gz --strip 1 -C postgis_src \
|
||||||
|
&& rm postgis.tar.gz \
|
||||||
|
&& cd postgis_src \
|
||||||
|
&& ./configure --without-protobuf --without-raster \
|
||||||
|
&& make -j $(nproc) \
|
||||||
|
&& checkinstall --pkgversion="3.1.1" --install=no --default make install
|
||||||
|
|
||||||
|
###########################################################################################################
|
||||||
|
|
||||||
|
FROM compiler-common AS compiler-osm2pgsql
|
||||||
|
RUN apt-get install -y --no-install-recommends \
|
||||||
|
cmake \
|
||||||
|
libboost-dev \
|
||||||
|
libboost-system-dev \
|
||||||
|
libboost-filesystem-dev \
|
||||||
|
libexpat1-dev \
|
||||||
|
zlib1g-dev \
|
||||||
|
libbz2-dev \
|
||||||
|
libpq-dev \
|
||||||
|
libproj-dev \
|
||||||
|
lua5.3 \
|
||||||
|
liblua5.3-dev \
|
||||||
|
pandoc
|
||||||
|
RUN cd ~ \
|
||||||
|
&& git clone -b master --single-branch https://github.com/openstreetmap/osm2pgsql.git --depth 1 \
|
||||||
|
&& cd osm2pgsql \
|
||||||
|
&& mkdir build \
|
||||||
|
&& cd build \
|
||||||
|
&& cmake .. \
|
||||||
|
&& make -j $(nproc) \
|
||||||
|
&& checkinstall --pkgversion="1" --install=no --default make install
|
||||||
|
|
||||||
|
###########################################################################################################
|
||||||
|
|
||||||
|
FROM compiler-common AS compiler-modtile-renderd
|
||||||
|
RUN apt-get install -y --no-install-recommends \
|
||||||
|
apache2-dev \
|
||||||
|
automake \
|
||||||
|
autoconf \
|
||||||
|
autotools-dev \
|
||||||
|
libtool \
|
||||||
|
libmapnik-dev
|
||||||
|
RUN cd ~ \
|
||||||
|
&& git clone -b switch2osm --single-branch https://github.com/SomeoneElseOSM/mod_tile.git --depth 1 \
|
||||||
|
&& cd mod_tile \
|
||||||
|
&& ./autogen.sh \
|
||||||
|
&& ./configure \
|
||||||
|
&& make -j $(nproc) \
|
||||||
|
&& checkinstall --pkgversion="1" --install=no --pkgname "renderd" --default make install \
|
||||||
|
&& checkinstall --pkgversion="1" --install=no --pkgname "mod_tile" --default make install-mod_tile
|
||||||
|
|
||||||
|
###########################################################################################################
|
||||||
|
|
||||||
|
FROM compiler-common AS compiler-stylesheet
|
||||||
|
RUN apt-get install -y --no-install-recommends \
|
||||||
|
npm
|
||||||
|
RUN cd ~ \
|
||||||
|
&& git clone --single-branch --branch v5.3.1 https://github.com/gravitystorm/openstreetmap-carto.git --depth 1 \
|
||||||
|
&& cd openstreetmap-carto \
|
||||||
|
&& sed -ie 's#https:\/\/naciscdn.org\/naturalearth\/110m\/cultural\/ne_110m_admin_0_boundary_lines_land.zip#https:\/\/naturalearth.s3.amazonaws.com\/110m_cultural\/ne_110m_admin_0_boundary_lines_land.zip#g' external-data.yml \
|
||||||
|
&& npm install -g carto@0.18.2 \
|
||||||
|
&& carto project.mml > mapnik.xml
|
||||||
|
|
||||||
|
###########################################################################################################
|
||||||
|
|
||||||
|
FROM compiler-common AS compiler-helper-script
|
||||||
|
RUN mkdir -p /home/renderer/src \
|
||||||
|
&& cd /home/renderer/src \
|
||||||
|
&& git clone https://github.com/zverik/regional \
|
||||||
|
&& cd regional \
|
||||||
|
&& git checkout 889d630a1e1a1bacabdd1dad6e17b49e7d58cd4b \
|
||||||
|
&& rm -rf .git \
|
||||||
|
&& chmod u+x /home/renderer/src/regional/trim_osc.py
|
||||||
|
|
||||||
|
###########################################################################################################
|
||||||
|
|
||||||
|
FROM ubuntu:20.04 AS final-base
|
||||||
|
|
||||||
# Based on
|
# Based on
|
||||||
# https://switch2osm.org/manually-building-a-tile-server-18-04-lts/
|
# https://switch2osm.org/serving-tiles/manually-building-a-tile-server-18-04-lts/
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
# Set up environment
|
|
||||||
ENV TZ=UTC
|
|
||||||
ENV AUTOVACUUM=on
|
ENV AUTOVACUUM=on
|
||||||
ENV UPDATES=disabled
|
ENV UPDATES=disabled
|
||||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||||
|
|
||||||
# Install dependencies
|
# Get packages
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install wget gnupg2 lsb-core -y \
|
&& apt-get install -y --no-install-recommends \
|
||||||
&& wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
|
|
||||||
&& echo "deb [ trusted=yes ] http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get install -y apt-transport-https ca-certificates
|
|
||||||
|
|
||||||
RUN apt-get install -y curl \
|
|
||||||
&& wget --quiet -O - https://deb.nodesource.com/setup_10.x | bash - \
|
|
||||||
&& apt-get install -y nodejs
|
|
||||||
|
|
||||||
RUN apt-get install -y --no-install-recommends --allow-unauthenticated \
|
|
||||||
apache2 \
|
apache2 \
|
||||||
apache2-dev \
|
|
||||||
autoconf \
|
|
||||||
build-essential \
|
|
||||||
bzip2 \
|
|
||||||
cmake \
|
|
||||||
cron \
|
cron \
|
||||||
fonts-noto-cjk \
|
fonts-noto-cjk \
|
||||||
fonts-noto-hinted \
|
fonts-noto-hinted \
|
||||||
fonts-noto-unhinted \
|
fonts-noto-unhinted \
|
||||||
gcc \
|
|
||||||
gdal-bin \
|
gdal-bin \
|
||||||
git-core \
|
|
||||||
libagg-dev \
|
|
||||||
libboost-filesystem-dev \
|
|
||||||
libboost-system-dev \
|
|
||||||
libbz2-dev \
|
|
||||||
libcairo-dev \
|
|
||||||
libcairomm-1.0-dev \
|
|
||||||
libexpat1-dev \
|
|
||||||
libfreetype6-dev \
|
|
||||||
libgdal-dev \
|
|
||||||
libgeos++-dev \
|
|
||||||
libgeos-dev \
|
|
||||||
libgeotiff-epsg \
|
|
||||||
libicu-dev \
|
|
||||||
liblua5.3-dev \
|
liblua5.3-dev \
|
||||||
libmapnik-dev \
|
|
||||||
libpq-dev \
|
|
||||||
libproj-dev \
|
|
||||||
libprotobuf-c0-dev \
|
|
||||||
libtiff5-dev \
|
|
||||||
libtool \
|
|
||||||
libxml2-dev \
|
|
||||||
lua5.3 \
|
lua5.3 \
|
||||||
make \
|
|
||||||
mapnik-utils \
|
mapnik-utils \
|
||||||
node-gyp \
|
|
||||||
osmium-tool \
|
osmium-tool \
|
||||||
osmosis \
|
osmosis \
|
||||||
postgis \
|
|
||||||
postgresql-12 \
|
postgresql-12 \
|
||||||
postgresql-contrib-12 \
|
python-is-python3 \
|
||||||
postgresql-server-dev-12 \
|
|
||||||
protobuf-c-compiler \
|
|
||||||
python3-mapnik \
|
python3-mapnik \
|
||||||
python3-lxml \
|
python3-lxml \
|
||||||
python3-psycopg2 \
|
python3-psycopg2 \
|
||||||
python3-shapely \
|
python3-shapely \
|
||||||
|
python3-pip \
|
||||||
sudo \
|
sudo \
|
||||||
tar \
|
|
||||||
ttf-unifont \
|
ttf-unifont \
|
||||||
unzip \
|
|
||||||
wget \
|
wget \
|
||||||
zlib1g-dev \
|
|
||||||
&& apt-get clean autoclean \
|
&& apt-get clean autoclean \
|
||||||
&& apt-get autoremove --yes \
|
&& apt-get autoremove --yes \
|
||||||
&& rm -rf /var/lib/{apt,dpkg,cache,log}/
|
&& rm -rf /var/lib/{apt,dpkg,cache,log}/
|
||||||
|
|
||||||
# Set up PostGIS
|
|
||||||
RUN wget http://download.osgeo.org/postgis/source/postgis-3.0.0.tar.gz -O postgis.tar.gz \
|
|
||||||
&& mkdir -p postgis_src \
|
|
||||||
&& tar -xvzf postgis.tar.gz --strip 1 -C postgis_src \
|
|
||||||
&& rm postgis.tar.gz \
|
|
||||||
&& cd postgis_src \
|
|
||||||
&& ./configure && make && make install \
|
|
||||||
&& cd .. && rm -rf postgis_src
|
|
||||||
|
|
||||||
# Set up renderer user
|
|
||||||
RUN adduser --disabled-password --gecos "" renderer
|
RUN adduser --disabled-password --gecos "" renderer
|
||||||
|
|
||||||
# Install latest osm2pgsql
|
# Install python libraries
|
||||||
RUN mkdir -p /home/renderer/src \
|
RUN pip3 install \
|
||||||
&& cd /home/renderer/src \
|
requests \
|
||||||
&& git clone https://github.com/openstreetmap/osm2pgsql.git \
|
pyyaml
|
||||||
&& cd /home/renderer/src/osm2pgsql \
|
|
||||||
&& rm -rf .git \
|
|
||||||
&& mkdir build \
|
|
||||||
&& cd build \
|
|
||||||
&& cmake .. \
|
|
||||||
&& make -j $(nproc) \
|
|
||||||
&& make install \
|
|
||||||
&& mkdir /nodes \
|
|
||||||
&& chown renderer:renderer /nodes \
|
|
||||||
&& rm -rf /home/renderer/src/osm2pgsql
|
|
||||||
|
|
||||||
# Install mod_tile and renderd
|
|
||||||
RUN mkdir -p /home/renderer/src \
|
|
||||||
&& cd /home/renderer/src \
|
|
||||||
&& git clone -b switch2osm https://github.com/SomeoneElseOSM/mod_tile.git \
|
|
||||||
&& cd mod_tile \
|
|
||||||
&& ./autogen.sh \
|
|
||||||
&& ./configure \
|
|
||||||
&& make -j $(nproc) \
|
|
||||||
&& make -j $(nproc) install \
|
|
||||||
&& make -j $(nproc) install-mod_tile \
|
|
||||||
&& ldconfig \
|
|
||||||
&& cd ..
|
|
||||||
|
|
||||||
# Configure stylesheet
|
|
||||||
RUN mkdir -p /home/renderer/src \
|
|
||||||
&& cd /home/renderer/src \
|
|
||||||
&& git clone https://github.com/gravitystorm/openstreetmap-carto.git \
|
|
||||||
&& git -C openstreetmap-carto checkout v4.23.0 \
|
|
||||||
&& cd openstreetmap-carto \
|
|
||||||
&& rm -rf .git \
|
|
||||||
&& npm install -g carto@0.18.2 \
|
|
||||||
&& carto project.mml > mapnik.xml \
|
|
||||||
&& scripts/get-shapefiles.py \
|
|
||||||
&& rm /home/renderer/src/openstreetmap-carto/data/*.zip
|
|
||||||
|
|
||||||
# Configure renderd
|
|
||||||
RUN sed -i 's/renderaccount/renderer/g' /usr/local/etc/renderd.conf \
|
|
||||||
&& sed -i 's/hot/tile/g' /usr/local/etc/renderd.conf
|
|
||||||
|
|
||||||
# Configure Apache
|
# Configure Apache
|
||||||
RUN mkdir /var/lib/mod_tile \
|
RUN mkdir /var/lib/mod_tile \
|
||||||
&& chown renderer /var/lib/mod_tile \
|
&& chown renderer /var/lib/mod_tile \
|
||||||
&& mkdir /var/run/renderd \
|
&& mkdir /var/run/renderd \
|
||||||
&& chown renderer /var/run/renderd \
|
&& chown renderer /var/run/renderd \
|
||||||
&& echo "LoadModule tile_module /usr/lib/apache2/modules/mod_tile.so" >> /etc/apache2/conf-available/mod_tile.conf \
|
&& echo "LoadModule tile_module /usr/lib/apache2/modules/mod_tile.so" >> /etc/apache2/conf-available/mod_tile.conf \
|
||||||
&& echo "LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so" >> /etc/apache2/conf-available/mod_headers.conf \
|
&& echo "LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so" >> /etc/apache2/conf-available/mod_headers.conf \
|
||||||
&& a2enconf mod_tile && a2enconf mod_headers
|
&& a2enconf mod_tile && a2enconf mod_headers
|
||||||
COPY apache.conf /etc/apache2/sites-available/000-default.conf
|
COPY apache.conf /etc/apache2/sites-available/000-default.conf
|
||||||
COPY leaflet-demo.html /var/www/html/index.html
|
COPY leaflet-demo.html /var/www/html/index.html
|
||||||
RUN ln -sf /dev/stdout /var/log/apache2/access.log \
|
RUN ln -sf /dev/stdout /var/log/apache2/access.log \
|
||||||
&& ln -sf /dev/stderr /var/log/apache2/error.log
|
&& ln -sf /dev/stderr /var/log/apache2/error.log
|
||||||
|
|
||||||
# Configure PosgtreSQL
|
|
||||||
COPY postgresql.custom.conf.tmpl /etc/postgresql/12/main/
|
|
||||||
RUN chown -R postgres:postgres /var/lib/postgresql \
|
|
||||||
&& chown postgres:postgres /etc/postgresql/12/main/postgresql.custom.conf.tmpl \
|
|
||||||
&& echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/12/main/pg_hba.conf \
|
|
||||||
&& echo "host all all ::/0 md5" >> /etc/postgresql/12/main/pg_hba.conf
|
|
||||||
|
|
||||||
# Copy update scripts
|
# Copy update scripts
|
||||||
COPY openstreetmap-tiles-update-expire /usr/bin/
|
COPY openstreetmap-tiles-update-expire /usr/bin/
|
||||||
RUN chmod +x /usr/bin/openstreetmap-tiles-update-expire \
|
RUN chmod +x /usr/bin/openstreetmap-tiles-update-expire \
|
||||||
&& mkdir /var/log/tiles \
|
&& mkdir /var/log/tiles \
|
||||||
&& chmod a+rw /var/log/tiles \
|
&& chmod a+rw /var/log/tiles \
|
||||||
&& ln -s /home/renderer/src/mod_tile/osmosis-db_replag /usr/bin/osmosis-db_replag \
|
&& ln -s /home/renderer/src/mod_tile/osmosis-db_replag /usr/bin/osmosis-db_replag \
|
||||||
&& echo "* * * * * renderer openstreetmap-tiles-update-expire\n" >> /etc/crontab
|
&& echo "* * * * * renderer openstreetmap-tiles-update-expire\n" >> /etc/crontab
|
||||||
|
|
||||||
# Install trim_osc.py helper script
|
RUN mkdir /nodes \
|
||||||
RUN mkdir -p /home/renderer/src \
|
&& chown renderer:renderer /nodes
|
||||||
&& cd /home/renderer/src \
|
|
||||||
&& git clone https://github.com/zverik/regional \
|
# Configure PosgtreSQL
|
||||||
&& cd regional \
|
COPY postgresql.custom.conf.tmpl /etc/postgresql/12/main/
|
||||||
&& git checkout 612fe3e040d8bb70d2ab3b133f3b2cfc6c940520 \
|
RUN chown -R postgres:postgres /var/lib/postgresql \
|
||||||
&& rm -rf .git \
|
&& chown postgres:postgres /etc/postgresql/12/main/postgresql.custom.conf.tmpl \
|
||||||
&& chmod u+x /home/renderer/src/regional/trim_osc.py
|
&& echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/12/main/pg_hba.conf \
|
||||||
|
&& echo "host all all ::/0 md5" >> /etc/postgresql/12/main/pg_hba.conf
|
||||||
|
|
||||||
|
###########################################################################################################
|
||||||
|
|
||||||
|
FROM final-base AS final
|
||||||
|
|
||||||
|
# Install PostGIS
|
||||||
|
COPY --from=compiler-postgis postgis_src/postgis-src_3.1.1-1_amd64.deb .
|
||||||
|
RUN dpkg -i postgis-src_3.1.1-1_amd64.deb \
|
||||||
|
&& rm postgis-src_3.1.1-1_amd64.deb
|
||||||
|
|
||||||
|
# Install osm2pgsql
|
||||||
|
COPY --from=compiler-osm2pgsql /root/osm2pgsql/build/build_1-1_amd64.deb .
|
||||||
|
RUN dpkg -i build_1-1_amd64.deb \
|
||||||
|
&& rm build_1-1_amd64.deb
|
||||||
|
|
||||||
|
# Install renderd
|
||||||
|
COPY --from=compiler-modtile-renderd /root/mod_tile/renderd_1-1_amd64.deb .
|
||||||
|
RUN dpkg -i renderd_1-1_amd64.deb \
|
||||||
|
&& rm renderd_1-1_amd64.deb \
|
||||||
|
&& sed -i 's/renderaccount/renderer/g' /usr/local/etc/renderd.conf \
|
||||||
|
&& sed -i 's/\/truetype//g' /usr/local/etc/renderd.conf \
|
||||||
|
&& sed -i 's/hot/tile/g' /usr/local/etc/renderd.conf
|
||||||
|
|
||||||
|
# Install mod_tile
|
||||||
|
COPY --from=compiler-modtile-renderd /root/mod_tile/mod-tile_1-1_amd64.deb .
|
||||||
|
RUN dpkg -i mod-tile_1-1_amd64.deb \
|
||||||
|
&& ldconfig \
|
||||||
|
&& rm mod-tile_1-1_amd64.deb
|
||||||
|
COPY --from=compiler-modtile-renderd /root/mod_tile/osmosis-db_replag /usr/bin/osmosis-db_replag
|
||||||
|
|
||||||
|
# Install stylesheet
|
||||||
|
COPY --from=compiler-stylesheet /root/openstreetmap-carto /home/renderer/src/openstreetmap-carto
|
||||||
|
|
||||||
|
# Install helper script
|
||||||
|
COPY --from=compiler-helper-script /home/renderer/src/regional /home/renderer/src/regional
|
||||||
|
|
||||||
# Start running
|
# Start running
|
||||||
COPY run.sh /
|
COPY run.sh /
|
||||||
COPY indexes.sql /
|
|
||||||
ENTRYPOINT ["/run.sh"]
|
ENTRYPOINT ["/run.sh"]
|
||||||
CMD []
|
CMD []
|
||||||
|
|
||||||
EXPOSE 80 5432
|
EXPOSE 80 5432
|
||||||
|
17
README.md
17
README.md
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
[](https://travis-ci.org/Overv/openstreetmap-tile-server) [](https://microbadger.com/images/overv/openstreetmap-tile-server "openstreetmap-tile-server")
|
[](https://travis-ci.org/Overv/openstreetmap-tile-server) [](https://microbadger.com/images/overv/openstreetmap-tile-server "openstreetmap-tile-server")
|
||||||
|
|
||||||
This container allows you to easily set up an OpenStreetMap PNG tile server given a `.osm.pbf` file. It is based on the [latest Ubuntu 18.04 LTS guide](https://switch2osm.org/manually-building-a-tile-server-18-04-lts/) from [switch2osm.org](https://switch2osm.org/) and therefore uses the default OpenStreetMap style.
|
This container allows you to easily set up an OpenStreetMap PNG tile server given a `.osm.pbf` file. It is based on the [latest Ubuntu 18.04 LTS guide](https://switch2osm.org/serving-tiles/manually-building-a-tile-server-18-04-lts/) from [switch2osm.org](https://switch2osm.org/) and therefore uses the default OpenStreetMap style.
|
||||||
|
|
||||||
## Setting up the server
|
## Setting up the server
|
||||||
|
|
||||||
@@ -38,6 +38,19 @@ docker run \
|
|||||||
|
|
||||||
Refer to the section *Automatic updating and tile expiry* to actually enable the updates while running the tile server.
|
Refer to the section *Automatic updating and tile expiry* to actually enable the updates while running the tile server.
|
||||||
|
|
||||||
|
### Letting the container download the file
|
||||||
|
|
||||||
|
It is also possible to let the container download files for you rather than mounting them in advance by using the `DOWNLOAD_PBF` and `DOWNLOAD_POLY` parameters:
|
||||||
|
|
||||||
|
```
|
||||||
|
docker run \
|
||||||
|
-e DOWNLOAD_PBF=https://download.geofabrik.de/europe/luxembourg-latest.osm.pbf \
|
||||||
|
-e DOWNLOAD_POLY=https://download.geofabrik.de/europe/luxembourg.poly \
|
||||||
|
-v openstreetmap-data:/var/lib/postgresql/12/main \
|
||||||
|
overv/openstreetmap-tile-server \
|
||||||
|
import
|
||||||
|
```
|
||||||
|
|
||||||
## Running the server
|
## Running the server
|
||||||
|
|
||||||
Run the server like this:
|
Run the server like this:
|
||||||
@@ -225,7 +238,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
|
|||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
You may obtain a copy of the License at
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
Unless required by applicable law or agreed to in writing, software
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
48
indexes.sql
48
indexes.sql
@@ -1,48 +0,0 @@
|
|||||||
-- Extracted from https://github.com/gravitystorm/openstreetmap-carto
|
|
||||||
-- Comes with a CC0 license
|
|
||||||
|
|
||||||
-- These are optional but suggested indexes for rendering OpenStreetMap Carto
|
|
||||||
-- with a full planet database.
|
|
||||||
-- This file is generated with scripts/indexes.py
|
|
||||||
|
|
||||||
CREATE INDEX planet_osm_roads_admin
|
|
||||||
ON planet_osm_roads USING GIST (way)
|
|
||||||
WHERE boundary = 'administrative';
|
|
||||||
CREATE INDEX planet_osm_roads_roads_ref
|
|
||||||
ON planet_osm_roads USING GIST (way)
|
|
||||||
WHERE highway IS NOT NULL AND ref IS NOT NULL;
|
|
||||||
CREATE INDEX planet_osm_roads_admin_low
|
|
||||||
ON planet_osm_roads USING GIST (way)
|
|
||||||
WHERE boundary = 'administrative' AND admin_level IN ('0', '1', '2', '3', '4');
|
|
||||||
CREATE INDEX planet_osm_line_ferry
|
|
||||||
ON planet_osm_line USING GIST (way)
|
|
||||||
WHERE route = 'ferry';
|
|
||||||
CREATE INDEX planet_osm_line_river
|
|
||||||
ON planet_osm_line USING GIST (way)
|
|
||||||
WHERE waterway = 'river';
|
|
||||||
CREATE INDEX planet_osm_line_name
|
|
||||||
ON planet_osm_line USING GIST (way)
|
|
||||||
WHERE name IS NOT NULL;
|
|
||||||
CREATE INDEX planet_osm_polygon_water
|
|
||||||
ON planet_osm_polygon USING GIST (way)
|
|
||||||
WHERE waterway IN ('dock', 'riverbank', 'canal')
|
|
||||||
OR landuse IN ('reservoir', 'basin')
|
|
||||||
OR "natural" IN ('water', 'glacier');
|
|
||||||
CREATE INDEX planet_osm_polygon_nobuilding
|
|
||||||
ON planet_osm_polygon USING GIST (way)
|
|
||||||
WHERE building IS NULL;
|
|
||||||
CREATE INDEX planet_osm_polygon_name
|
|
||||||
ON planet_osm_polygon USING GIST (way)
|
|
||||||
WHERE name IS NOT NULL;
|
|
||||||
CREATE INDEX planet_osm_polygon_way_area_z10
|
|
||||||
ON planet_osm_polygon USING GIST (way)
|
|
||||||
WHERE way_area > 23300;
|
|
||||||
CREATE INDEX planet_osm_polygon_military
|
|
||||||
ON planet_osm_polygon USING GIST (way)
|
|
||||||
WHERE (landuse = 'military' OR military = 'danger_area') AND building IS NULL;
|
|
||||||
CREATE INDEX planet_osm_polygon_way_area_z6
|
|
||||||
ON planet_osm_polygon USING GIST (way)
|
|
||||||
WHERE way_area > 5980000;
|
|
||||||
CREATE INDEX planet_osm_point_place
|
|
||||||
ON planet_osm_point USING GIST (way)
|
|
||||||
WHERE place IS NOT NULL AND name IS NOT NULL;
|
|
@@ -7,9 +7,7 @@ set -e
|
|||||||
# and other things directly from this script when run from cron.
|
# and other things directly from this script when run from cron.
|
||||||
# Change the actual location to wherever installed locally.
|
# Change the actual location to wherever installed locally.
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
export PATH=.:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
||||||
ACCOUNT=renderer
|
ACCOUNT=renderer
|
||||||
cd /home/$ACCOUNT/src/mod_tile/
|
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# Extra OSM2PGSQL_OPTIONS may need setting if a tag transform script is
|
# Extra OSM2PGSQL_OPTIONS may need setting if a tag transform script is
|
||||||
@@ -22,7 +20,7 @@ OSM2PGSQL_BIN=osm2pgsql
|
|||||||
TRIM_BIN=/home/$ACCOUNT/src/regional/trim_osc.py
|
TRIM_BIN=/home/$ACCOUNT/src/regional/trim_osc.py
|
||||||
|
|
||||||
DBNAME=gis
|
DBNAME=gis
|
||||||
OSM2PGSQL_OPTIONS="-d $DBNAME -G --hstore ${OSM2PGSQL_EXTRA_ARGS} --tag-transform-script /home/renderer/src/openstreetmap-carto/openstreetmap-carto.lua --number-processes ${THREADS:-4} -S /home/renderer/src/openstreetmap-carto/openstreetmap-carto.style"
|
OSM2PGSQL_OPTIONS="-d $DBNAME -G --hstore --tag-transform-script /home/renderer/src/openstreetmap-carto/openstreetmap-carto.lua --number-processes ${THREADS:-4} -S /home/renderer/src/openstreetmap-carto/openstreetmap-carto.style ${OSM2PGSQL_EXTRA_ARGS}"
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# When using trim_osc.py we can define either a bounding box (such as this
|
# When using trim_osc.py we can define either a bounding box (such as this
|
||||||
@@ -111,7 +109,7 @@ if [ $# -eq 1 ] ; then
|
|||||||
m_info "Initialising Osmosis replication system to $1"
|
m_info "Initialising Osmosis replication system to $1"
|
||||||
mkdir $WORKOSM_DIR
|
mkdir $WORKOSM_DIR
|
||||||
$OSMOSIS_BIN --read-replication-interval-init workingDirectory=$WORKOSM_DIR 1>&2 2> "$OSMOSISLOG"
|
$OSMOSIS_BIN --read-replication-interval-init workingDirectory=$WORKOSM_DIR 1>&2 2> "$OSMOSISLOG"
|
||||||
wget "http://replicate-sequences.osm.mazdermind.de/?"$1"T00:00:00Z" -O $WORKOSM_DIR/state.txt
|
wget "https://replicate-sequences.osm.mazdermind.de/?"$1"T00:00:00Z" -O $WORKOSM_DIR/state.txt
|
||||||
mv $WORKOSM_DIR/configuration.txt $WORKOSM_DIR/configuration_orig.txt
|
mv $WORKOSM_DIR/configuration.txt $WORKOSM_DIR/configuration_orig.txt
|
||||||
sed "s!baseUrl=http://planet.openstreetmap.org/replication/minute!baseUrl=https://planet.openstreetmap.org/replication/minute!" $WORKOSM_DIR/configuration_orig.txt > $WORKOSM_DIR/configuration.txt
|
sed "s!baseUrl=http://planet.openstreetmap.org/replication/minute!baseUrl=https://planet.openstreetmap.org/replication/minute!" $WORKOSM_DIR/configuration_orig.txt > $WORKOSM_DIR/configuration.txt
|
||||||
else
|
else
|
||||||
|
27
run.sh
27
run.sh
@@ -1,7 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -x
|
|
||||||
|
|
||||||
function createPostgresConfig() {
|
function createPostgresConfig() {
|
||||||
cp /etc/postgresql/12/main/postgresql.custom.conf.tmpl /etc/postgresql/12/main/conf.d/postgresql.custom.conf
|
cp /etc/postgresql/12/main/postgresql.custom.conf.tmpl /etc/postgresql/12/main/conf.d/postgresql.custom.conf
|
||||||
sudo -u postgres echo "autovacuum = $AUTOVACUUM" >> /etc/postgresql/12/main/conf.d/postgresql.custom.conf
|
sudo -u postgres echo "autovacuum = $AUTOVACUUM" >> /etc/postgresql/12/main/conf.d/postgresql.custom.conf
|
||||||
@@ -23,6 +21,8 @@ if [ "$#" -ne 1 ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
if [ "$1" = "import" ]; then
|
if [ "$1" = "import" ]; then
|
||||||
# Ensure that database directory is in right state
|
# Ensure that database directory is in right state
|
||||||
chown postgres:postgres -R /var/lib/postgresql
|
chown postgres:postgres -R /var/lib/postgresql
|
||||||
@@ -42,10 +42,19 @@ if [ "$1" = "import" ]; then
|
|||||||
setPostgresPassword
|
setPostgresPassword
|
||||||
|
|
||||||
# Download Luxembourg as sample if no data is provided
|
# Download Luxembourg as sample if no data is provided
|
||||||
if [ ! -f /data.osm.pbf ]; then
|
if [ ! -f /data.osm.pbf ] && [ -z "$DOWNLOAD_PBF" ]; then
|
||||||
echo "WARNING: No import file at /data.osm.pbf, so importing Luxembourg as example..."
|
echo "WARNING: No import file at /data.osm.pbf, so importing Luxembourg as example..."
|
||||||
wget -nv http://download.geofabrik.de/europe/luxembourg-latest.osm.pbf -O /data.osm.pbf
|
DOWNLOAD_PBF="https://download.geofabrik.de/europe/luxembourg-latest.osm.pbf"
|
||||||
wget -nv http://download.geofabrik.de/europe/luxembourg.poly -O /data.poly
|
DOWNLOAD_POLY="https://download.geofabrik.de/europe/luxembourg.poly"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$DOWNLOAD_PBF" ]; then
|
||||||
|
echo "INFO: Download PBF file: $DOWNLOAD_PBF"
|
||||||
|
wget $WGET_ARGS "$DOWNLOAD_PBF" -O /data.osm.pbf
|
||||||
|
if [ -n "$DOWNLOAD_POLY" ]; then
|
||||||
|
echo "INFO: Download PBF-POLY file: $DOWNLOAD_POLY"
|
||||||
|
wget $WGET_ARGS "$DOWNLOAD_POLY" -O /data.poly
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$UPDATES" = "enabled" ]; then
|
if [ "$UPDATES" = "enabled" ]; then
|
||||||
@@ -64,10 +73,14 @@ if [ "$1" = "import" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Import data
|
# Import data
|
||||||
sudo -u renderer osm2pgsql -d gis --create --slim -G --hstore --tag-transform-script /home/renderer/src/openstreetmap-carto/openstreetmap-carto.lua --number-processes ${THREADS:-4} ${OSM2PGSQL_EXTRA_ARGS} -S /home/renderer/src/openstreetmap-carto/openstreetmap-carto.style /data.osm.pbf
|
sudo -u renderer osm2pgsql -d gis --create --slim -G --hstore --tag-transform-script /home/renderer/src/openstreetmap-carto/openstreetmap-carto.lua --number-processes ${THREADS:-4} -S /home/renderer/src/openstreetmap-carto/openstreetmap-carto.style /data.osm.pbf ${OSM2PGSQL_EXTRA_ARGS}
|
||||||
|
|
||||||
# Create indexes
|
# Create indexes
|
||||||
sudo -u postgres psql -d gis -f indexes.sql
|
sudo -u postgres psql -d gis -f /home/renderer/src/openstreetmap-carto/indexes.sql
|
||||||
|
|
||||||
|
#Import external data
|
||||||
|
sudo chown -R renderer: /home/renderer/src
|
||||||
|
sudo -E -u renderer python3 /home/renderer/src/openstreetmap-carto/scripts/get-external-data.py -c /home/renderer/src/openstreetmap-carto/external-data.yml -D /home/renderer/src/openstreetmap-carto/data
|
||||||
|
|
||||||
# Register that data has changed for mod_tile caching purposes
|
# Register that data has changed for mod_tile caching purposes
|
||||||
touch /var/lib/mod_tile/planet-import-complete
|
touch /var/lib/mod_tile/planet-import-complete
|
||||||
|
Reference in New Issue
Block a user