forked from mapnik/mapnik
-
Notifications
You must be signed in to change notification settings - Fork 0
ShapeFile
Dane Springmeyer edited this page Jan 23, 2013
·
8 revisions
This plugin supports reading shapefiles. They can also be read using the OGR Plugin, but the shape plugin is better tested and more mature.
The shapefile plugin will run fastest if you build indexes for your shapefiles using the 'shapeindex' command line tool installed when you build Mapnik.
For other plugins see: PluginArchitecture
To check if the raster plugin built and was installed correctly you can do:
>>> from mapnik import DatasourceCache as c
>>> 'shape' in c.plugin_names()
True
parameter | value | description | default |
---|---|---|---|
encoding | string | Encoding Used | utf-8. ESRI Shapefiles are usually 'latin1' |
file | string | name of shapefile (without extension) |
To style a layer, use any of the Symbolizers like Point, Polygon, or Line, depending on the geometry type.
Plugin datasource initialization example code can be found on PluginArchitecture.
A Shapefile datasource may be created as follows:
{
parameters p;
p["type"]="shape";
p["file"]="path/to/my/shapefile.shp";
// Bridges
Layer lyr("Vector");
lyr.set_datasource(datasource_cache::instance()->create(p));
lyr.add_style("vector");
m.addLayer(lyr);
}
<Layer name="vector" srs="+init=epsg:4236">
<StyleName>polygon</StyleName>
<Datasource>
<Parameter name="type">shape</Parameter>
<!-- you can also point to your shapefile without the 'shp' extention -->
<Parameter name="file">/path/to/your/shapefile.shp</Parameter>
</Datasource>
</Layer>