2009-07-26 03:15:44 +02:00
|
|
|
#!/usr/bin/env python
|
2008-11-16 22:36:23 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2006-03-22 03:41:13 +01:00
|
|
|
# $Id$
|
|
|
|
#
|
2006-03-22 03:32:38 +01:00
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
# Copyright (C) 2005 Jean-Francois Doyon
|
|
|
|
#
|
|
|
|
# Mapnik is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
# Import everything. In this case this is safe, in more complex systems, you
|
|
|
|
# will want to be more selective.
|
|
|
|
|
2010-01-11 19:55:30 +01:00
|
|
|
import sys
|
|
|
|
|
2006-03-22 03:32:38 +01:00
|
|
|
try:
|
2011-11-23 12:33:58 +01:00
|
|
|
import mapnik
|
2006-03-22 03:32:38 +01:00
|
|
|
except:
|
|
|
|
print '\n\nThe mapnik library and python bindings must have been compiled and \
|
|
|
|
installed successfully before running this script.\n\n'
|
2010-01-11 19:55:30 +01:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
try:
|
|
|
|
import cairo
|
|
|
|
HAS_PYCAIRO_MODULE = True
|
|
|
|
except ImportError:
|
|
|
|
HAS_PYCAIRO_MODULE = False
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# Instanciate a map, giving it a width and height. Remember: the word "map" is
|
|
|
|
# reserved in Python! :)
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
m = mapnik.Map(800,600,"+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs")
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# Set its background colour. More on colours later ...
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
m.background = mapnik.Color('white')
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# Now we can start adding layers, in stacking order (i.e. bottom layer first)
|
|
|
|
|
|
|
|
# Canadian Provinces (Polygons)
|
|
|
|
|
|
|
|
# Instanciate a layer. The parameters depend on the type of data:
|
|
|
|
# shape:
|
|
|
|
# type='shape'
|
|
|
|
# file='/path/to/shape'
|
|
|
|
# raster:
|
|
|
|
# type='raster'
|
|
|
|
# file='/path/to/raster'
|
|
|
|
# postgis:
|
|
|
|
# type='postgis'
|
|
|
|
# host='127.0.0.1'
|
|
|
|
# dbname='mydatabase'
|
|
|
|
# user='myusername'
|
|
|
|
# password='mypassword'
|
|
|
|
# table= TODO
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
provpoly_lyr = mapnik.Layer('Provinces')
|
2008-10-09 09:23:36 +02:00
|
|
|
provpoly_lyr.srs = "+proj=lcc +ellps=GRS80 +lat_0=49 +lon_0=-95 +lat+1=49 +lat_2=77 +datum=NAD83 +units=m +no_defs"
|
2011-11-23 12:33:58 +01:00
|
|
|
provpoly_lyr.datasource = mapnik.Shapefile(file='../data/boundaries', encoding='latin1')
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# We then define a style for the layer. A layer can have one or many styles.
|
|
|
|
# Styles are named, so they can be shared across different layers.
|
|
|
|
# Multiple styles per layer behaves functionally like multiple layers. The
|
|
|
|
# data is completely re-scanned for each style within one layer, and a style
|
|
|
|
# will be drawn entirely "above" the previous one. Performance wise using
|
|
|
|
# multiple styles in one layer is the same has having multiple layers.
|
|
|
|
# The paradigm is useful mostly as a convenience.
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
provpoly_style = mapnik.Style()
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# A Style needs one or more rules. A rule will normally consist of a filter
|
|
|
|
# for feature selection, and one or more symbolizers.
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
provpoly_rule_on = mapnik.Rule()
|
2006-03-22 03:32:38 +01:00
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
# A Expression() allows the selection of features to which the symbology will
|
2006-03-22 03:32:38 +01:00
|
|
|
# be applied. More on Mapnik expressions can be found in Tutorial #2.
|
|
|
|
# A given feature can only match one filter per rule per style.
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
provpoly_rule_on.filter = mapnik.Expression("[NAME_EN] = 'Ontario'")
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# Here a symbolizer is defined. Available are:
|
|
|
|
# - LineSymbolizer(Color(),<width>)
|
|
|
|
# - LineSymbolizer(Stroke())
|
|
|
|
# - PolygonSymbolizer(Color())
|
|
|
|
# - PointSymbolizer(<file>,<type>,<width>,<height>)
|
|
|
|
|
|
|
|
# Some of them can accept a Color() instance, which can be created with:
|
|
|
|
# - Color(<red>, <green>, <blue>)
|
|
|
|
# - Color(<red>, <green>, <blue>, <alpha>)
|
|
|
|
# - Color(<string>) where <string> will be something like '#00FF00'
|
|
|
|
# or '#0f0' or 'green'
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
provpoly_rule_on.symbols.append(mapnik.PolygonSymbolizer(mapnik.Color(250, 190, 183)))
|
2006-03-22 03:32:38 +01:00
|
|
|
provpoly_style.rules.append(provpoly_rule_on)
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
provpoly_rule_qc = mapnik.Rule()
|
|
|
|
provpoly_rule_qc.filter = mapnik.Expression("[NOM_FR] = 'Québec'")
|
|
|
|
provpoly_rule_qc.symbols.append(mapnik.PolygonSymbolizer(mapnik.Color(217, 235, 203)))
|
2006-03-22 03:32:38 +01:00
|
|
|
provpoly_style.rules.append(provpoly_rule_qc)
|
|
|
|
|
|
|
|
# Add the style to the map, giving it a name. This is the name that will be
|
|
|
|
# used to refer to it from here on. Having named styles allows them to be
|
|
|
|
# re-used throughout the map.
|
|
|
|
|
|
|
|
m.append_style('provinces', provpoly_style)
|
|
|
|
|
|
|
|
# Then associate the style to the layer itself.
|
|
|
|
|
|
|
|
provpoly_lyr.styles.append('provinces')
|
|
|
|
|
|
|
|
# Then add the layer to the map. In reality, it's the order in which you
|
|
|
|
# append them to the map that will determine the drawing order, though by
|
|
|
|
# convention it is recommended to define them in drawing order as well.
|
|
|
|
|
|
|
|
m.layers.append(provpoly_lyr)
|
|
|
|
|
|
|
|
# Drainage
|
|
|
|
|
|
|
|
# A simple example ...
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
qcdrain_lyr = mapnik.Layer('Quebec Hydrography')
|
2008-10-09 09:23:36 +02:00
|
|
|
qcdrain_lyr.srs = "+proj=lcc +ellps=GRS80 +lat_0=49 +lon_0=-95 +lat+1=49 +lat_2=77 +datum=NAD83 +units=m +no_defs"
|
2011-11-23 12:33:58 +01:00
|
|
|
qcdrain_lyr.datasource = mapnik.Shapefile(file='../data/qcdrainage')
|
2006-03-22 03:32:38 +01:00
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
qcdrain_style = mapnik.Style()
|
|
|
|
qcdrain_rule = mapnik.Rule()
|
|
|
|
qcdrain_rule.filter = mapnik.Expression('[HYC] = 8')
|
|
|
|
qcdrain_rule.symbols.append(mapnik.PolygonSymbolizer(mapnik.Color(153, 204, 255)))
|
2006-03-22 03:32:38 +01:00
|
|
|
qcdrain_style.rules.append(qcdrain_rule)
|
|
|
|
|
|
|
|
m.append_style('drainage', qcdrain_style)
|
|
|
|
qcdrain_lyr.styles.append('drainage')
|
|
|
|
m.layers.append(qcdrain_lyr)
|
|
|
|
|
|
|
|
# In this case, we have 2 data sets with similar schemas (same filtering
|
|
|
|
# attributes, and same desired style), so we're going to
|
|
|
|
# re-use the style defined in the above layer for the next one.
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
ondrain_lyr = mapnik.Layer('Ontario Hydrography')
|
2008-10-09 09:23:36 +02:00
|
|
|
ondrain_lyr.srs = "+proj=lcc +ellps=GRS80 +lat_0=49 +lon_0=-95 +lat+1=49 +lat_2=77 +datum=NAD83 +units=m +no_defs"
|
2011-11-23 12:33:58 +01:00
|
|
|
ondrain_lyr.datasource = mapnik.Shapefile(file='../data/ontdrainage')
|
2006-10-03 10:44:04 +02:00
|
|
|
|
2006-03-22 03:32:38 +01:00
|
|
|
ondrain_lyr.styles.append('drainage')
|
|
|
|
m.layers.append(ondrain_lyr)
|
|
|
|
|
|
|
|
# Provincial boundaries
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
provlines_lyr = mapnik.Layer('Provincial borders')
|
2008-10-09 09:23:36 +02:00
|
|
|
provlines_lyr.srs = "+proj=lcc +ellps=GRS80 +lat_0=49 +lon_0=-95 +lat+1=49 +lat_2=77 +datum=NAD83 +units=m +no_defs"
|
2011-11-23 12:33:58 +01:00
|
|
|
provlines_lyr.datasource = mapnik.Shapefile(file='../data/boundaries_l')
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# Here we define a "dash dot dot dash" pattern for the provincial boundaries.
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
provlines_stk = mapnik.Stroke()
|
2006-03-22 03:32:38 +01:00
|
|
|
provlines_stk.add_dash(8, 4)
|
|
|
|
provlines_stk.add_dash(2, 2)
|
|
|
|
provlines_stk.add_dash(2, 2)
|
2011-11-23 12:33:58 +01:00
|
|
|
provlines_stk.color = mapnik.Color('black')
|
2006-03-22 03:32:38 +01:00
|
|
|
provlines_stk.width = 1.0
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
provlines_style = mapnik.Style()
|
|
|
|
provlines_rule = mapnik.Rule()
|
|
|
|
provlines_rule.symbols.append(mapnik.LineSymbolizer(provlines_stk))
|
2006-03-22 03:32:38 +01:00
|
|
|
provlines_style.rules.append(provlines_rule)
|
|
|
|
|
|
|
|
m.append_style('provlines', provlines_style)
|
|
|
|
provlines_lyr.styles.append('provlines')
|
|
|
|
m.layers.append(provlines_lyr)
|
|
|
|
|
|
|
|
# Roads 3 and 4 (The "grey" roads)
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads34_lyr = mapnik.Layer('Roads')
|
2008-10-09 09:23:36 +02:00
|
|
|
roads34_lyr.srs = "+proj=lcc +ellps=GRS80 +lat_0=49 +lon_0=-95 +lat+1=49 +lat_2=77 +datum=NAD83 +units=m +no_defs"
|
2006-10-17 00:25:11 +02:00
|
|
|
# create roads datasource (we're going to re-use it later)
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads34_lyr.datasource = mapnik.Shapefile(file='../data/roads')
|
2006-03-22 03:32:38 +01:00
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads34_style = mapnik.Style()
|
|
|
|
roads34_rule = mapnik.Rule()
|
|
|
|
roads34_rule.filter = mapnik.Expression('([CLASS] = 3) or ([CLASS] = 4)')
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# With lines of a certain width, you can control how the ends
|
|
|
|
# are closed off using line_cap as below.
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads34_rule_stk = mapnik.Stroke()
|
|
|
|
roads34_rule_stk.color = mapnik.Color(171,158,137)
|
|
|
|
roads34_rule_stk.line_cap = mapnik.line_cap.ROUND_CAP
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# Available options are:
|
|
|
|
# line_cap: BUTT_CAP, SQUARE_CAP, ROUND_CAP
|
|
|
|
# line_join: MITER_JOIN, MITER_REVERT_JOIN, ROUND_JOIN, BEVEL_JOIN
|
|
|
|
|
|
|
|
# And one last Stroke() attribute not used here is "opacity", which
|
|
|
|
# can be set to a numerical value.
|
|
|
|
|
|
|
|
roads34_rule_stk.width = 2.0
|
2011-11-23 12:33:58 +01:00
|
|
|
roads34_rule.symbols.append(mapnik.LineSymbolizer(roads34_rule_stk))
|
2006-03-22 03:32:38 +01:00
|
|
|
roads34_style.rules.append(roads34_rule)
|
|
|
|
|
|
|
|
m.append_style('smallroads', roads34_style)
|
|
|
|
roads34_lyr.styles.append('smallroads')
|
|
|
|
m.layers.append(roads34_lyr)
|
|
|
|
|
|
|
|
# Roads 2 (The thin yellow ones)
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads2_lyr = mapnik.Layer('Roads')
|
2008-10-09 09:23:36 +02:00
|
|
|
roads2_lyr.srs = "+proj=lcc +ellps=GRS80 +lat_0=49 +lon_0=-95 +lat+1=49 +lat_2=77 +datum=NAD83 +units=m +no_defs"
|
2006-10-17 00:25:11 +02:00
|
|
|
# Just get a copy from roads34_lyr
|
|
|
|
roads2_lyr.datasource = roads34_lyr.datasource
|
2006-03-22 03:32:38 +01:00
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads2_style_1 = mapnik.Style()
|
|
|
|
roads2_rule_1 = mapnik.Rule()
|
|
|
|
roads2_rule_1.filter = mapnik.Expression('[CLASS] = 2')
|
|
|
|
roads2_rule_stk_1 = mapnik.Stroke()
|
|
|
|
roads2_rule_stk_1.color = mapnik.Color(171,158,137)
|
|
|
|
roads2_rule_stk_1.line_cap = mapnik.line_cap.ROUND_CAP
|
2006-03-22 03:32:38 +01:00
|
|
|
roads2_rule_stk_1.width = 4.0
|
2011-11-23 12:33:58 +01:00
|
|
|
roads2_rule_1.symbols.append(mapnik.LineSymbolizer(roads2_rule_stk_1))
|
2006-03-22 03:32:38 +01:00
|
|
|
roads2_style_1.rules.append(roads2_rule_1)
|
|
|
|
|
|
|
|
m.append_style('road-border', roads2_style_1)
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads2_style_2 = mapnik.Style()
|
|
|
|
roads2_rule_2 = mapnik.Rule()
|
|
|
|
roads2_rule_2.filter = mapnik.Expression('[CLASS] = 2')
|
|
|
|
roads2_rule_stk_2 = mapnik.Stroke()
|
|
|
|
roads2_rule_stk_2.color = mapnik.Color(255,250,115)
|
|
|
|
roads2_rule_stk_2.line_cap = mapnik.line_cap.ROUND_CAP
|
2006-03-22 03:32:38 +01:00
|
|
|
roads2_rule_stk_2.width = 2.0
|
2011-11-23 12:33:58 +01:00
|
|
|
roads2_rule_2.symbols.append(mapnik.LineSymbolizer(roads2_rule_stk_2))
|
2006-03-22 03:32:38 +01:00
|
|
|
roads2_style_2.rules.append(roads2_rule_2)
|
|
|
|
|
|
|
|
m.append_style('road-fill', roads2_style_2)
|
|
|
|
|
|
|
|
roads2_lyr.styles.append('road-border')
|
|
|
|
roads2_lyr.styles.append('road-fill')
|
|
|
|
|
|
|
|
m.layers.append(roads2_lyr)
|
|
|
|
|
|
|
|
# Roads 1 (The big orange ones, the highways)
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads1_lyr = mapnik.Layer('Roads')
|
2008-10-09 09:23:36 +02:00
|
|
|
roads1_lyr.srs = "+proj=lcc +ellps=GRS80 +lat_0=49 +lon_0=-95 +lat+1=49 +lat_2=77 +datum=NAD83 +units=m +no_defs"
|
2006-10-17 00:25:11 +02:00
|
|
|
roads1_lyr.datasource = roads34_lyr.datasource
|
2006-03-22 03:32:38 +01:00
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads1_style_1 = mapnik.Style()
|
|
|
|
roads1_rule_1 = mapnik.Rule()
|
|
|
|
roads1_rule_1.filter = mapnik.Expression('[CLASS] = 1')
|
|
|
|
roads1_rule_stk_1 = mapnik.Stroke()
|
|
|
|
roads1_rule_stk_1.color = mapnik.Color(188,149,28)
|
|
|
|
roads1_rule_stk_1.line_cap = mapnik.line_cap.ROUND_CAP
|
2006-03-22 03:32:38 +01:00
|
|
|
roads1_rule_stk_1.width = 7.0
|
2011-11-23 12:33:58 +01:00
|
|
|
roads1_rule_1.symbols.append(mapnik.LineSymbolizer(roads1_rule_stk_1))
|
2006-03-22 03:32:38 +01:00
|
|
|
roads1_style_1.rules.append(roads1_rule_1)
|
|
|
|
m.append_style('highway-border', roads1_style_1)
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
roads1_style_2 = mapnik.Style()
|
|
|
|
roads1_rule_2 = mapnik.Rule()
|
|
|
|
roads1_rule_2.filter = mapnik.Expression('[CLASS] = 1')
|
|
|
|
roads1_rule_stk_2 = mapnik.Stroke()
|
|
|
|
roads1_rule_stk_2.color = mapnik.Color(242,191,36)
|
|
|
|
roads1_rule_stk_2.line_cap = mapnik.line_cap.ROUND_CAP
|
2006-03-22 03:32:38 +01:00
|
|
|
roads1_rule_stk_2.width = 5.0
|
2011-11-23 12:33:58 +01:00
|
|
|
roads1_rule_2.symbols.append(mapnik.LineSymbolizer(roads1_rule_stk_2))
|
2006-03-22 03:32:38 +01:00
|
|
|
roads1_style_2.rules.append(roads1_rule_2)
|
|
|
|
|
|
|
|
m.append_style('highway-fill', roads1_style_2)
|
|
|
|
|
|
|
|
roads1_lyr.styles.append('highway-border')
|
|
|
|
roads1_lyr.styles.append('highway-fill')
|
|
|
|
|
|
|
|
m.layers.append(roads1_lyr)
|
|
|
|
|
|
|
|
# Populated Places
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
popplaces_lyr = mapnik.Layer('Populated Places')
|
2008-10-09 09:23:36 +02:00
|
|
|
popplaces_lyr.srs = "+proj=lcc +ellps=GRS80 +lat_0=49 +lon_0=-95 +lat+1=49 +lat_2=77 +datum=NAD83 +units=m +no_defs"
|
2011-11-23 12:33:58 +01:00
|
|
|
popplaces_lyr.datasource = mapnik.Shapefile(file='../data/popplaces',encoding='latin1')
|
2006-03-22 03:32:38 +01:00
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
popplaces_style = mapnik.Style()
|
|
|
|
popplaces_rule = mapnik.Rule()
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# And here we have a TextSymbolizer, used for labeling.
|
|
|
|
# The first parameter is the name of the attribute to use as the source of the
|
|
|
|
# text to label with. Then there is font size in points (I think?), and colour.
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
popplaces_text_symbolizer = mapnik.TextSymbolizer(mapnik.Expression("[GEONAME]"),
|
2007-02-12 16:25:59 +01:00
|
|
|
'DejaVu Sans Book',
|
2011-11-23 12:33:58 +01:00
|
|
|
10, mapnik.Color('black'))
|
2006-03-22 03:32:38 +01:00
|
|
|
|
|
|
|
# We set a "halo" around the text, which looks like an outline if thin enough,
|
|
|
|
# or an outright background if large enough.
|
2011-11-23 12:33:58 +01:00
|
|
|
popplaces_text_symbolizer.label_placement= mapnik.label_placement.POINT_PLACEMENT
|
|
|
|
popplaces_text_symbolizer.halo_fill = mapnik.Color('white')
|
2006-03-22 03:32:38 +01:00
|
|
|
popplaces_text_symbolizer.halo_radius = 1
|
2008-09-21 21:52:12 +02:00
|
|
|
popplaces_text_symbolizer.avoid_edges = True
|
2010-11-03 14:18:56 +01:00
|
|
|
#popplaces_text_symbolizer.minimum_padding = 30
|
|
|
|
|
2006-03-22 03:32:38 +01:00
|
|
|
popplaces_rule.symbols.append(popplaces_text_symbolizer)
|
2006-11-04 11:38:24 +01:00
|
|
|
|
2006-03-22 03:32:38 +01:00
|
|
|
popplaces_style.rules.append(popplaces_rule)
|
|
|
|
|
|
|
|
m.append_style('popplaces', popplaces_style)
|
|
|
|
popplaces_lyr.styles.append('popplaces')
|
|
|
|
m.layers.append(popplaces_lyr)
|
|
|
|
|
|
|
|
# Draw map
|
|
|
|
|
2008-11-16 22:36:23 +01:00
|
|
|
# Set the initial extent of the map in 'master' spherical Mercator projection
|
2011-11-23 12:33:58 +01:00
|
|
|
m.zoom_to_box(mapnik.Box2d(-8024477.28459,5445190.38849,-7381388.20071,5662941.44855))
|
2006-03-22 03:32:38 +01:00
|
|
|
|
2008-01-03 12:39:10 +01:00
|
|
|
# Render two maps, two PNGs, one JPEG.
|
2011-11-23 12:33:58 +01:00
|
|
|
im = mapnik.Image(m.width,m.height)
|
|
|
|
mapnik.render(m, im)
|
2006-03-22 03:32:38 +01:00
|
|
|
|
2008-01-25 15:40:48 +01:00
|
|
|
# Save image to files
|
2010-01-11 19:55:30 +01:00
|
|
|
images_ = []
|
2009-07-26 03:15:44 +02:00
|
|
|
im.save('demo.png', 'png') # true-colour RGBA
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo.png')
|
2010-03-12 19:23:06 +01:00
|
|
|
|
|
|
|
# old behavior, now can do 'png8:c=256'
|
|
|
|
im.save('demo256.png', 'png256') # save to palette based (max 256 colours) png
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo256.png')
|
2010-03-12 19:23:06 +01:00
|
|
|
|
|
|
|
im.save('demo64_binary_transparency.png', 'png8:c=64:t=1')
|
|
|
|
images_.append('demo64_binary_transparency.png')
|
|
|
|
|
|
|
|
im.save('demo128_colors_hextree_no_alpha.png', 'png8:c=100:m=h:t=0')
|
|
|
|
images_.append('demo128_colors_hextree_no_alpha.png')
|
|
|
|
|
2010-01-11 19:55:30 +01:00
|
|
|
im.save('demo_high.jpg', 'jpeg100')
|
|
|
|
images_.append('demo_high.jpg')
|
2010-03-12 19:23:06 +01:00
|
|
|
|
2010-01-11 19:55:30 +01:00
|
|
|
im.save('demo_low.jpg', 'jpeg50')
|
|
|
|
images_.append('demo_low.jpg')
|
2006-03-22 03:41:13 +01:00
|
|
|
|
2008-03-12 01:37:53 +01:00
|
|
|
# Render cairo examples
|
2011-11-23 12:33:58 +01:00
|
|
|
if HAS_PYCAIRO_MODULE and mapnik.has_pycairo():
|
2009-07-28 08:27:10 +02:00
|
|
|
|
|
|
|
svg_surface = cairo.SVGSurface('demo.svg', m.width,m.height)
|
2011-11-23 12:33:58 +01:00
|
|
|
mapnik.render(m, svg_surface)
|
2009-07-28 08:27:10 +02:00
|
|
|
svg_surface.finish()
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo.svg')
|
2009-07-28 08:27:10 +02:00
|
|
|
|
|
|
|
pdf_surface = cairo.PDFSurface('demo.pdf', m.width,m.height)
|
2011-11-23 12:33:58 +01:00
|
|
|
mapnik.render(m, pdf_surface)
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo.pdf')
|
2009-07-28 08:27:10 +02:00
|
|
|
pdf_surface.finish()
|
|
|
|
|
|
|
|
postscript_surface = cairo.PSSurface('demo.ps', m.width,m.height)
|
2011-11-23 12:33:58 +01:00
|
|
|
mapnik.render(m, postscript_surface)
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo.ps')
|
2009-07-28 08:27:10 +02:00
|
|
|
postscript_surface.finish()
|
2010-01-11 19:55:30 +01:00
|
|
|
|
2009-07-28 08:27:10 +02:00
|
|
|
else:
|
2010-01-11 19:55:30 +01:00
|
|
|
print '\n\nPycairo not available...',
|
2011-11-23 12:33:58 +01:00
|
|
|
if mapnik.has_cairo():
|
2010-01-11 19:55:30 +01:00
|
|
|
print ' will render Cairo formats using alternative method'
|
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
mapnik.render_to_file(m,'demo.pdf')
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo.pdf')
|
2011-11-23 12:33:58 +01:00
|
|
|
mapnik.render_to_file(m,'demo.ps')
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo.ps')
|
2011-11-23 12:33:58 +01:00
|
|
|
mapnik.render_to_file(m,'demo.svg')
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo.svg')
|
2011-11-23 12:33:58 +01:00
|
|
|
mapnik.render_to_file(m,'demo_cairo_rgb.png','RGB24')
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo_cairo_rgb.png')
|
2011-11-23 12:33:58 +01:00
|
|
|
mapnik.render_to_file(m,'demo_cairo_argb.png','ARGB32')
|
2010-01-11 19:55:30 +01:00
|
|
|
images_.append('demo_cairo_argb.png')
|
|
|
|
|
|
|
|
print "\n\n", len(images_), "maps have been rendered in the current directory:"
|
|
|
|
|
|
|
|
for im_ in images_:
|
|
|
|
print "-", im_
|
2006-03-22 03:41:13 +01:00
|
|
|
|
2008-03-12 01:37:53 +01:00
|
|
|
print "\n\nHave a look!\n\n"
|
2008-10-09 09:23:36 +02:00
|
|
|
|
2011-11-23 12:33:58 +01:00
|
|
|
mapnik.save_map(m,"map.xml")
|