1 |
# Copyright (c) 2001-2005 by Intevation GmbH |
# Copyright (c) 2001-2005 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Jan-Oliver Wagner <[email protected]> (2004) |
# Jan-Oliver Wagner <[email protected]> (2004-2005) |
4 |
# Bernhard Herzog <[email protected]> (2001-2004) |
# Bernhard Herzog <[email protected]> (2001-2004) |
5 |
# Jonathan Coles <[email protected]> (2003) |
# Jonathan Coles <[email protected]> (2003) |
6 |
# Frank Koormann <[email protected]> (2003) |
# Frank Koormann <[email protected]> (2003) |
23 |
from Thuban.Model.layer import Layer, RasterLayer |
from Thuban.Model.layer import Layer, RasterLayer |
24 |
|
|
25 |
from Thuban.Model.classification import \ |
from Thuban.Model.classification import \ |
26 |
ClassGroupDefault, ClassGroupSingleton, ClassGroupRange, ClassGroupMap |
ClassGroupDefault, ClassGroupSingleton, ClassGroupRange, \ |
27 |
|
ClassGroupPattern, ClassGroupMap |
28 |
from Thuban.Model.transientdb import AutoTransientTable, TransientJoinedTable |
from Thuban.Model.transientdb import AutoTransientTable, TransientJoinedTable |
29 |
from Thuban.Model.table import DBFTable, FIELDTYPE_STRING |
from Thuban.Model.table import DBFTable, FIELDTYPE_STRING |
30 |
from Thuban.Model.data import DerivedShapeStore, FileShapeStore, \ |
from Thuban.Model.data import DerivedShapeStore, FileShapeStore, \ |
292 |
|
|
293 |
if isinstance(layer, Layer): |
if isinstance(layer, Layer): |
294 |
attrs["shapestore"] = self.get_id(layer.ShapeStore()) |
attrs["shapestore"] = self.get_id(layer.ShapeStore()) |
|
|
|
|
lc = layer.GetClassification() |
|
|
attrs["stroke"] = lc.GetDefaultLineColor().hex() |
|
|
attrs["stroke_width"] = str(lc.GetDefaultLineWidth()) |
|
|
attrs["fill"] = lc.GetDefaultFill().hex() |
|
|
|
|
295 |
self.open_element("layer", attrs) |
self.open_element("layer", attrs) |
296 |
self.write_projection(layer.GetProjection()) |
self.write_projection(layer.GetProjection()) |
297 |
self.write_classification(layer) |
self.write_classification(layer) |
321 |
|
|
322 |
field = layer.GetClassificationColumn() |
field = layer.GetClassificationColumn() |
323 |
|
|
324 |
# |
if field is not None: |
325 |
# there isn't a classification of anything so do nothing |
attrs["field"] = field |
326 |
# |
attrs["field_type"] = str(layer.GetFieldType(field)) |
|
if field is None: return |
|
327 |
|
|
|
attrs["field"] = field |
|
|
attrs["field_type"] = str(layer.GetFieldType(field)) |
|
328 |
self.open_element("classification", attrs) |
self.open_element("classification", attrs) |
329 |
|
|
330 |
for g in lc: |
for g in lc: |
343 |
open_el = 'clrange label="%s" range="%s"' \ |
open_el = 'clrange label="%s" range="%s"' \ |
344 |
% (self.encode(g.GetLabel()), str(g.GetRange())) |
% (self.encode(g.GetLabel()), str(g.GetRange())) |
345 |
close_el = 'clrange' |
close_el = 'clrange' |
346 |
|
elif isinstance(g, ClassGroupPattern): |
347 |
|
open_el = 'clpattern label="%s" pattern="%s"' \ |
348 |
|
% (self.encode(g.GetLabel()), str(g.GetPattern())) |
349 |
|
close_el = 'clpattern' |
350 |
|
|
351 |
else: |
else: |
352 |
assert False, _("Unsupported group type in classification") |
assert False, _("Unsupported group type in classification") |
353 |
continue |
continue |