mapnik/plugins/input/raster
Artem Pavlenko 37f49e29cc Applied patches from Martijn van Oosterhout:
1. The first allows the user to add a <FileSource
name="foo">/home/bar/baz/</FileSource> to the beginning of the file
and then in any of the symbolisers you can say:

<FooSymboliser base="foo" name="bridge">
It it will refer to the file /home/bar/baz/bridge.

2. The second allows you to create Datasource templates at the top
level, which can be used later in the actual layers like so:
<Map>
  <Datasource name="db">
   <Paramaeter name="host">/tmp</Parameter>
  </Datasource>
  <Layer name="lay">
    <Datasource base="db">
      <Parameter name="table">points</Parameter>
    </Datasource>
  </Layer>
</Map>

And the host parameter will be used in the layer.

3. The third adds the "base" parameter to the raster and shape input
plugins. All it does is specify a path to prefix to the filename prior
to using it. Together with the above feature it allows things like:
<Map>
  <Datasource name="shapes">
   <Paramaeter name="base">/home/foo/shapes</Parameter>
  </Datasource>
  <Layer name="lay">
    <Datasource base="shapes">
      <Parameter name="file">places</Parameter>
    </Datasource>
  </Layer>
</Map>

And it will use the shapefile /home/foo/shapes/places
2007-12-17 14:21:04 +00:00
..
Makefile.am build plugins without .so extension 2007-09-17 20:16:43 +00:00
raster_datasource.cpp Applied patches from Martijn van Oosterhout: 2007-12-17 14:21:04 +00:00
raster_datasource.hpp small correction 2007-04-25 11:26:48 +00:00
raster_featureset.cpp increment feature id 2007-04-30 20:08:49 +00:00
raster_featureset.hpp 1.Added support for building on Darwin (Xcode 2.4.1, gcc4.0.1). 2007-03-16 10:11:37 +00:00
raster_info.cpp changing licence from GPL to LGPL 2006-03-31 10:32:02 +00:00
raster_info.hpp changing licence from GPL to LGPL 2006-03-31 10:32:02 +00:00
SConscript 1. Changed internal geometry representation (explicit support for multi geometries) 2007-09-16 11:23:51 +00:00