Skip to main content

imposm.parser - OpenStreetMap XML/PBF parser for Python

imposm.parser is a Python library that parses OpenStreetMap data in XML and PBF format.

It has a simple API and it is fast and easy to use. It also works across multiple CPU/cores for extra speed.

It is developed and supported by Omniscale and released under the Apache Software License 2.0.

Example

Here is an example that parses an OSM file and counts all ways that are tagged as a highway.

from imposm.parser import OSMParser

# simple class that handles the parsed OSM data.
class HighwayCounter(object):
    highways = 0

    def ways(self, ways):
        # callback method for ways
        for osmid, tags, refs in ways:
            if 'highway' in tags:
              self.highways += 1

# instantiate counter and parser and start parsing
counter = HighwayCounter()
p = OSMParser(concurrency=4, ways_callback=counter.ways)
p.parse('germany.osm.pbf')

# done
print counter.highways

Source and issue tracker

Source code and issue tracker are available at https://github.com/omniscale/imposm-parser.

Changelog

1.0.7 2015-01-10

  • updated protobuf parser

1.0.6 2014-10-31

  • fixed bug in protobuf parser that could cause segfaults

1.0.5 2013-09-13

  • support PBF without granularity value

  • improved support for non-pretty-printed XML

1.0.4 2012-12-10

  • improved support for non-pretty-printed XML

  • fixed dependency check for multiprocessing

1.0.3 2011-07-21

  • support for uncompressed PBF

  • bug fix for PBF without dense nodes

1.0.2 2011-03-10

  • improved regexp based XML coord parser

  • prevent mmap overflow in XMLChunker without coord_callback

  • successfully parsed whole planet.osm

1.0.0 2011-02-22

  • first release

Release files for imposm.parser 1.0.7

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for imposm.parser 1.0.7
File Size Uploaded
imposm.parser-1.0.7.tar.gz 37.4 kB Details

Release files / imposm.parser-1.0.7.tar.gz

Download URL imposm.parser-1.0.7.tar.gz
Size 37.4 kB
Tags Source
SHA-256 checksum
How to use checksums
6debbfc1cd1cebf15fe3200ddf1cd18c4937aaa4950b4ae3aecb95944789a7dc
BLAKE2b-256 checksum
How to use checksums
1806df806bca5bd7e05ce20ec10ad6c3041a347f942d7645df469c3c916eee4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

1.0.7 This release

1 release file

1.0.6

1 release file

1.0.5

1 release file

1.0.4

1 release file

1.0.3

1 release file

1.0.2

1 release file

1.0.1

1 release file

1.0.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page