/[thuban]/branches/WIP-pyshapelib-bramz/Thuban/UI/view.py
ViewVC logotype

Contents of /branches/WIP-pyshapelib-bramz/Thuban/UI/view.py

Parent Directory Parent Directory | Revision Log Revision Log


Revision 159 - (show annotations)
Wed May 8 13:46:15 2002 UTC (22 years, 10 months ago) by bh
Original Path: trunk/thuban/Thuban/UI/view.py
File MIME type: text/x-python
File size: 26153 byte(s)
	* Thuban/UI/view.py (PanTool.MouseMove): Use the bitmap the view
	maintains to redraw the window during a drag.
	(MapCanvas.unprojected_rect_around_point): New method to determine
	a small region around a point for hit-testing.
	(MapCanvas.find_shape_at): Only test the shapes in a small region
	around the point.

1 # Copyright (c) 2001, 2002 by Intevation GmbH
2 # Authors:
3 # Bernhard Herzog <[email protected]>
4 #
5 # This program is free software under the GPL (>=v2)
6 # Read the file COPYING coming with Thuban for details.
7
8 """
9 Classes for display of a map and interaction with it
10 """
11
12 __version__ = "$Revision$"
13
14 from math import hypot
15
16 from wxPython.wx import wxWindow,\
17 wxPaintDC, wxColour, wxClientDC, wxINVERT, wxTRANSPARENT_BRUSH, wxFont,\
18 EVT_PAINT, EVT_LEFT_DOWN, EVT_LEFT_UP, EVT_MOTION, EVT_LEAVE_WINDOW
19
20
21 from wxPython import wx
22
23 from wxproj import point_in_polygon_shape, shape_centroid
24
25
26 from Thuban.Model.messages import MAP_PROJECTION_CHANGED, \
27 LAYERS_CHANGED, LAYER_LEGEND_CHANGED, LAYER_VISIBILITY_CHANGED
28 from Thuban.Model.layer import SHAPETYPE_POLYGON, SHAPETYPE_ARC, \
29 SHAPETYPE_POINT
30 from Thuban.Model.label import ALIGN_CENTER, ALIGN_TOP, ALIGN_BOTTOM, \
31 ALIGN_LEFT, ALIGN_RIGHT
32 from Thuban.Lib.connector import Publisher
33
34 from renderer import ScreenRenderer, PrinterRender
35
36 import labeldialog
37
38 from messages import SELECTED_SHAPE, VIEW_POSITION
39
40
41 #
42 # The tools
43 #
44
45 class Tool:
46
47 """
48 Base class for the interactive tools
49 """
50
51 def __init__(self, view):
52 """Intitialize the tool. The view is the canvas displaying the map"""
53 self.view = view
54 self.start = self.current = None
55 self.dragging = 0
56 self.drawn = 0
57
58 def Name(self):
59 """Return the tool's name"""
60 return ''
61
62 def drag_start(self, x, y):
63 self.start = self.current = x, y
64 self.dragging = 1
65
66 def drag_move(self, x, y):
67 self.current = x, y
68
69 def drag_stop(self, x, y):
70 self.current = x, y
71 self.dragging = 0
72
73 def Show(self, dc):
74 if not self.drawn:
75 self.draw(dc)
76 self.drawn = 1
77
78 def Hide(self, dc):
79 if self.drawn:
80 self.draw(dc)
81 self.drawn = 0
82
83 def draw(self, dc):
84 pass
85
86 def MouseDown(self, event):
87 self.drag_start(event.m_x, event.m_y)
88
89 def MouseMove(self, event):
90 if self.dragging:
91 self.drag_move(event.m_x, event.m_y)
92
93 def MouseUp(self, event):
94 if self.dragging:
95 self.drag_move(event.m_x, event.m_y)
96
97 def Cancel(self):
98 self.dragging = 0
99
100
101 class RectTool(Tool):
102
103 """Base class for tools that draw rectangles while dragging"""
104
105 def draw(self, dc):
106 sx, sy = self.start
107 cx, cy = self.current
108 dc.DrawRectangle(sx, sy, cx - sx, cy - sy)
109
110 class ZoomInTool(RectTool):
111
112 """The Zoom-In Tool"""
113
114 def Name(self):
115 return "ZoomInTool"
116
117 def proj_rect(self):
118 """return the rectangle given by start and current in projected
119 coordinates"""
120 sx, sy = self.start
121 cx, cy = self.current
122 left, top = self.view.win_to_proj(sx, sy)
123 right, bottom = self.view.win_to_proj(cx, cy)
124 return (min(left, right), min(top, bottom),
125 max(left, right), max(top, bottom))
126
127 def MouseUp(self, event):
128 if self.dragging:
129 Tool.MouseUp(self, event)
130 sx, sy = self.start
131 cx, cy = self.current
132 if sx == cx and sy == cy:
133 # Just a mouse click. Simply zoom in by a factor of two
134 self.view.ZoomFactor(2, center = (cx, cy))
135 else:
136 # A drag. Zoom in to the rectangle
137 self.view.FitRectToWindow(self.proj_rect())
138
139
140 class ZoomOutTool(RectTool):
141
142 """The Zoom-Out Tool"""
143
144 def Name(self):
145 return "ZoomOutTool"
146
147 def MouseUp(self, event):
148 if self.dragging:
149 Tool.MouseUp(self, event)
150 sx, sy = self.start
151 cx, cy = self.current
152 if sx == cx and sy == cy:
153 # Just a mouse click. Simply zoom out by a factor of two
154 self.view.ZoomFactor(0.5, center = (cy, cy))
155 else:
156 # A drag. Zoom out to the rectangle
157 self.view.ZoomOutToRect((min(sx, cx), min(sy, cy),
158 max(sx, cx), max(sy, cy)))
159
160
161 class PanTool(Tool):
162
163 """The Pan Tool"""
164
165 def Name(self):
166 return "PanTool"
167
168 def MouseMove(self, event):
169 if self.dragging:
170 Tool.MouseMove(self, event)
171 sx, sy = self.start
172 x, y = self.current
173 width, height = self.view.GetSizeTuple()
174
175 bitmapdc = wx.wxMemoryDC()
176 bitmapdc.SelectObject(self.view.bitmap)
177
178 dc = self.view.drag_dc
179 dc.Blit(0, 0, width, height, bitmapdc, sx - x, sy - y)
180
181 def MouseUp(self, event):
182 if self.dragging:
183 Tool.MouseUp(self, event)
184 sx, sy = self.start
185 cx, cy = self.current
186 self.view.Translate(cx - sx, cy - sy)
187
188 class IdentifyTool(Tool):
189
190 """The "Identify" Tool"""
191
192 def Name(self):
193 return "IdentifyTool"
194
195 def MouseUp(self, event):
196 self.view.SelectShapeAt(event.m_x, event.m_y)
197
198
199 class LabelTool(Tool):
200
201 """The "Label" Tool"""
202
203 def Name(self):
204 return "LabelTool"
205
206 def MouseUp(self, event):
207 self.view.LabelShapeAt(event.m_x, event.m_y)
208
209
210
211
212 class MapPrintout(wx.wxPrintout):
213
214 """
215 wxPrintout class for printing Thuban maps
216 """
217
218 def __init__(self, map):
219 wx.wxPrintout.__init__(self)
220 self.map = map
221
222 def GetPageInfo(self):
223 return (1, 1, 1, 1)
224
225 def HasPage(self, pagenum):
226 return pagenum == 1
227
228 def OnPrintPage(self, pagenum):
229 if pagenum == 1:
230 self.draw_on_dc(self.GetDC())
231
232 def draw_on_dc(self, dc):
233 width, height = self.GetPageSizePixels()
234 llx, lly, urx, ury = self.map.ProjectedBoundingBox()
235 scalex = width / (urx - llx)
236 scaley = height / (ury - lly)
237 scale = min(scalex, scaley)
238 offx = 0.5 * (width - (urx + llx) * scale)
239 offy = 0.5 * (height + (ury + lly) * scale)
240
241 resx, resy = self.GetPPIPrinter()
242 renderer = PrinterRender(dc, scale, (offx, offy), resolution = resx)
243 renderer.RenderMap(self.map)
244 return wx.true
245
246
247 class MapCanvas(wxWindow, Publisher):
248
249 """A widget that displays a map and offers some interaction"""
250
251 def __init__(self, parent, winid, interactor):
252 wxWindow.__init__(self, parent, winid)
253 self.SetBackgroundColour(wxColour(255, 255, 255))
254
255 # the map displayed in this canvas. Set with SetMap()
256 self.map = None
257
258 # scale and offset describe the transformation from projected
259 # coordinates to window coordinates.
260 self.scale = 1.0
261 self.offset = (0, 0)
262
263 # whether the user is currently dragging the mouse, i.e. moving
264 # the mouse while pressing a mouse button
265 self.dragging = 0
266
267 # the currently active tool
268 self.tool = None
269
270 # The current mouse position of the last OnMotion event or None
271 # if the mouse is outside the window.
272 self.current_position = None
273
274 # If true, OnIdle will call do_redraw to do the actual
275 # redrawing. Set by OnPaint to avoid some unnecessary redraws.
276 # To force a redraw call full_redraw().
277 self.redraw_on_idle = 0
278
279 # The region to update when idle
280 self.update_region = wx.wxRegion()
281
282 # the bitmap serving as backing store
283 self.bitmap = None
284
285 # the interactor
286 self.interactor = interactor
287 self.interactor.Subscribe(SELECTED_SHAPE, self.shape_selected)
288
289 # subscribe the WX events we're interested in
290 EVT_PAINT(self, self.OnPaint)
291 EVT_LEFT_DOWN(self, self.OnLeftDown)
292 EVT_LEFT_UP(self, self.OnLeftUp)
293 EVT_MOTION(self, self.OnMotion)
294 EVT_LEAVE_WINDOW(self, self.OnLeaveWindow)
295 wx.EVT_SIZE(self, self.OnSize)
296 wx.EVT_IDLE(self, self.OnIdle)
297
298 def __del__(self):
299 wxWindow.__del__(self)
300 Publisher.__del__(self)
301
302 def OnPaint(self, event):
303 dc = wxPaintDC(self)
304 if self.map is not None and self.map.HasLayers():
305 # We have a non-empty map. Redraw it in idle time
306 self.redraw_on_idle = 1
307 # update the region that has to be redrawn
308 self.update_region.UnionRegion(self.GetUpdateRegion())
309 else:
310 # If we've got no map or if the map is empty, simply clear
311 # the screen.
312
313 # XXX it's probably possible to get rid of this. The
314 # background color of the window is already white and the
315 # only thing we may have to do is to call self.Refresh()
316 # with a true argument in the right places.
317 dc.BeginDrawing()
318 dc.Clear()
319 dc.EndDrawing()
320
321 # clear the region
322 self.update_region = wx.wxRegion()
323
324 def do_redraw(self):
325 # This should only be called if we have a non-empty map.
326
327 # get the update region and reset it. We're not actually using
328 # it anymore, though.
329 update_box = self.update_region.GetBox()
330 self.update_region = wx.wxRegion()
331
332 # Get the window size.
333 width, height = self.GetSizeTuple()
334
335 # If self.bitmap's still there, reuse it. Otherwise redraw it
336 if self.bitmap is not None:
337 bitmap = self.bitmap
338 else:
339 bitmap = wx.wxEmptyBitmap(width, height)
340 dc = wx.wxMemoryDC()
341 dc.SelectObject(bitmap)
342 dc.BeginDrawing()
343
344 # clear the background
345 dc.SetBrush(wx.wxWHITE_BRUSH)
346 dc.SetPen(wx.wxTRANSPARENT_PEN)
347 dc.DrawRectangle(0, 0, width, height)
348
349 if 1: #self.interactor.selected_map is self.map:
350 selected_layer = self.interactor.selected_layer
351 selected_shape = self.interactor.selected_shape
352 else:
353 selected_layer = None
354 selected_shape = None
355
356 # draw the map into the bitmap
357 renderer = ScreenRenderer(dc, self.scale, self.offset)
358
359 # Pass the entire bitmap as update_region to the renderer.
360 # We're redrawing the whole bitmap, after all.
361 renderer.RenderMap(self.map, (0, 0, width, height),
362 selected_layer, selected_shape)
363
364 dc.EndDrawing()
365 dc.SelectObject(wx.wxNullBitmap)
366 self.bitmap = bitmap
367
368 # blit the bitmap to the screen
369 dc = wx.wxMemoryDC()
370 dc.SelectObject(bitmap)
371 clientdc = wxClientDC(self)
372 clientdc.BeginDrawing()
373 clientdc.Blit(0, 0, width, height, dc, 0, 0)
374 clientdc.EndDrawing()
375
376 def Print(self):
377 printer = wx.wxPrinter()
378 printout = MapPrintout(self.map)
379 printer.Print(self, printout, wx.true)
380 printout.Destroy()
381
382 def SetMap(self, map):
383 redraw_channels = (LAYERS_CHANGED, LAYER_LEGEND_CHANGED,
384 LAYER_VISIBILITY_CHANGED)
385 if self.map is not None:
386 for channel in redraw_channels:
387 self.map.Unsubscribe(channel, self.full_redraw)
388 self.map.Unsubscribe(MAP_PROJECTION_CHANGED,
389 self.projection_changed)
390 self.map = map
391 if self.map is not None:
392 for channel in redraw_channels:
393 self.map.Subscribe(channel, self.full_redraw)
394 self.map.Subscribe(MAP_PROJECTION_CHANGED, self.projection_changed)
395 self.FitMapToWindow()
396 # force a redraw. If map is not empty, it's already been called
397 # by FitMapToWindow but if map is empty it hasn't been called
398 # yet so we have to explicitly call it.
399 self.full_redraw()
400
401 def Map(self):
402 return self.map
403
404 def redraw(self, *args):
405 self.Refresh(0)
406
407 def full_redraw(self, *args):
408 self.bitmap = None
409 self.redraw()
410
411 def projection_changed(self, *args):
412 self.FitMapToWindow()
413 self.full_redraw()
414
415 def set_view_transform(self, scale, offset):
416 self.scale = scale
417 self.offset = offset
418 self.full_redraw()
419
420 def proj_to_win(self, x, y):
421 """\
422 Return the point in window coords given by projected coordinates x y
423 """
424 offx, offy = self.offset
425 return (self.scale * x + offx, -self.scale * y + offy)
426
427 def win_to_proj(self, x, y):
428 """\
429 Return the point in projected coordinates given by window coords x y
430 """
431 offx, offy = self.offset
432 return ((x - offx) / self.scale, (offy - y) / self.scale)
433
434 def FitRectToWindow(self, rect):
435 width, height = self.GetSizeTuple()
436 llx, lly, urx, ury = rect
437 if llx == urx or lly == ury:
438 # zero with or zero height. Do Nothing
439 return
440 scalex = width / (urx - llx)
441 scaley = height / (ury - lly)
442 scale = min(scalex, scaley)
443 offx = 0.5 * (width - (urx + llx) * scale)
444 offy = 0.5 * (height + (ury + lly) * scale)
445 self.set_view_transform(scale, (offx, offy))
446
447 def FitMapToWindow(self):
448 """\
449 Set the scale and offset so that the map is centered in the
450 window
451 """
452 bbox = self.map.ProjectedBoundingBox()
453 if bbox is not None:
454 self.FitRectToWindow(bbox)
455
456 def ZoomFactor(self, factor, center = None):
457 """Multiply the zoom by factor and center on center.
458
459 The optional parameter center is a point in window coordinates
460 that should be centered. If it is omitted, it defaults to the
461 center of the window
462 """
463 width, height = self.GetSizeTuple()
464 scale = self.scale * factor
465 offx, offy = self.offset
466 if center is not None:
467 cx, cy = center
468 else:
469 cx = width / 2
470 cy = height / 2
471 offset = (factor * (offx - cx) + width / 2,
472 factor * (offy - cy) + height / 2)
473 self.set_view_transform(scale, offset)
474
475 def ZoomOutToRect(self, rect):
476 # rect is given in window coordinates
477
478 # determine the bbox of the displayed region in projected
479 # coordinates
480 width, height = self.GetSizeTuple()
481 llx, lly = self.win_to_proj(0, height - 1)
482 urx, ury = self.win_to_proj(width - 1, 0)
483
484 sx, sy, ex, ey = rect
485 scalex = (ex - sx) / (urx - llx)
486 scaley = (ey - sy) / (ury - lly)
487 scale = min(scalex, scaley)
488
489 offx = 0.5 * ((ex + sx) - (urx + llx) * scale)
490 offy = 0.5 * ((ey + sy) + (ury + lly) * scale)
491 self.set_view_transform(scale, (offx, offy))
492
493 def Translate(self, dx, dy):
494 offx, offy = self.offset
495 self.set_view_transform(self.scale, (offx + dx, offy + dy))
496
497 def ZoomInTool(self):
498 self.tool = ZoomInTool(self)
499
500 def ZoomOutTool(self):
501 self.tool = ZoomOutTool(self)
502
503 def PanTool(self):
504 self.tool = PanTool(self)
505
506 def IdentifyTool(self):
507 self.tool = IdentifyTool(self)
508
509 def LabelTool(self):
510 self.tool = LabelTool(self)
511
512 def CurrentTool(self):
513 return self.tool and self.tool.Name() or None
514
515 def CurrentPosition(self):
516 """Return current position of the mouse in projected coordinates.
517
518 The result is a 2-tuple of floats with the coordinates. If the
519 mouse is not in the window, the result is None.
520 """
521 if self.current_position is not None:
522 x, y = self.current_position
523 return self.win_to_proj(x, y)
524 else:
525 return None
526
527 def set_current_position(self, event):
528 """Set the current position from event
529
530 Should be called by all events that contain mouse positions
531 especially EVT_MOTION. The event paramete may be None to
532 indicate the the pointer left the window.
533 """
534 if event is not None:
535 self.current_position = (event.m_x, event.m_y)
536 else:
537 self.current_position = None
538 self.issue(VIEW_POSITION)
539
540 def OnLeftDown(self, event):
541 self.set_current_position(event)
542 if self.tool is not None:
543 self.drag_dc = wxClientDC(self)
544 self.drag_dc.SetLogicalFunction(wxINVERT)
545 self.drag_dc.SetBrush(wxTRANSPARENT_BRUSH)
546 self.CaptureMouse()
547 self.tool.MouseDown(event)
548 self.tool.Show(self.drag_dc)
549 self.dragging = 1
550
551 def OnLeftUp(self, event):
552 self.ReleaseMouse()
553 self.set_current_position(event)
554 if self.dragging:
555 self.tool.Hide(self.drag_dc)
556 self.tool.MouseUp(event)
557 self.drag_dc = None
558 self.dragging = 0
559
560 def OnMotion(self, event):
561 self.set_current_position(event)
562 if self.dragging:
563 self.tool.Hide(self.drag_dc)
564 self.tool.MouseMove(event)
565 self.tool.Show(self.drag_dc)
566
567 def OnLeaveWindow(self, event):
568 self.set_current_position(None)
569
570 def OnIdle(self, event):
571 if self.redraw_on_idle:
572 self.do_redraw()
573 self.redraw_on_idle = 0
574
575 def OnSize(self, event):
576 # the window's size has changed. We have to get a new bitmap. If
577 # we want to be clever we could try to get by without throwing
578 # everything away. E.g. when the window gets smaller, we could
579 # either keep the bitmap or create the new one from the old one.
580 # Even when the window becomes larger some parts of the bitmap
581 # could be reused.
582 self.full_redraw()
583
584 def shape_selected(self, layer, shape):
585 self.full_redraw()
586
587 def unprojected_rect_around_point(self, x, y):
588 """return a rect a few pixels around (x, y) in unprojected corrdinates
589
590 The return value is a tuple (minx, miny, maxx, maxy) suitable a
591 parameter to a layer's ShapesInRegion method.
592 """
593 map_proj = self.map.projection
594 if map_proj is not None:
595 inverse = map_proj.Inverse
596 else:
597 inverse = None
598
599 xs = []
600 ys = []
601 for dx, dy in ((-1, -1), (1, -1), (1, 1), (-1, 1)):
602 px, py = self.win_to_proj(x + dx, y + dy)
603 if inverse:
604 px, py = inverse(px, py)
605 xs.append(px)
606 ys.append(py)
607 return (min(xs), min(ys), max(xs), max(ys))
608
609 def find_shape_at(self, px, py, select_labels = 0, selected_layer = 1):
610 """Determine the shape at point px, py in window coords
611
612 Return the shape and the corresponding layer as a tuple (layer,
613 shape).
614
615 If the optional parameter select_labels is true (default false)
616 search through the labels. If a label is found return it's index
617 as the shape and None as the layer.
618
619 If the optional parameter selected_layer is true (default), only
620 search in the currently selected layer.
621 """
622 map_proj = self.map.projection
623 if map_proj is not None:
624 forward = map_proj.Forward
625 else:
626 forward = None
627
628 scale = self.scale
629 offx, offy = self.offset
630
631 box = self.unprojected_rect_around_point(px, py)
632
633 if select_labels:
634 labels = self.map.LabelLayer().Labels()
635
636 if labels:
637 dc = wxClientDC(self)
638 font = wxFont(10, wx.wxSWISS, wx.wxNORMAL, wx.wxNORMAL)
639 dc.SetFont(font)
640 for i in range(len(labels) - 1, -1, -1):
641 label = labels[i]
642 x = label.x
643 y = label.y
644 text = label.text
645 if forward:
646 x, y = forward(x, y)
647 x = x * scale + offx
648 y = -y * scale + offy
649 width, height = dc.GetTextExtent(text)
650 if label.halign == ALIGN_LEFT:
651 # nothing to be done
652 pass
653 elif label.halign == ALIGN_RIGHT:
654 x = x - width
655 elif label.halign == ALIGN_CENTER:
656 x = x - width/2
657 if label.valign == ALIGN_TOP:
658 # nothing to be done
659 pass
660 elif label.valign == ALIGN_BOTTOM:
661 y = y - height
662 elif label.valign == ALIGN_CENTER:
663 y = y - height/2
664 if x <= px < x + width and y <= py <= y + height:
665 return None, i
666
667 if selected_layer:
668 layer = self.interactor.SelectedLayer()
669 if layer is not None:
670 layers = [layer]
671 else:
672 # no layer selected. Use an empty list to effectively
673 # ignore all layers.
674 layers = []
675 else:
676 layers = self.map.Layers()
677
678 for layer_index in range(len(layers) - 1, -1, -1):
679 layer = layers[layer_index]
680
681 # search only in visible layers
682 if not layer.Visible():
683 continue
684
685 filled = layer.fill is not None
686 stroked = layer.stroke is not None
687
688 layer_proj = layer.projection
689 if layer_proj is not None:
690 inverse = layer_proj.Inverse
691 else:
692 inverse = None
693
694 shapetype = layer.ShapeType()
695
696 select_shape = -1
697
698 shape_ids = layer.ShapesInRegion(box)
699 shape_ids.reverse()
700
701 if shapetype == SHAPETYPE_POLYGON:
702 for i in shape_ids:
703 result = point_in_polygon_shape(layer.shapefile.cobject(),
704 i,
705 filled, stroked,
706 map_proj, layer_proj,
707 scale, -scale, offx, offy,
708 px, py)
709 if result:
710 select_shape = i
711 break
712 elif shapetype == SHAPETYPE_ARC:
713 for i in shape_ids:
714 result = point_in_polygon_shape(layer.shapefile.cobject(),
715 i, 0, 1,
716 map_proj, layer_proj,
717 scale, -scale, offx, offy,
718 px, py)
719 if result < 0:
720 select_shape = i
721 break
722 elif shapetype == SHAPETYPE_POINT:
723 for i in shape_ids:
724 shape = layer.Shape(i)
725 x, y = shape.Points()[0]
726 if inverse:
727 x, y = inverse(x, y)
728 if forward:
729 x, y = forward(x, y)
730 x = x * scale + offx
731 y = -y * scale + offy
732 if hypot(px - x, py - y) < 5:
733 select_shape = i
734 break
735
736 if select_shape >= 0:
737 return layer, select_shape
738 return None, None
739
740 def SelectShapeAt(self, x, y):
741 layer, shape = self.find_shape_at(x, y, selected_layer = 0)
742 # If layer is None, then shape will also be None. We don't want
743 # to deselect the currently selected layer, so we simply select
744 # the already selected layer again.
745 if layer is None:
746 layer = self.interactor.SelectedLayer()
747 self.interactor.SelectLayerAndShape(layer, shape)
748
749 def LabelShapeAt(self, x, y):
750 ox = x; oy = y
751 label_layer = self.map.LabelLayer()
752 layer, shape_index = self.find_shape_at(x, y, select_labels = 1)
753 if layer is None and shape_index is not None:
754 # a label was selected
755 label_layer.RemoveLabel(shape_index)
756 elif layer is not None:
757 text = labeldialog.run_label_dialog(self, layer.table, shape_index)
758 if text:
759 proj = self.map.projection
760 if proj is not None:
761 map_proj = proj
762 else:
763 map_proj = None
764 proj = layer.projection
765 if proj is not None:
766 layer_proj = proj
767 else:
768 layer_proj = None
769
770 shapetype = layer.ShapeType()
771 if shapetype == SHAPETYPE_POLYGON:
772 x, y = shape_centroid(layer.shapefile.cobject(),
773 shape_index,
774 map_proj, layer_proj, 1, 1, 0, 0)
775 if map_proj is not None:
776 x, y = map_proj.Inverse(x, y)
777 else:
778 shape = layer.Shape(shape_index)
779 if shapetype == SHAPETYPE_POINT:
780 x, y = shape.Points()[0]
781 else:
782 # assume SHAPETYPE_ARC
783 points = shape.Points()
784 x, y = points[len(points) / 2]
785 if layer_proj is not None:
786 x, y = layer_proj.Inverse(x, y)
787 if shapetype == SHAPETYPE_POINT:
788 halign = ALIGN_LEFT
789 valign = ALIGN_CENTER
790 elif shapetype == SHAPETYPE_POLYGON:
791 halign = ALIGN_CENTER
792 valign = ALIGN_CENTER
793 elif shapetype == SHAPETYPE_ARC:
794 halign = ALIGN_LEFT
795 valign = ALIGN_CENTER
796 label_layer.AddLabel(x, y, text,
797 halign = halign, valign = valign)

Properties

Name Value
svn:eol-style native
svn:keywords Author Date Id Revision

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26