mapnik/plugins/input
Artem Pavlenko 73bd1ab83e fixed missing 'encoding' parameter:
>>> from mapnik import *
>>> ds = Shapefile(file='./demo/data/boundaries',encoding='latin1')
>>> pt = ds.envelope().center()
>>> print ds.describe()
>>> for f in ds.features_at_point(pt):
>>>     print f.properties['NOM_FR'].unicode()
>>>     print f.properties['NOM_FR'].__str__()
2007-02-14 21:55:04 +00:00
..
postgis Store text attributes as USC-2 encoded std::wstring 2007-02-14 19:54:39 +00:00
raster Added transcoder based on iconv. Internally we use UCS-2 at the moment. 2007-02-06 14:27:21 +00:00
shape fixed missing 'encoding' parameter: 2007-02-14 21:55:04 +00:00