• Stars
    star
    157
  • Rank 238,399 (Top 5 %)
  • Language
    Python
  • License
    GNU Lesser Genera...
  • Created over 9 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Python bindings for mapnik

Build Status

Python bindings for Mapnik.

Installation

Eventually we hope that many people will simply be able to pip install mapnik in order to get prebuilt binaries, this currently does not work though. So for now here are the instructions

Create a virtual environment

It is highly suggested that you have a python virtualenv when developing on mapnik.

Building from Mason

If you do not have mapnik built from source and simply wish to develop from the latest version in mapnik master branch you can setup your environment with a mason build. In order to trigger a mason build prior to building you must set the MASON_BUILD environment variable.

export MASON_BUILD=true

After this is done simply follow the directions as per a source build.

Building from Source

Assuming that you built your own mapnik from source, and you have run make install. Set any compiler or linking environment variables as necessary so that your installation of mapnik is found. Next simply run one of the two methods:

python setup.py develop

If you are currently developing on mapnik-python and wish to change the code in place and immediately have python changes reflected in your environment.

python setup.py install

If you wish to just install the package.

python setup.py develop --uninstall

Will de-activate the development install by removing the python-mapnik entry from site-packages/easy-install.pth.

If you need Pycairo, make sure that PYCAIRO is set to true in your environment or run:

PYCAIRO=true python setup.py develop

Building against Mapnik 3.0.x

The master branch is no longer compatible with 3.0.x series of Mapnik. To build against Mapnik 3.0.x, use v3.0.x branch.

Testing

Once you have installed you can test the package by running:

git submodule update --init
python setup.py test

The test data in ./test/data and ./test/data-visual are standalone modules. If you need to update them see https://github.com/mapnik/mapnik/blob/master/docs/contributing.md#testing

Troubleshooting

If you hit an error like:

Fatal Python error: PyThreadState_Get: no current thread
Abort trap: 6

That means you likely have built python-mapnik linked against a different python version than what you are running. To solve this try running:

/usr/bin/python <your script.py>

If you hit an error like the following when building with mason:

EnvironmentError: 
Missing boost_python boost library, try to add its name with BOOST_PYTHON_LIB environment var.

Try to set export BOOST_PYTHON_LIB=boost_python before build. Also, if boost_thread or boost_system is missing, do likewise:

export BOOST_SYSTEM_LIB=boost_system
export BOOST_THREAD_LIB=boost_thread

If you still hit a problem create an issue and we'll try to help.

Tutorials

More Repositories

1

mapnik

Mapnik is an open source toolkit for developing mapping applications
C++
3,628
star
2

node-mapnik

Bindings to mapnik for node.js
C++
526
star
3

OGCServer

Pure python WMS
Python
138
star
4

Cascadenik

Cascading Sheets Of Style for Mapnik
Python
110
star
5

node-mapnik-sample-code

Sample code demonstrating usage of node-mapnik
JavaScript
69
star
6

Ruby-Mapnik

Ruby Bindings for Mapnik
C++
66
star
7

mapnik-reference

JSON specification of Mapnik styling and datasources
JavaScript
49
star
8

mapnik-packaging

DEPRECATED packaging utilities for mapnik dependencies
C
39
star
9

angus-clipper

Polygon and line clipping and offsetting library
C++
21
star
10

pymapnik2

C
12
star
11

test-data

PLpgSQL
9
star
12

mapnik-gyp

GYP build system for Mapnik 3.x
Batchfile
8
star
13

clipper

C++
8
star
14

mapnik.github.com

HTML
8
star
15

geowave-plugin

Input plugin for geowave
C++
7
star
16

debian

Debian packages for Mapnik
Groff
7
star
17

test-data-visual

Visual tests for Mapnik
Python
6
star
18

mapnik-support

Use the issues queue here to ask questions and offer help on using Mapnik (maybe if this works well we can retire the mailing list at http://mapnik.org/contact/?)
6
star
19

geometry-test-data

Test inputs and outputs for cutting geometries into vector tiles
JavaScript
4
star
20

carto-spec

Language specification for the Carto stylesheet language
4
star
21

sphinx-docs

New documentation development for Mapnik
Python
3
star
22

hello-world-input-plugin

Hello world input plugin
C++
2
star
23

non-core-plugins

Mapnik plugins that make sense to keep outside of core
C++
2
star
24

mapnik-geometry

Alternative geometry implementation for Mapnik
C++
2
star
25

documentation

Mapnik docs
HTML
2
star
26

trac

1
star
27

state-of-the-flags

Tracking SVG rendering
1
star
28

node-mapnik-theme

documentationjs theme for Node Mapnik docs
JavaScript
1
star