1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
|
"""
@package vdigit.wxdisplay
@brief wxGUI vector digitizer (display driver)
Code based on wxVdigit C++ component from GRASS 6.4.0
(gui/wxpython/vdigit). Converted to Python in 2010/12-2011/01.
List of classes:
- wxdisplay::DisplayDriver
(C) 2007-2016 by the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
@author Martin Landa <landa.martin gmail.com>
"""
import locale
import os
import sys
import wx
from core.debug import Debug
from core.settings import UserSettings
from core.gcmd import DecodeString
from gui_core.wrap import Rect
try:
from grass.lib.gis import *
from grass.lib.vector import *
from grass.lib.vedit import *
except (ImportError, OSError, TypeError) as e:
print("wxdigit.py: {}".format(e), file=sys.stderr)
log = None
progress = None
last_error = ""
def print_error(msg, type):
"""Redirect stderr"""
global log
if log:
msg = DecodeString(msg.data)
log.write(msg + os.linesep)
else:
print(msg)
global last_error
last_error += " " + msg
return 0
def print_progress(value):
"""Redirect progress info"""
global progress
if progress:
progress.SetValue(value)
else:
pass # discard progress info
return 0
def GetLastError():
global last_error
ret = last_error
if ret[-1] != ".":
ret += "."
last_error = "" # reset
return ret
try:
errtype = CFUNCTYPE(UNCHECKED(c_int), String, c_int)
errfunc = errtype(print_error)
pertype = CFUNCTYPE(UNCHECKED(c_int), c_int)
perfunc = pertype(print_progress)
except NameError:
pass
class DisplayDriver:
def __init__(self, device, deviceTmp, mapObj, window, glog, gprogress):
"""Display driver used by vector digitizer
:param device: wx.PseudoDC device where to draw vector objects
:param deviceTmp: wx.PseudoDC device where to draw temporary vector objects
:param mapOng: Map Object (render.Map)
:param windiow: parent window for dialogs
:param glog: logging device (None to discard messages)
:param gprogress: progress bar device (None to discard message)
"""
global errfunc, perfunc, log, progress
log = glog
progress = gprogress
G_gisinit("wxvdigit")
if sys.platform != "win32":
locale.setlocale(locale.LC_NUMERIC, "C")
G_set_error_routine(errfunc)
G_set_percent_routine(perfunc)
# G_set_fatal_error(FATAL_RETURN)
self.mapInfo = None # open vector map (Map_Info structure)
self.poMapInfo = None # pointer to self.mapInfo
self.is3D = False # is open vector map 3D
self.dc = device # PseudoDC devices
self.dcTmp = deviceTmp
self.mapObj = mapObj
self.region = mapObj.GetCurrentRegion()
self.window = window
self.log = log # log device
self.firstNode = True # track PseudoDC Id of selected features
self.lastNodeId = -1
# GRASS lib
self.poPoints = Vect_new_line_struct()
self.poCats = Vect_new_cats_struct()
# selected objects
self.selected = {
"field": -1, # field number
"cats": list(), # list of cats
"ids": list(), # list of ids
"idsDupl": list(), # list of duplicated features
}
# digitizer settings
self.settings = {
"highlight": None,
"highlightDupl": {"enabled": False, "color": None},
"point": {"enabled": False, "color": None},
"line": {"enabled": False, "color": None},
"boundaryNo": {"enabled": False, "color": None},
"boundaryOne": {"enabled": False, "color": None},
"boundaryTwo": {"enabled": False, "color": None},
"centroidIn": {"enabled": False, "color": None},
"centroidOut": {"enabled": False, "color": None},
"centroidDup": {"enabled": False, "color": None},
"nodeOne": {"enabled": False, "color": None},
"nodeTwo": {"enabled": False, "color": None},
"vertex": {"enabled": False, "color": None},
"area": {"enabled": False, "color": None},
"direction": {"enabled": False, "color": None},
"lineWidth": -1, # screen units
}
# topology
self._resetTopology()
self._drawSelected = False
self._drawSegments = False
self.UpdateSettings()
def __del__(self):
"""Close currently open vector map"""
G_unset_error_routine()
G_unset_percent_routine()
if self.poMapInfo:
self.CloseMap()
Vect_destroy_line_struct(self.poPoints)
Vect_destroy_cats_struct(self.poCats)
def _resetTopology(self):
"""Reset topology dict"""
self.topology = {
"highlight": 0,
"point": 0,
"line": 0,
"boundaryNo": 0,
"boundaryOne": 0,
"boundaryTwo": 0,
"centroidIn": 0,
"centroidOut": 0,
"centroidDup": 0,
"nodeOne": 0,
"nodeTwo": 0,
"vertex": 0,
}
def _cell2Pixel(self, east, north, elev):
"""Conversion from geographic coordinates (east, north)
to screen (x, y)
.. todo::
3D stuff...
:param east: east coordinate
:param north: north coordinate
:param elev: elevation
:return: x, y screen coordinates (integer)
"""
map_res = max(self.region["ewres"], self.region["nsres"])
w = self.region["center_easting"] - (self.mapObj.width / 2) * map_res
n = self.region["center_northing"] + (self.mapObj.height / 2) * map_res
return int((east - w) / map_res), int((n - north) / map_res)
def _drawCross(self, pdc, point, size=5):
"""Draw cross symbol of given size to device content
Used for points, nodes, vertices
:param pdc: PseudoDC where to draw
:param point: coordinates of center
:param size: size of the cross symbol
:return: 0 on success
:return: -1 on failure
"""
if not pdc or not point:
return -1
pdc.DrawLine(point.x - size, point.y, point.x + size, point.y)
pdc.DrawLine(point.x, point.y - size, point.x, point.y + size)
return 0
def _drawObject(self, robj):
"""Draw given object to the device
The object is defined as robject() from vedit.h.
:param robj: object to be rendered
:return: 1 on success
:return: -1 on failure (vector feature marked as dead, etc.)
"""
if not self.dc or not self.dcTmp:
return -1
Debug.msg(
4,
"_drawObject(): line=%d type=%d npoints=%d",
robj.fid,
robj.type,
robj.npoints,
)
brush = None
if robj.type == TYPE_AREA and self._isSelected(
Vect_get_area_centroid(self.poMapInfo, robj.fid)
):
pdc = self.dcTmp
pen = wx.TRANSPARENT_PEN
brush = wx.TRANSPARENT_BRUSH
dcId = 1
self.topology["highlight"] += 1
if not self._drawSelected:
return
elif robj.type != TYPE_AREA and self._isSelected(robj.fid):
pdc = self.dcTmp
if self.settings["highlightDupl"]["enabled"] and self._isDuplicated(
robj.fid
):
pen = wx.Pen(
self.settings["highlightDupl"]["color"],
self.settings["lineWidth"],
wx.SOLID,
)
else:
pen = wx.Pen(
self.settings["highlight"], self.settings["lineWidth"], wx.SOLID
)
dcId = 1
self.topology["highlight"] += 1
if not self._drawSelected:
return
else:
pdc = self.dc
pen, brush = self._definePen(robj.type)
dcId = 0
pdc.SetPen(pen)
if brush:
pdc.SetBrush(brush)
if robj.type & (
TYPE_POINT
| TYPE_CENTROIDIN
| TYPE_CENTROIDOUT
| TYPE_CENTROIDDUP
| TYPE_NODEONE
| TYPE_NODETWO
| TYPE_VERTEX
): # -> point
if dcId > 0:
if robj.type == TYPE_VERTEX:
dcId = 3 # first vertex
elif robj.type & (TYPE_NODEONE | TYPE_NODETWO):
if self.firstNode:
dcId = 1
self.firstNode = False
else:
dcId = self.lastNodeId
for i in range(robj.npoints):
p = robj.point[i]
if dcId > 0:
pdc.SetId(dcId)
dcId += 2
self._drawCross(pdc, p)
else:
if dcId > 0 and self._drawSegments:
self.fisrtNode = True
self.lastNodeId = robj.npoints * 2 - 1
dcId = 2 # first segment
i = 0
while i < robj.npoints - 1:
point_beg = wx.Point(robj.point[i].x, robj.point[i].y)
point_end = wx.Point(robj.point[i + 1].x, robj.point[i + 1].y)
# set unique id & set bbox for each segment
pdc.SetId(dcId)
pdc.SetPen(pen)
pdc.SetIdBounds(dcId - 1, Rect(point_beg.x, point_beg.y, 0, 0))
pdc.SetIdBounds(
dcId,
Rect(
point_beg.x,
point_beg.y,
point_end.x - point_beg.x,
point_end.y - point_beg.y,
),
)
pdc.DrawLine(point_beg.x, point_beg.y, point_end.x, point_end.y)
i += 1
dcId += 2
pdc.SetIdBounds(
dcId - 1,
Rect(
robj.point[robj.npoints - 1].x,
robj.point[robj.npoints - 1].y,
0,
0,
),
)
else:
points = list()
for i in range(robj.npoints):
p = robj.point[i]
points.append(wx.Point(p.x, p.y))
if len(points) <= 1:
self.log.write(
_(
"WARNING: Zero-length line or boundary drawing skipped. "
"Use v.clean to remove it."
)
)
return
if robj.type == TYPE_AREA:
pdc.DrawPolygon(points)
else:
pdc.DrawLines(points)
def _definePen(self, rtype):
"""Define pen/brush based on rendered object)
Updates also self.topology dict
:return: pen, brush
"""
if rtype == TYPE_POINT:
key = "point"
elif rtype == TYPE_LINE:
key = "line"
elif rtype == TYPE_BOUNDARYNO:
key = "boundaryNo"
elif rtype == TYPE_BOUNDARYTWO:
key = "boundaryTwo"
elif rtype == TYPE_BOUNDARYONE:
key = "boundaryOne"
elif rtype == TYPE_CENTROIDIN:
key = "centroidIn"
elif rtype == TYPE_CENTROIDOUT:
key = "centroidOut"
elif rtype == TYPE_CENTROIDDUP:
key = "centroidDup"
elif rtype == TYPE_NODEONE:
key = "nodeOne"
elif rtype == TYPE_NODETWO:
key = "nodeTwo"
elif rtype == TYPE_VERTEX:
key = "vertex"
elif rtype == TYPE_AREA:
key = "area"
elif rtype == TYPE_ISLE:
key = "isle"
elif rtype == TYPE_DIRECTION:
key = "direction"
if key not in ("direction", "area", "isle"):
self.topology[key] += 1
if key in ("area", "isle"):
pen = wx.TRANSPARENT_PEN
if key == "area":
brush = wx.Brush(self.settings[key]["color"], wx.SOLID)
else:
brush = wx.TRANSPARENT_BRUSH
else:
pen = wx.Pen(
self.settings[key]["color"], self.settings["lineWidth"], wx.SOLID
)
brush = None
return pen, brush
def _getDrawFlag(self):
"""Get draw flag from the settings
See vedit.h for list of draw flags.
:return: draw flag (int)
"""
ret = 0
if self.settings["point"]["enabled"]:
ret |= DRAW_POINT
if self.settings["line"]["enabled"]:
ret |= DRAW_LINE
if self.settings["boundaryNo"]["enabled"]:
ret |= DRAW_BOUNDARYNO
if self.settings["boundaryTwo"]["enabled"]:
ret |= DRAW_BOUNDARYTWO
if self.settings["boundaryOne"]["enabled"]:
ret |= DRAW_BOUNDARYONE
if self.settings["centroidIn"]["enabled"]:
ret |= DRAW_CENTROIDIN
if self.settings["centroidOut"]["enabled"]:
ret |= DRAW_CENTROIDOUT
if self.settings["centroidDup"]["enabled"]:
ret |= DRAW_CENTROIDDUP
if self.settings["nodeOne"]["enabled"]:
ret |= DRAW_NODEONE
if self.settings["nodeTwo"]["enabled"]:
ret |= DRAW_NODETWO
if self.settings["vertex"]["enabled"]:
ret |= DRAW_VERTEX
if self.settings["area"]["enabled"]:
ret |= DRAW_AREA
if self.settings["direction"]["enabled"]:
ret |= DRAW_DIRECTION
return ret
def _isSelected(self, line, force=False):
"""Check if vector object selected?
:param line: feature id
:return: True if vector object is selected
:return: False if vector object is not selected
"""
if line in self.selected["ids"]:
return True
return False
def _isDuplicated(self, line):
"""Check for already marked duplicates
:param line: feature id
:return: True line already marked as duplicated
:return: False not duplicated
"""
return line in self.selected["idsDupl"]
def _getRegionBox(self):
"""Get bound_box() from current region
:return: bound_box
"""
box = bound_box()
box.N = self.region["n"]
box.S = self.region["s"]
box.E = self.region["e"]
box.W = self.region["w"]
box.T = PORT_DOUBLE_MAX
box.B = -PORT_DOUBLE_MAX
return box
def DrawMap(self, force=False):
"""Draw content of the vector map to the device
:param force: force drawing
:type force: bool
:return: number of drawn features
:return: -1 on error
"""
Debug.msg(1, "DisplayDriver.DrawMap(): force=%d", force)
if not self.poMapInfo or not self.dc or not self.dcTmp:
return -1
rlist = Vedit_render_map(
self.poMapInfo,
byref(self._getRegionBox()),
self._getDrawFlag(),
self.region["center_easting"],
self.region["center_northing"],
self.mapObj.width,
self.mapObj.height,
max(self.region["nsres"], self.region["ewres"]),
).contents
self._resetTopology()
self.dc.BeginDrawing()
self.dcTmp.BeginDrawing()
# draw objects
for i in range(rlist.nitems):
robj = rlist.item[i].contents
self._drawObject(robj)
self.dc.EndDrawing()
self.dcTmp.EndDrawing()
# reset list of selected features by cat
# list of ids - see IsSelected()
self.selected["field"] = -1
self.selected["cats"] = list()
def _getSelectType(self):
"""Get type(s) to be selected
Used by SelectLinesByBox() and SelectLineByPoint()
"""
ftype = 0
for feature in (
("point", GV_POINT),
("line", GV_LINE),
("centroid", GV_CENTROID),
("boundary", GV_BOUNDARY),
):
if UserSettings.Get(
group="vdigit", key="selectType", subkey=[feature[0], "enabled"]
):
ftype |= feature[1]
return ftype
def _validLine(self, line):
"""Check if feature id is valid
:param line: feature id
:return: True valid feature id
:return: False invalid
"""
if line > 0 and line <= Vect_get_num_lines(self.poMapInfo):
return True
return False
def SelectLinesByBox(self, bbox, ltype=None, drawSeg=False, poMapInfo=None):
"""Select vector objects by given bounding box
If line id is already in the list of selected lines, then it will
be excluded from this list.
:param bbox: bounding box definition
:param ltype: feature type or None for default
:param drawSeg: True to draw segments of line
:param poMapInfo: use external Map_info, None for self.poMapInfo
:return: number of selected features
:return: None on error
"""
thisMapInfo = poMapInfo is None
if not poMapInfo:
poMapInfo = self.poMapInfo
if not poMapInfo:
return None
if thisMapInfo:
self._drawSegments = drawSeg
self._drawSelected = True
# select by ids
self.selected["cats"] = list()
poList = Vect_new_list()
x1, y1 = bbox[0]
x2, y2 = bbox[1]
poBbox = Vect_new_line_struct()
Vect_append_point(poBbox, x1, y1, 0.0)
Vect_append_point(poBbox, x2, y1, 0.0)
Vect_append_point(poBbox, x2, y2, 0.0)
Vect_append_point(poBbox, x1, y2, 0.0)
Vect_append_point(poBbox, x1, y1, 0.0)
if not ltype:
ltype = self._getSelectType()
Vect_select_lines_by_polygon(poMapInfo, poBbox, 0, None, ltype, poList) # isles
flist = poList.contents
nlines = flist.n_values
Debug.msg(1, "DisplayDriver.SelectLinesByBox() num = %d", nlines)
for i in range(nlines):
line = flist.value[i]
if UserSettings.Get(group="vdigit", key="selectInside", subkey="enabled"):
inside = True
if not self._validLine(line):
return None
Vect_read_line(poMapInfo, self.poPoints, None, line)
points = self.poPoints.contents
for p in range(points.n_points):
if not Vect_point_in_poly(points.x[p], points.y[p], poBbox):
inside = False
break
if not inside:
continue # skip lines just overlapping bbox
if not self._isSelected(line):
self.selected["ids"].append(line)
else:
self.selected["ids"].remove(line)
Vect_destroy_line_struct(poBbox)
Vect_destroy_list(poList)
return nlines
def SelectAreaByPoint(self, point, poMapInfo=None):
thisMapInfo = poMapInfo is None
if not poMapInfo:
poMapInfo = self.poMapInfo
if not poMapInfo:
return {"area": -1, "centroid": -1}
if thisMapInfo:
self._drawSelected = True
box = bound_box()
for area in range(1, Vect_get_num_areas(poMapInfo) + 1):
Vect_get_area_box(poMapInfo, area, byref(box))
if Vect_point_in_area(point[0], point[1], poMapInfo, area, byref(box)) == 1:
centroid = Vect_get_area_centroid(poMapInfo, area)
if not self._isSelected(centroid):
self.selected["ids"].append(centroid)
else:
self.selected["ids"].remove(centroid)
return {"area": area, "centroid": centroid}
return {"area": -1, "centroid": -1}
def SelectLineByPoint(self, point, ltype=None, poMapInfo=None):
"""Select vector feature by given point in given
threshold
Only one vector object can be selected. Bounding boxes of
all segments are stores.
:param point: points coordinates (x, y)
:param ltype: feature type or None for default
:param poMapInfo: use external Map_info, None for self.poMapInfo
:return: dict {'line' : feature id, 'point' : point on line}
"""
thisMapInfo = poMapInfo is None
if not poMapInfo:
poMapInfo = self.poMapInfo
if not poMapInfo:
return {"line": -1, "point": None}
if thisMapInfo:
self._drawSelected = True
# select by ids
self.selected["cats"] = list()
poFound = Vect_new_list()
if ltype is None:
ltype = self._getSelectType()
lineNearest = Vect_find_line_list(
poMapInfo,
point[0],
point[1],
0,
ltype,
self.GetThreshold(),
self.is3D,
None,
poFound,
)
Debug.msg(1, "DisplayDriver.SelectLineByPoint() found = %d", lineNearest)
if lineNearest > 0:
if not self._isSelected(lineNearest):
self.selected["ids"].append(lineNearest)
else:
self.selected["ids"].remove(lineNearest)
px = c_double()
py = c_double()
pz = c_double()
if not self._validLine(lineNearest):
return {"line": -1, "point": None}
ftype = Vect_read_line(poMapInfo, self.poPoints, self.poCats, lineNearest)
Vect_line_distance(
self.poPoints,
point[0],
point[1],
0.0,
self.is3D,
byref(px),
byref(py),
byref(pz),
None,
None,
None,
)
# check for duplicates
if self.settings["highlightDupl"]["enabled"]:
found = poFound.contents
for i in range(found.n_values):
line = found.value[i]
if line != lineNearest:
self.selected["ids"].append(line)
self.GetDuplicates()
for i in range(found.n_values):
line = found.value[i]
if line != lineNearest and not self._isDuplicated(line):
self.selected["ids"].remove(line)
Vect_destroy_list(poFound)
if thisMapInfo:
# drawing segments can be very expensive
# only one features selected
self._drawSegments = True
return {"line": lineNearest, "point": (px.value, py.value, pz.value)}
def _listToIList(self, plist):
"""Generate from list struct_ilist"""
ilist = Vect_new_list()
for val in plist:
Vect_list_append(ilist, val)
return ilist
def GetSelectedIList(self, ilist=None):
"""Get list of selected objects as struct_ilist
Returned IList must be freed by Vect_destroy_list().
:return: struct_ilist
"""
if ilist:
return self._listToIList(ilist)
return self._listToIList(self.selected["ids"])
def GetSelected(self, grassId=True):
"""Get ids of selected objects
:param grassId: True for feature id, False for PseudoDC id
:return: list of ids of selected vector objects
"""
if grassId:
return self.selected["ids"]
dc_ids = list()
if not self._drawSegments:
dc_ids.append(1)
elif len(self.selected["ids"]) > 0:
# only first selected feature
Vect_read_line(self.poMapInfo, self.poPoints, None, self.selected["ids"][0])
points = self.poPoints.contents
# node - segment - vertex - segment - node
for i in range(1, 2 * points.n_points):
dc_ids.append(i)
return dc_ids
def SetSelected(self, ids, layer=-1):
"""Set selected vector objects
:param list: of ids (None to unselect features)
:param layer: layer number for features selected based on category number
"""
if ids:
self._drawSelected = True
else:
self._drawSelected = False
self.selected["field"] = layer
if layer > 0:
self.selected["cats"] = ids
self.selected["ids"] = list()
# cidx is not up-to-date
# Vect_cidx_find_all(self.poMapInfo,
# layer, GV_POINTS | GV_LINES, lid, ilist)
nlines = Vect_get_num_lines(self.poMapInfo)
for line in range(1, nlines + 1):
if not Vect_line_alive(self.poMapInfo, line):
continue
ltype = Vect_read_line(self.poMapInfo, None, self.poCats, line)
if not (ltype & (GV_POINTS | GV_LINES)):
continue
found = False
cats = self.poCats.contents
for i in range(0, cats.n_cats):
for cat in self.selected["cats"]:
if cats.cat[i] == cat:
found = True
break
if found:
self.selected["ids"].append(line)
else:
self.selected["ids"] = ids
self.selected["cats"] = []
def GetSelectedVertex(self, pos):
"""Get PseudoDC vertex id of selected line
Set bounding box for vertices of line.
:param pos: position
:return: id of center, left and right vertex
:return: 0 no line found
:return: -1 on error
"""
returnId = list()
# only one object can be selected
if len(self.selected["ids"]) != 1 or not self._drawSegments:
return returnId
startId = 1
line = self.selected["ids"][0]
if not self._validLine(line):
return -1
ftype = Vect_read_line(self.poMapInfo, self.poPoints, self.poCats, line)
minDist = 0.0
Gid = -1
# find the closest vertex (x, y)
DCid = 1
points = self.poPoints.contents
for idx in range(points.n_points):
dist = Vect_points_distance(
pos[0], pos[1], 0.0, points.x[idx], points.y[idx], points.z[idx], 0
)
if idx == 0:
minDist = dist
Gid = idx
else:
if minDist > dist:
minDist = dist
Gid = idx
vx, vy = self._cell2Pixel(points.x[idx], points.y[idx], points.z[idx])
rect = Rect(vx, vy, 0, 0)
self.dc.SetIdBounds(DCid, rect)
DCid += 2
if minDist > self.GetThreshold():
return returnId
# translate id
DCid = Gid * 2 + 1
# add selected vertex
returnId.append(DCid)
# left vertex
if DCid == startId:
returnId.append(-1)
else:
returnId.append(DCid - 2)
# right vertex
if DCid == (points.n_points - 1) * 2 + startId:
returnId.append(-1)
else:
returnId.append(DCid + 2)
return returnId
def GetRegionSelected(self):
"""Get minimal region extent of selected features
:return: n,s,w,e
"""
regionBox = bound_box()
lineBox = bound_box()
setRegion = True
nareas = Vect_get_num_areas(self.poMapInfo)
for line in self.selected["ids"]:
area = Vect_get_centroid_area(self.poMapInfo, line)
if area > 0 and area <= nareas:
if not Vect_get_area_box(self.poMapInfo, area, byref(lineBox)):
continue
else:
if not Vect_get_line_box(self.poMapInfo, line, byref(lineBox)):
continue
if setRegion:
Vect_box_copy(byref(regionBox), byref(lineBox))
setRegion = False
else:
Vect_box_extend(byref(regionBox), byref(lineBox))
return regionBox.N, regionBox.S, regionBox.W, regionBox.E
def DrawSelected(self, flag):
"""Draw selected features
:param flag: True to draw selected features
:type flag: bool
"""
self._drawSelected = bool(flag)
def CloseMap(self):
"""Close vector map
:return: 0 on success
:return: non-zero on error
"""
if not self.poMapInfo:
return 0
if self.poMapInfo.contents.mode == GV_MODE_RW:
# rebuild topology
Vect_build_partial(self.poMapInfo, GV_BUILD_NONE)
Vect_build(self.poMapInfo)
# close map and store topo/cidx
ret = Vect_close(self.poMapInfo)
del self.mapInfo
self.poMapInfo = self.mapInfo = None
return ret
def OpenMap(self, name, mapset, update=True, tmp=False):
"""Open vector map by the driver
:param name: name of vector map to be open
:type name: str
:param mapset: name of mapset where the vector map lives
:tryp mapset: str
:param update: True to open vector map in update mode
:type update: bool
:param tmp: True to open temporary vector map
:type tp: bool
:return: map_info
:return: None on error
"""
Debug.msg(
1,
"DisplayDriver.OpenMap(): name=%s mapset=%s updated=%d",
name,
mapset,
update,
)
if not self.mapInfo:
self.mapInfo = Map_info()
self.poMapInfo = pointer(self.mapInfo)
# open existing map
if update:
if tmp:
open_fn = Vect_open_tmp_update
else:
open_fn = Vect_open_update
else:
if tmp:
open_fn = Vect_open_tmp_old
else:
open_fn = Vect_open_old
ret = open_fn(self.poMapInfo, name, mapset)
if ret == -1:
# fatal error detected
del self.mapInfo
self.poMapInfo = self.mapInfo = None
elif ret < 2:
# map open at level 1, try to build topology
dlg = wx.MessageDialog(
parent=self.window,
message=_(
"Topology for vector map <%s> is not available. "
"Topology is required by digitizer. Do you want to "
"rebuild topology (takes some time) and open the vector map "
"for editing?"
)
% name,
caption=_("Topology missing"),
style=wx.YES_NO | wx.YES_DEFAULT | wx.ICON_QUESTION | wx.CENTRE,
)
ret = dlg.ShowModal()
if ret != wx.ID_YES:
del self.mapInfo
self.poMapInfo = self.mapInfo = None
else:
Vect_build(self.poMapInfo)
if update:
# track updated lines at update mode
Vect_set_updated(self.poMapInfo, True)
self.is3D = Vect_is_3d(self.poMapInfo)
return self.poMapInfo
def GetMapBoundingBox(self):
"""Get bounding box of (opened) vector map layer
:return: (w,s,b,e,n,t)
"""
if not self.poMapInfo:
return None
bbox = bound_box()
Vect_get_map_box(self.poMapInfo, byref(bbox))
return bbox.W, bbox.S, bbox.B, bbox.E, bbox.N, bbox.T
def UpdateSettings(self, alpha=255):
"""Update display driver settings
.. todo::
map units
:param alpha: color value for alpha channel
"""
color = dict()
for key in self.settings.keys():
if key == "lineWidth":
self.settings[key] = int(
UserSettings.Get(group="vdigit", key="lineWidth", subkey="value")
)
continue
color = wx.Colour(
UserSettings.Get(group="vdigit", key="symbol", subkey=[key, "color"])[
0
],
UserSettings.Get(group="vdigit", key="symbol", subkey=[key, "color"])[
1
],
UserSettings.Get(group="vdigit", key="symbol", subkey=[key, "color"])[
2
],
alpha,
)
if key == "highlight":
self.settings[key] = color
continue
if key == "highlightDupl":
self.settings[key]["enabled"] = bool(
UserSettings.Get(
group="vdigit", key="checkForDupl", subkey="enabled"
)
)
else:
self.settings[key]["enabled"] = bool(
UserSettings.Get(
group="vdigit", key="symbol", subkey=[key, "enabled"]
)
)
self.settings[key]["color"] = color
def UpdateRegion(self):
"""Update geographical region used by display driver"""
self.region = self.mapObj.GetCurrentRegion()
def GetThreshold(self, type="snapping", value=None, units=None):
"""Return threshold value in map units
:param type: snapping mode (node, vertex)
:param value: threshold to be set up
:param units: units (0 for screen pixels, 1 for map units)
:return: threshold value
"""
if value is None:
value = UserSettings.Get(group="vdigit", key=type, subkey="value")
if units is None:
units = UserSettings.Get(group="vdigit", key=type, subkey="unit")
if units is None:
# old for backwards comp.
units = UserSettings.Get(group="vdigit", key=type, subkey="units")
units = 0 if units == "screen pixels" else 1
if value < 0:
value = (self.region["nsres"] + self.region["ewres"]) / 2.0
if units == 0:
# pixel -> cell
res = max(self.region["nsres"], self.region["ewres"])
return value * res
return value
def GetDuplicates(self):
"""Return ids of (selected) duplicated vector features"""
if not self.poMapInfo:
return
ids = dict()
APoints = Vect_new_line_struct()
BPoints = Vect_new_line_struct()
self.selected["idsDupl"] = list()
for i in range(len(self.selected["ids"])):
line1 = self.selected["ids"][i]
if self._isDuplicated(line1):
continue
Vect_read_line(self.poMapInfo, APoints, None, line1)
for line2 in self.selected["ids"]:
if line1 == line2 or self._isDuplicated(line2):
continue
Vect_read_line(self.poMapInfo, BPoints, None, line2)
if Vect_line_check_duplicate(APoints, BPoints, WITHOUT_Z):
if i not in ids:
ids[i] = list()
ids[i].append((line1, self._getCatString(line1)))
self.selected["idsDupl"].append(line1)
ids[i].append((line2, self._getCatString(line2)))
self.selected["idsDupl"].append(line2)
Vect_destroy_line_struct(APoints)
Vect_destroy_line_struct(BPoints)
return ids
def _getCatString(self, line):
Vect_read_line(self.poMapInfo, None, self.poCats, line)
cats = self.poCats.contents
catsDict = dict()
for i in range(cats.n_cats):
layer = cats.field[i]
if layer not in catsDict:
catsDict[layer] = list()
catsDict[layer].append(cats.cat[i])
catsStr = ""
for l, c in catsDict.items():
catsStr = "%d: (%s)" % (l, ",".join(map(str, c)))
return catsStr
def UnSelect(self, lines):
"""Unselect vector features
:param lines: list of feature id(s)
"""
checkForDupl = False
for line in lines:
if self._isSelected(line):
self.selected["ids"].remove(line)
if self.settings["highlightDupl"]["enabled"] and self._isDuplicated(line):
checkForDupl = True
if checkForDupl:
self.GetDuplicates()
return len(self.selected["ids"])
|