mapnik/tests/data/good_maps/raster_symbolizer.xml
2011-02-05 03:21:22 +00:00

35 lines
No EOL
1 KiB
XML

<Map background-color="white" srs="+init=epsg:32630" minimum-version="0.7.2">
<Style name="two-value">
<Rule>
<RasterSymbolizer opacity="1">
<RasterColorizer>
<ColorBand value="0" color="yellow" label="&lt;0"/>
<ColorBand value="26" color="purple" midpoints="1"/>
</RasterColorizer>
</RasterSymbolizer>
</Rule>
</Style>
<Style name="ramped">
<Rule>
<RasterSymbolizer>
<RasterColorizer>
<ColorBand value="0" color="red" label="&lt;0"/>
<ColorBand value="26" color="green" midpoints="100"/>
</RasterColorizer>
</RasterSymbolizer>
</Rule>
</Style>
<Layer name="dataraster" srs="+init=epsg:32630">
<StyleName>ramped</StyleName>
<Datasource>
<!-- get stats on this file with gdalinfo ../raster/dataraster.tif -stats -->
<Parameter name="file">../raster/dataraster.tif</Parameter>
<Parameter name="type">gdal</Parameter>
<Parameter name="band">1</Parameter>
</Datasource>
</Layer>
</Map>