+ Building/Raster symbolizers support
This commit is contained in:
parent
0f597b2809
commit
4388ff5fbc
1 changed files with 8 additions and 2 deletions
|
@ -60,6 +60,12 @@ if __name__ == "__main__":
|
||||||
if hasattr(rule,'PolygonSymbolizer') :
|
if hasattr(rule,'PolygonSymbolizer') :
|
||||||
for sym in rule.PolygonSymbolizer:
|
for sym in rule.PolygonSymbolizer:
|
||||||
fixup_sym_attributes(sym)
|
fixup_sym_attributes(sym)
|
||||||
|
if hasattr(rule,'RasterSymbolizer') :
|
||||||
|
for sym in rule.RasterSymbolizer:
|
||||||
|
fixup_sym_attributes(sym)
|
||||||
|
if hasattr(rule,'BuildingSymbolizer') :
|
||||||
|
for sym in rule.BuildingSymbolizer:
|
||||||
|
fixup_sym_attributes(sym)
|
||||||
|
|
||||||
print etree.tostring(tree,pretty_print=True,standalone=True)
|
print etree.tostring(tree,pretty_print=True,standalone=True)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue