imposm3/README.md

232 lines
8.4 KiB
Markdown
Raw Permalink Normal View History

2018-04-17 22:06:55 +03:00
Imposm
======
2013-09-02 11:11:17 +04:00
2018-04-17 22:06:55 +03:00
Imposm is an importer for OpenStreetMap data. It reads PBF files and imports the data into PostgreSQL/PostGIS. It can also automatically update the database with the latest changes from OSM.
2013-09-02 11:11:17 +04:00
It is designed to create databases that are optimized for rendering (i.e. generating tiles or for WMS services).
2018-04-17 22:06:55 +03:00
Imposm >=3 is written in Go and it is a complete rewrite of the previous Python implementation.
2013-09-02 11:11:17 +04:00
Configurations/mappings and cache files are not compatible with Imposm 2, but they share a similar architecture.
2018-04-17 22:06:55 +03:00
The development of Imposm is sponsored by [Omniscale](https://omniscale.com/).
2013-09-02 11:11:17 +04:00
Features
--------
* High-performance
* Diff support
* Custom database schemas
* Generalized geometries
### In detail
- High performance:
Parallel from the ground up. It distributes parsing and processing to all available CPU cores.
- Custom database schemas:
Creates tables for different data types. This allows easier styling and better performance for rendering in WMS or tile services.
- Unify values:
For example, the boolean values `1`, `on`, `true` and `yes` all become ``TRUE``.
- Filter by tags and values:
Only import data you are going to render/use.
- Efficient nodes cache:
It is necessary to store all nodes to build ways and relations. Imposm uses a file-based key-value database to cache this data.
- Generalized tables:
Automatically creates tables with lower spatial resolutions, perfect for rendering large road networks in low resolutions.
- Limit to polygons:
2016-01-15 16:41:25 +03:00
Limit imported geometries to polygons from GeoJSON, for city/state/country imports.
2013-09-02 11:11:17 +04:00
- Easy deployment:
2018-04-17 22:06:55 +03:00
Single binary with only runtime dependencies to common libs (GEOS and LevelDB).
2016-12-07 13:17:56 +03:00
- Automatic OSM updates:
2018-04-17 22:06:55 +03:00
Includes background service (`imposm run`) that automatically downloads and imports the latest OSM changes.
2016-01-15 16:41:25 +03:00
- Route relations:
Import all relation types including routes.
2013-09-02 11:11:17 +04:00
- Support for table namespace (PostgreSQL schema)
2013-09-02 12:33:33 +04:00
Performance
-----------
2013-09-02 11:11:17 +04:00
2018-04-17 22:06:55 +03:00
* Imposm makes full use of all available CPU cores
* Imposm uses bulk inserts into PostgreSQL with `COPY FROM`
* Imposm uses efficient intermediate caches for reduced IO load during ways and relations building
2013-09-02 11:11:17 +04:00
2017-11-15 16:22:14 +03:00
An import in diff-mode on a Hetzner PX121-SSD server (Intel Xeon E5-1650 v3 Hexa-Core, 256GB RAM and SSD RAID 1) of a 36GB planet PBF (2017-08-10) with generalized tables and spatial indices, etc. takes around 6:30h. This is for an import that is ready for minutely updates. The non-diff mode is even faster.
2013-09-02 11:11:17 +04:00
2017-11-15 16:22:14 +03:00
It's recommended that the memory size of the server is roughly twice the size of the PBF extract you are importing. For example: You should have 64GB RAM or more for a current (2017) 36GB planet file, 8GB for a 4GB regional extract, etc.
Imports without SSDs will take longer.
2013-09-02 11:11:17 +04:00
Current status
--------------
2018-04-17 22:06:55 +03:00
Imposm is used in production but there is no official 3.0 release yet.
Imposm >=3, successor of Imposm 2, was called "Imposm 3" and binaries were named `imposm3` during development. Since April 2018 the project is only called Imposm to allow semantic versioning beyond version 3.
The repository will be renamed to github.com/omniscale/imposm in the future.
2013-09-02 11:11:17 +04:00
2015-10-14 16:01:45 +03:00
### Planned features ###
2013-09-02 11:11:17 +04:00
2018-04-17 22:06:55 +03:00
There are a few features we like to see in Imposm:
2013-09-02 14:14:33 +04:00
2015-05-07 17:41:16 +03:00
* Support for other projections than EPSG:3857 or EPSG:4326
* Custom field/filter functions
2015-10-14 16:01:45 +03:00
* Official releases with binaries for more platforms
2018-04-17 22:06:55 +03:00
There is no roadmap however, as the implementation of these features largely depends on external funding.
2013-09-02 11:11:17 +04:00
Installation
------------
2013-09-04 17:41:53 +04:00
### Binary
2018-04-17 22:06:55 +03:00
[Binary releases are available at GitHub.](https://github.com/omniscale/imposm3/releases)
These builds are for x86 64bit Linux and require *no* further dependencies. Download, untar and start `imposm`.
Binaries are compatible with Debian 8, Ubuntu 14.04 and SLES 12 (and newer versions). Older Imposm binaries (<=0.4) also support Debian 6, RHEL 6 and SLES 11.
Older versions are available at <http://imposm.org/static/rel/>.
2013-09-04 17:41:53 +04:00
### Source
There are some dependencies:
2013-09-02 11:11:17 +04:00
#### Compiler
2017-11-15 16:22:14 +03:00
You need [Go >=1.6](http://golang.org).
2013-09-02 11:11:17 +04:00
#### C/C++ libraries
2018-04-17 22:06:55 +03:00
Other dependencies are [libleveldb][] and [libgeos][].
Imposm was tested with recent versions of these libraries, but you might succeed with older versions.
2013-09-02 11:11:17 +04:00
GEOS >=3.2 is recommended, since it became much more robust when handling invalid geometries.
2013-09-02 12:02:05 +04:00
[libleveldb]: https://github.com/google/leveldb/
2013-09-02 12:02:05 +04:00
[libgeos]: http://trac.osgeo.org/geos/
2013-09-02 11:11:17 +04:00
2013-09-04 17:41:53 +04:00
#### Compile
2013-09-02 11:11:17 +04:00
Create a [Go workspace](http://golang.org/doc/code.html) by creating the `GOPATH` directory for all your Go code, if you don't have one already:
2013-09-02 11:11:17 +04:00
mkdir -p go
cd go
2013-09-02 11:11:17 +04:00
export GOPATH=`pwd`
2018-04-17 22:06:55 +03:00
Get the code and install Imposm:
2013-09-02 11:11:17 +04:00
2015-03-02 13:31:38 +03:00
go get github.com/omniscale/imposm3
2018-04-17 22:06:55 +03:00
go install github.com/omniscale/imposm3/cmd/imposm
2013-09-02 11:11:17 +04:00
2018-04-17 22:06:55 +03:00
Done. You should now have an imposm binary in `$GOPATH/bin`.
2013-09-02 11:11:17 +04:00
2018-04-17 22:06:55 +03:00
Go compiles to static binaries and so Imposm has no runtime dependencies to Go.
Just copy the `imposm` binary to your server for deployment. The C/C++ libraries listed above are still required though.
2013-09-02 11:11:17 +04:00
2018-04-17 22:06:55 +03:00
See also `packaging.sh` for instructions on how to build binary packages for Linux.
2013-09-02 11:11:17 +04:00
#### LevelDB
For better performance you can either use [HyperLevelDB][libhyperleveldb] as an in-place replacement for libleveldb or you can use LevelDB >1.21. You need to build Imposm with ``go build -tags="ldbpost121"`` or ``LEVELDB_POST_121=1 make build`` to enable optimizations available with LevelDB 1.21 and higher.
[libhyperleveldb]: https://github.com/rescrv/HyperLevelDB
2013-09-02 11:11:17 +04:00
Usage
-----
2018-04-17 22:06:55 +03:00
`imposm` has multiple subcommands. Use `imposm import` for basic imports.
2013-09-02 11:11:17 +04:00
For a simple import:
2018-04-17 22:06:55 +03:00
imposm import -connection postgis://user:password@host/database \
2013-09-02 12:29:20 +04:00
-mapping mapping.json -read /path/to/osm.pbf -write
2013-09-02 11:11:17 +04:00
You need a JSON file with the target database mapping. See `example-mapping.json` to get an idea what is possible with the mapping.
Imposm creates all new tables inside the `import` table schema. So you'll have `import.osm_roads` etc. You can change the tables to the `public` schema:
2018-04-17 22:06:55 +03:00
imposm import -connection postgis://user:passwd@host/database \
2013-09-02 12:29:20 +04:00
-mapping mapping.json -deployproduction
2013-09-02 11:11:17 +04:00
You can write some options into a JSON configuration file:
{
2018-04-17 22:06:55 +03:00
"cachedir": "/var/local/imposm",
2013-09-02 11:11:17 +04:00
"mapping": "mapping.json",
"connection": "postgis://user:password@localhost:port/database"
2013-09-02 11:11:17 +04:00
}
To use that config:
2018-04-17 22:06:55 +03:00
imposm import -config config.json [args...]
2013-09-02 11:11:17 +04:00
For more options see:
2018-04-17 22:06:55 +03:00
imposm import -help
2013-09-02 11:11:17 +04:00
Note: TLS/SSL support is disabled by default due to the lack of renegotiation support in Go's TLS implementation. You can re-enable encryption by setting the `PGSSLMODE` environment variable or the `sslmode` connection option to `require` or `verify-full`, eg: `-connect postgis://host/dbname?sslmode=require`. You will need to disable renegotiation support on your server to prevent connection errors on larger imports. You can do this by setting `ssl_renegotiation_limit` to 0 in your PostgreSQL server configuration.
2015-05-07 17:43:29 +03:00
Documentation
-------------
The latest documentation can be found here: <http://imposm.org/docs/imposm3/latest/>
2013-09-02 11:11:17 +04:00
Support
-------
There is a [mailing list at Google Groups](http://groups.google.com/group/imposm) for all questions. You can subscribe by sending an email to: `imposm+subscribe@googlegroups.com`
For commercial support [contact Omniscale](http://omniscale.com/contact).
Development
-----------
The source code is available at: <https://github.com/omniscale/imposm3/>
You can report any issues at: <https://github.com/omniscale/imposm3/issues>
2015-08-27 10:50:07 +03:00
License
-------
2018-04-17 22:06:55 +03:00
Imposm is released as open source under the Apache License 2.0. See LICENSE.
2015-08-27 10:50:07 +03:00
All dependencies included as source code are released under a BSD-ish license. See LICENSE.dep.
2015-08-27 10:50:07 +03:00
All dependencies included in binary releases are released under a BSD-ish license except the GEOS package.
The GEOS package is released as LGPL3 and is linked dynamically. See LICENSE.bin.
2013-09-02 11:11:17 +04:00
### Test ###
#### Unit tests ####
To run all unit tests:
2013-09-02 11:11:17 +04:00
make test-unit
2013-09-02 11:11:17 +04:00
2015-08-05 10:10:28 +03:00
#### System tests ####
2015-08-05 10:10:28 +03:00
There are system test that import and update OSM data and verify the database content.
You need `osmosis` to create the test PBF files.
There is a Makefile that creates all test files if necessary and then runs the test itself.
2013-09-02 11:11:17 +04:00
2013-09-02 14:14:33 +04:00
make test
2013-09-02 11:11:17 +04:00
2015-08-05 10:10:28 +03:00
Call `make test-system` to skip the unit tests.
2018-04-17 22:06:55 +03:00
WARNING: It uses your local PostgreSQL database (`imposm_test_import`, `imposm_test_production` and `imposm_test_backup` schema). Change the database with the standard `PGDATABASE`, `PGHOST`, etc. environment variables.