imposm3

command module
v0.0.0-...-ae98989 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 15, 2016 License: Apache-2.0 Imports: 1 Imported by: 0

README

Imposm 3

Imposm is an importer for OpenStreetMap data. It reads PBF files and imports the data into PostgreSQL/PostGIS. It can also update the DB from diff files.

It is designed to create databases that are optimized for rendering (i.e. generating tiles or for WMS services).

Imposm 3 is written in Go and it is a complete rewrite of the previous Python implementation. Configurations/mappings and cache files are not compatible with Imposm 2, but they share a similar architecture.

The development of Imposm 3 was sponsored by Omniscale. There are commercial licenses available for Imposm to support the long-term development of Imposm. There is also commercial support available from Omniscale.

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: Limit imported geometries to polygons from Shapefiles or GeoJSON, for city/state/country imports.

  • Easy deployment: Single binary with only runtime dependencies to common libs (GEOS, SQLite and LevelDB)

  • Support for table namespace (PostgreSQL schema)

Performance

Imposm 3 is much faster than Imposm 2 and osm2pgsql:

  • Makes full use of all available CPU cores
  • Bulk inserts into PostgreSQL with COPY FROM
  • Efficient intermediate cache for reduced IO load during ways and relations building

Some import times from a Hetzner EX 4S server (Intel i7-2600 CPU @ 3.40GHz, 32GB RAM and 2TB software RAID1 (2x2TB 7200rpm SATA disks)) for imports of a 20.5GB planet PBF (2013-06-14) with generalized tables:

  • 6:30h in normal-mode
  • 13h in diff-mode

osm2pgsql required between 2-8 days in a similar benchmark (slide 7) with a smaller planet PBF file (~15GB).

Benchmarks with SSD are TBD.

Import of Europe 11GB PBF with generalized tables:

  • 2:20h in normal-mode

Current status

Imposm 3 is used in production but there is no official 3.0 release yet.

Planned features

There are a few features we like to see in Imposm 3:

  • Automatic download and import of differential files
  • Support for other projections than EPSG:3857 or EPSG:4326
  • Support for route relations
  • Improved integration with tile servers (expiration of updated tiles)
  • Custom field/filter functions
  • Official releases with binaries for more platforms

There is no roadmap however, as the implementation of these features largely depends on external funding. There are commercial licenses available for Imposm if you like to help with this development.

Installation

Binary

There are no official releases, but you find development builds at http://imposm.org/static/rel/. These builds are for x86 64bit Linux and require no further dependencies. Download, untar and start imposm3. (Note: These binaries require glibc >= 2.15 at the moment. Ubuntu 12.04 is recent enough, Debian 7 not.)

Source

There are some dependencies:

Compiler

You need Go >=1.1.

C/C++ libraries

Other dependencies are libleveldb, libgeos and protobuf. Imposm 3 was tested with recent versions of these libraries, but you might succeed with older versions. GEOS >=3.2 is recommended, since it became much more robust when handling invalid geometries. For best performance use HyperLevelDB as an in-place replacement for libleveldb.

Go libraries

Imposm3 uses the following libraries.

go get will fetch these, but you can also use godep to use a provided (vendorized) set of these dependencies.

Other

Fetching Imposm and the Go libraries requires mercurial and git.

Compile

Create a new Go workspace:

mkdir imposm
cd imposm
export GOPATH=`pwd`

Get Imposm 3 and all dependencies:

go get github.com/omniscale/imposm3
go install github.com/omniscale/imposm3

Done. You should now have an imposm3 binary in $GOPATH/bin.

Go compiles to static binaries and so Imposm 3 has no runtime dependencies to Go. Just copy the imposm3 binary to your server for deployment. The C/C++ libraries listed above are still required though.

Godep

Imposm contains a fixed set of the dependencies that are known to work. You need to install Imposm with godep to compile with this set.

git clone https://github.com/omniscale/imposm3 src/github.com/omniscale/imposm3
cd src/github.com/omniscale/imposm3
godep go install ./...
FreeBSD

On FreeBSD you can use the ports system: Simply fetch https://github.com/thomersch/imposm3-freebsd and run make install.

Usage

imposm3 has multiple subcommands. Use imposm3 import for basic imports.

For a simple import:

imposm3 import -connection postgis://user:password@host/database \
    -mapping mapping.json -read /path/to/osm.pbf -write

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:

imposm3 import -connection postgis://user:passwd@host/database \
    -mapping mapping.json -deployproduction

You can write some options into a JSON configuration file:

{
    "cachedir": "/var/local/imposm3",
    "mapping": "mapping.json",
    "connection": "postgis://user:password@localhost:port/database"
}

To use that config:

imposm3 import -config config.json [args...]

For more options see:

imposm3 import -help

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.

Documentation

The latest documentation can be found here: http://imposm.org/docs/imposm3/latest/

Support

There is a mailing list at Google Groups for all questions. You can subscribe by sending an email to: imposm+subscribe@googlegroups.com

For commercial support contact Omniscale.

Development

The source code is available at: https://github.com/omniscale/imposm3/

You can report any issues at: https://github.com/omniscale/imposm3/issues

License

Imposm 3 is released as open source under the Apache License 2.0. See LICENSE.

All dependencies included as source code are released under a BSD-ish license except the YAML package. The YAML package is released as LGPL3 with an exception that permits static linking. See LICENSE.deps.

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.

Test
Unit tests
go test imposm3/...
System tests

There are system test that import and update OSM data and verify the database content.

Dependencies

These tests are written in Python and requires nose, shapely and psycopg2.

On a recent Ubuntu can install the following packages for that: python-nose python-shapely python-psycopg2 Or you can install a Python virtualenv:

virtualenv imposm3test
source imposm3test/bin/activate
pip install nose shapely psycopg2

You also need osmosis to create test PBF files. There is a Makefile that (re)builds imposm3 and creates all test files if necessary and then runs the test itself.

make test

Call make test-system to skip the unit tests.

WARNING: It uses your local PostgeSQL database (import schema). Change the database with the standard PGDATABASE, PGHOST, etc. environment variables.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Godeps
_workspace/src/github.com/golang/protobuf/proto
Package proto converts data structures to and from the wire format of protocol buffers.
Package proto converts data structures to and from the wire format of protocol buffers.
_workspace/src/github.com/golang/protobuf/proto/proto3_proto
Package proto3_proto is a generated protocol buffer package.
Package proto3_proto is a generated protocol buffer package.
_workspace/src/github.com/jmhodges/levigo
Package levigo provides the ability to create and access LevelDB databases.
Package levigo provides the ability to create and access LevelDB databases.
_workspace/src/github.com/lib/pq
Package pq is a pure Go Postgres driver for the database/sql package.
Package pq is a pure Go Postgres driver for the database/sql package.
_workspace/src/github.com/lib/pq/listen_example
Below you will find a self-contained Go program which uses the LISTEN / NOTIFY mechanism to avoid polling the database while waiting for more work to arrive.
Below you will find a self-contained Go program which uses the LISTEN / NOTIFY mechanism to avoid polling the database while waiting for more work to arrive.
_workspace/src/github.com/lib/pq/oid
Package oid contains OID constants as defined by the Postgres server.
Package oid contains OID constants as defined by the Postgres server.
_workspace/src/gopkg.in/yaml.v2
Package yaml implements YAML support for the Go language.
Package yaml implements YAML support for the Go language.
Package cache implements caches for coords, nodes, ways and relations data.
Package cache implements caches for coords, nodes, ways and relations data.
binary
Package binary provides functions for (un)marshaling cache data.
Package binary provides functions for (un)marshaling cache data.
query
Package query provides the query-cache sub command for debugging and testing.
Package query provides the query-cache sub command for debugging and testing.
Package config provides functions for parsing command line args and JSON config.
Package config provides functions for parsing command line args and JSON config.
Package database defines interfaces to be implemented.
Package database defines interfaces to be implemented.
postgis
Package postgis implements the database interfaces for PostGIS.
Package postgis implements the database interfaces for PostGIS.
Package diff provides the diff sub command for updating with diff files.
Package diff provides the diff sub command for updating with diff files.
parser
Package parser provides a parser for OSM diff files in XML format.
Package parser provides a parser for OSM diff files in XML format.
state
Package state provides functions for reading and writing diff status files.
Package state provides functions for reading and writing diff status files.
Package element provides basic types for OSM elements (coords/nodes/ways/relations/etc).
Package element provides basic types for OSM elements (coords/nodes/ways/relations/etc).
Package geom provides functions for building geometries.
Package geom provides functions for building geometries.
geojson
Package geojson creates GEOS geometries from GeoJSON files.
Package geojson creates GEOS geometries from GeoJSON files.
geos
Package geos provides a wrapper to the GEOS library.
Package geos provides a wrapper to the GEOS library.
limit
Package limit provides functions to clip geometries at polygon boundaries.
Package limit provides functions to clip geometries at polygon boundaries.
Package import_ provides the import sub command initial imports.
Package import_ provides the import sub command initial imports.
Package logging provides a simple framework for reporting messages and the import progress.
Package logging provides a simple framework for reporting messages and the import progress.
Package mapping provides functions for defining and executing the database schema.
Package mapping provides functions for defining and executing the database schema.
pbf
Package pbf provides functions for parsing OSM PBF files.
Package pbf provides functions for parsing OSM PBF files.
pbf/osmpbf
Package osmpbf is a generated protocol buffer package.
Package osmpbf is a generated protocol buffer package.
Package proj provides functions for coordinate transformations.
Package proj provides functions for coordinate transformations.
Package reader orchestrates the reading part of the import process.
Package reader orchestrates the reading part of the import process.
Package stats provides functions to collect statistics about the import process.
Package stats provides functions to collect statistics about the import process.
Package writer orchestrates the writing part of the import process.
Package writer orchestrates the writing part of the import process.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL