Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite setup instuctions in Readme for clarity #60

Merged
merged 1 commit into from
Feb 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 109 additions & 50 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,115 @@

This repo houses instructions and configuration files to aid with standing up an OpenStreetMap export and Natural Earth dataset into a PostGIS enabled database that uses [tegola](https://github.com/terranodo/tegola) for creating and serving vector tiles.

## Repo config files

- imposm3.json - an [imposm3](https://github.com/omniscale/imposm3) mapping file for the OSM PBF file.
- tegola.toml - a [tegola](https://github.com/terranodo/tegola) configuration file for the OSM import produced by imposm3.

## Dependencies

If you want to use these scripts you will need the following:

- Postgres server with [PostGIS](http://www.postgis.net) enabled.
- imposm3 ([download](https://imposm.org/static/rel/) - linux only)
- tegola ([download](https://github.com/terranodo/tegola/releases))
- [gdal](http://www.gdal.org/) - required for Natural Earth import

## Download the OSM planet database in PBF format
## Basic overview

The scripts in this repo prepare 2 databases with data from 3 sources:

1. [OpenStreetMap](https://wiki.openstreetmap.org/wiki/Main_Page) - highly detailed data for roads, rail, buildings, rivers, lakes, and more.
2. [Natural Earth](https://www.naturalearthdata.com/) - data for country borders, state lines, land, major roads, and more.
3. [OpenStreetMap Land Polygons](https://osmdata.openstreetmap.de/data/land-polygons.html) - high detail polygons for landmass.

To import all this data into your databases the scripts use Imposm3 for OpenStreetMap data (1) and Gdal for both NaturalEarth and OSM land polygon data (2+3).

Once the data has been imported it is ready to serve with Tegola.

## Repo config files
The following files allow you to configure what data is imported into your databases and how the data is served by Tegola:

- imposm3.json - an [imposm3](https://github.com/omniscale/imposm3) mapping file for the OSM PBF file.
- tegola.toml - a [tegola](https://github.com/terranodo/tegola) configuration file for how to serve the OSM data created by Imposm.

## Getting started

## Step 1. Prepare databases

Create two databases called `osm` and `natural_earth` and enable the extensions `postgis` and `hstore` on both of them.

```
createdb -E utf8 -O my_pg_user osm
psql -d osm -c "CREATE EXTENSION postgis;"
psql -d osm -c "CREATE EXTENSION hstore;"

createdb -E utf8 -O my_pg_user natural_earth
psql -d natural_earth -c "CREATE EXTENSION postgis;"
psql -d natural_earth -c "CREATE EXTENSION hstore;"
```

The steps below will import OSM (1) and OSM land (3) data into "osm" and Natural Earth (2) data into "natural_earth".

## Step 2. Download your desired OSM dataset in PBF format

Since processing map data can be time-consuming it's best to start with a city rather than the whole planet. You can download OSM data for individual cities at [Geofabrik](http://download.geofabrik.de/). For this guide, we will use London.

In this repo's root directory run the following:

* [ ] `curl -O 'http://download.geofabrik.de/europe/great-britain/england/greater-london-latest.osm.pbf'`

## Step 3. Import the OSM export into PostGIS using Imposm3

You will use Imposm to map the data from the OSM dataset (1) into your osm database. Imposm requires you to do this in [2 steps](https://imposm.org/docs/imposm3/latest/tutorial.html#importing).

* [ ] `./imposm3 import -connection postgis://your_pg_user:your_password@localhost/osm -mapping imposm3.json -read ./greater-london-latest.osm.pbf -write`

* [ ] `./imposm3 import -connection postgis://your_pg_user:your_password@localhost/osm -mapping imposm3.json -deployproduction`

The osm database now has all the OSM data (1) ready for use.

* [ ] `curl -O https://planet.openstreetmap.org/pbf/planet-latest.osm.pbf`
## Step 4. Import the OSM Land and Natural Earth dataset

Now you need to add the OSM land polygon data (3) to the osm database. Update the following lines in the `osm_land.sh` script with your database details e.g.

## Import the OSM export into PostGIS using imposm3
```
DB_NAME="osm"
DB_HOST="localhost"
DB_PORT="5432"
DB_USER="your_pg_user"
DB_PW="your_password"
```

The Natural Earth data will be imported into the natural_earth database you created earlier. Update the same lines in the `natural_earth.sh` script with the relevant details. E.g.
```
DB_NAME="natural_earth"
DB_HOST="localhost"
DB_PORT="5432"
DB_USER="your_pg_user"
DB_PW="your_password"
```

Then run each file: `./natural_earth.sh && ./osm_land.sh`.

* [ ] `./imposm3 import -connection postgis://username:password@host/database-name -mapping imposm3.json -read /path/to/osm/planet-latest.osm.pbf -write`
This will download the natural earth and osm land datasets and insert them into PostGIS under your `natural_earth` and `osm` databases respectively.

* [ ] `./imposm3 import -connection postgis://username:password@host/database-name -mapping imposm3.json -deployproduction`
Note: For debugging options and more advanced ways to complete this step see "Alternative ways to import the OSM Land and Natural Earth dataset" below.

## Import the OSM Land and Natural Earth dataset (requires gdal, Natural Earth can be skipped if you're only interested in OSM)
## Step 5. Install SQL helper functions
Execute `postgis_helpers.sql` against your OSM database. Currently, this contains a single utility function for converting building heights from strings to numbers which is important if you want to extrude buildings for the 3d effect.

### Option 1: Embed Credentials
Update the database credentials inside of `natural_earth.sh` and `osm_land.sh`, then run each file: `./natural_earth.sh && ./osm_land.sh`. This will download the natural earth and osm land datasets and insert it into PostGIS under a database named `natural_earth` and `osm` respectively.
* [ ] `psql -U your_pg_user -d osm -a -f postgis_helpers.sql`

## Step 6. Setup SQL indexes
Execute `postgis_index.sql` against your OSM database.

* [ ] `psql -U your_pg_user -d osm -a -f postgis_index.sql`

## Step 7. Launch Tegola

* [ ] `./tegola serve --config tegola.toml`

Open your browser to localhost and the port you configured Tegola to run on (i.e. localhost:8080) to see the built-in viewer.

## Alternative ways to import the OSM Land and Natural Earth dataset

Step 4 took a simple approach to configure the osm_land.sh and natural_earths.sh scripts by simply having you hard code them with your DB credentials. However, there are two other options this step can be accomplished by which might suit your needs better in production environments.

### Option 2: Create a dbcredentials.sh file
Create a `dbcredentials.sh` file which will be shared with the `osm_land` script. This option is ideal for when the `natural_earth` and `osm` databases will reside on the same database server, and will use the same credentials. Ensure that the following variables are defined in your file:
Expand All @@ -40,7 +121,7 @@ DB_PORT="myport"
DB_USER="myuser"
DB_PW="mypassword"
```
Once you have configured the `dbcredentials.sh` file, run the scripts as above:
Once you have configured the `dbcredentials.sh` file, run the scripts as above:

* [ ] `./natural_earth.sh && ./osm_land.sh`

Expand All @@ -53,36 +134,15 @@ DB_PORT="myport"
DB_USER="myuser"
DB_PW="mypassword"
```
Once you have configured the files, run the scripts with the `-c` flag and provide the path to the credentials file, ie:
Once you have configured the files, run the scripts with the `-c` flag and provide the path to the credentials file, ie:

* [ ] `./natural_earth.sh -c natural_earth_creds.sh && ./osm_land.sh -c osm_creds.sh`

### Usage:
Both scripts support a `-v` flag for debugging. `natural_earth.sh` also supports a `-d` flag, which will drop the existing natural earth database prior to import if set. Since the `osm_land.sh` imports into a database shared with other data, it lacks this functionality. Instead, only the relevent tables are dropped.

## Install SQL helper functions
Execute `postgis_helpers.sql` against your OSM database. Currently this contains a single utility function for converting building heights from strings to numbers which is important if you want to extrude buildings for the 3d effect.


* [ ] `psql -U tegola -d database-name -a -f postgis_helpers.sql`


## Setup SQL indexes
Execute `postgis_index.sql` against your OSM database.

* [ ] `psql -U tegola -d database-name -a -f postgis_index.sql`


## Launch tegola


* [ ] `./tegola -config=tegola.toml`


Open your browser to localhost and the port you configured tegola to run on (i.e. localhost:8080) to see the built in viewer.
### Advanced Usage
Both scripts support a `-v` flag for debugging. `natural_earth.sh` also supports a `-d` flag, which will drop the existing natural earth database prior to import if set. Since the `osm_land.sh` imports into the osm database which is shared with other data, it lacks this functionality. Instead, only the relevant tables are dropped.

## Data Layers
To view these data layers in a map and query the features for a better understanding of each data layer, use the [Tegola-OSM Inspector](https://osm.tegola.io). The data layers described here are in the "Tegola-OSM" database as laid out in the tegola.toml (i.e., not the Natural Earth database that is specified in tegola-natural-earth.toml).
To view these data layers in a map and query the features for a better understanding of each data layer, use the [Tegola-OSM Inspector](https://osm.tegola.io). The data layers described here are in the "Tegola-OSM" database as laid out in the tegola.toml (i.e., not the Natural Earth database that is specified in tegola-natural-earth.toml).

| source | Description |
|--------|-------------|
Expand All @@ -92,7 +152,6 @@ To view these data layers in a map and query the features for a better understan

>**Note:** All layers also have the data fields: layer id and geometry. An empty where column means that all features are retained.


### populated_places
*points*

Expand All @@ -101,7 +160,7 @@ To view these data layers in a map and query the features for a better understan
| 0-2 | ne | ne_110m_populated_places | scalerank, labelrank, name, min_zoom, featurecla, rank_max |
| 3-4 | ne | ne_50m_populated_places | scalerank, labelrank, name, min_zoom, featurecla, rank_max |
| 5-20 | ne | ne_10m_populated_places | scalerank, labelrank, name, min_zoom, featurecla, rank_max |


### country_lines
| zoom | source | table/layer | data fields | where |
Expand Down Expand Up @@ -174,8 +233,8 @@ Nature reserves, military land, forest, leisure, wood, etc.
|------|----------|---------------|-----------------------------------|-------|
| 3-5 | osm | landuse_areas_gen0 | name, class, type, area | type IN ('forest','wood','nature reserve', 'nature_reserve', 'military') AND area > 1000000000 |
| 6-9 | osm | landuse_areas_gen0_6| name, class, type, area | type IN ('forest','wood','nature reserve', 'nature_reserve', 'military') AND area > 100000000 |
| 10-12| osm | landuse_areas_gen1 | name, class, type, area |
| 13-20| osm | landuse_areas | name, class, type, area |
| 10-12| osm | landuse_areas_gen1 | name, class, type, area |
| 13-20| osm | landuse_areas | name, class, type, area |


### water_areas
Expand Down Expand Up @@ -208,7 +267,7 @@ Roads, airport runways, ferry routes, paths, etc.
| 9-10 | osm | transport_lines_gen1 | ref, class, type | type IN ('motorway', 'trunk', 'primary', 'primary_link', 'secondary', 'motorway_link', 'trunk_link') |
| 11-12| osm | transport_lines_11-12 | name, ref, class, type, tunnel, bridge, access, service | type IN ('motorway', 'motorway_link', 'trunk', 'trunk_link', 'primary', 'primary_link', 'secondary', 'secondary_link', 'tertiary', 'tertiary_link', 'rail', 'taxiway', 'runway', 'apron') |
| 13 | osm | transport_lines_13 | name, ref, class, type, tunnel, bridge, access, service | type IN ('motorway', 'motorway_link', 'trunk', 'trunk_link', 'primary', 'primary_link', 'secondary', 'secondary_link', 'tertiary', 'tertiary_link', 'rail', 'residential', 'taxiway', 'runway', 'apron') |
| 14-20| osm | transport_lines_14-20 | name, ref, class, type, tunnel, bridge, access, service |
| 14-20| osm | transport_lines_14-20 | name, ref, class, type, tunnel, bridge, access, service |


### transport_areas
Expand All @@ -217,15 +276,15 @@ Airports, etc.

| zoom | source | table/layer | data fields | where |
|------|----------|---------------|-----------------------------------|-------|
| 12-20| osm | transport_areas | name, class, type |
| 12-20| osm | transport_areas | name, class, type |


### transport_points
Airports, helipads, etc.

| zoom | source | table/layer | data fields | where |
|------|----------|---------------|-----------------------------------|-------|
| 14-20| osm | transport_points | name, class, type |
| 14-20| osm | transport_points | name, class, type |


### amenity_areas
Expand All @@ -234,22 +293,22 @@ Fire stations, banks, embassies, government, police stations, schools, universit

| zoom | source | table/layer | data fields | where |
|------|----------|---------------|-----------------------------------|-------|
| 14-20| osm | amenity_areas | name, type |
| 14-20| osm | amenity_areas | name, type |

### amenity_points
Fire stations, banks, embassies, government, police stations, schools, universities, etc.

| zoom | source | table/layer | data fields | where |
|------|----------|---------------|-----------------------------------|-------|
| 14-20| osm | amenity_points | name, type |
| 14-20| osm | amenity_points | name, type |


### other_points
Man made, historic, military, barriers, power towers, etc.

| zoom | source | table/layer | data fields | where |
|------|----------|---------------|-----------------------------------|-------|
| 14-20| osm | other_points | name, class, type |
| 14-20| osm | other_points | name, class, type |


### other_lines
Expand All @@ -260,7 +319,7 @@ Man made, historic, military, barriers, power lines, etc.
| 14-20| osm | other_lines | name, class, type |


### other_areas
### other_areas
*polygons*
Man made, historic, military, power, barriers, piers, etc.

Expand Down