forked from domlysz/BlenderGIS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
geoscene.py
executable file
·835 lines (692 loc) · 23.9 KB
/
geoscene.py
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
# -*- coding:utf-8 -*-
# ***** GPL LICENSE BLOCK *****
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# All rights reserved.
# ***** GPL LICENSE BLOCK *****
import logging
log = logging.getLogger(__name__)
import bpy
from bpy.props import (StringProperty, IntProperty, FloatProperty, BoolProperty,
EnumProperty, FloatVectorProperty, PointerProperty)
from bpy.types import Operator, Panel, PropertyGroup
from .prefs import PredefCRS
from .core.proj.reproj import reprojPt
from .core.proj.srs import SRS
from .operators.utils import mouseTo3d
PKG = __package__
'''
Policy :
This module manages in priority the CRS coordinates of the scene's origin and
updates the corresponding longitude/latitude only if it can to do the math.
A scene is considered correctly georeferenced when at least a valid CRS is defined
and the coordinates of scene's origin in this CRS space is set. A geoscene will be
broken if the origin is set but not the CRS or if the origin is only set as longitude/latitude.
Changing the CRS will raise an error if updating existing origin coordinate is not possible.
Both methods setOriginGeo() and setOriginPrj() try a projection task to maintain
coordinates synchronized. Failing reprojecion does not abort the exec, but will
trigger deletion of unsynch coordinates. Synchronization can be disable for
setOriginPrj() method only.
Except setOriginGeo() method, dealing directly with longitude/latitude
automatically trigger a reprojection task which will raise an error if failing.
Sequences of methods :
moveOriginPrj() | updOriginPrj() > setOriginPrj() > [reprojPt()]
moveOriginGeo() > updOriginGeo() > reprojPt() > updOriginPrj() > setOriginPrj()
Standalone properties (lon, lat, crsx et crsy) can be edited independently without any extra checks.
'''
class SK():
"""Alias to Scene Keys used to store georef infos"""
# latitude and longitude of scene origin in decimal degrees
LAT = "latitude"
LON = "longitude"
#Spatial Reference System Identifier
# can be directly an EPSG code or formated following the template "AUTH:4326"
# or a proj4 string definition of Coordinate Reference System (CRS)
CRS = "SRID"
# Coordinates of scene origin in CRS space
CRSX = "crs x"
CRSY = "crs y"
# General scale denominator of the map (1:x)
SCALE = "scale"
# Current zoom level in the Tile Matrix Set
ZOOM = "zoom"
class GeoScene():
def __init__(self, scn=None):
if scn is None:
self.scn = bpy.context.scene
else:
self.scn = scn
self.SK = SK()
@property
def _rna_ui(self):
# get or init the dictionary containing IDprops settings
rna_ui = self.scn.get('_RNA_UI', None)
if rna_ui is None:
self.scn['_RNA_UI'] = {}
rna_ui = self.scn['_RNA_UI']
return rna_ui
def view3dToProj(self, dx, dy):
'''Convert view3d coords to crs coords'''
if self.hasOriginPrj:
x = self.crsx + (dx * self.scale)
y = self.crsy + (dy * self.scale)
return x, y
else:
raise Exception("Scene origin coordinate is unset")
def projToView3d(self, dx, dy):
'''Convert view3d coords to crs coords'''
if self.hasOriginPrj:
x = (dx * self.scale) - self.crsx
y = (dy * self.scale) - self.crsy
return x, y
else:
raise Exception("Scene origin coordinate is unset")
@property
def hasCRS(self):
return SK.CRS in self.scn
@property
def hasValidCRS(self):
if not self.hasCRS:
return False
return SRS.validate(self.crs)
@property
def isGeoref(self):
'''A scene is georef if at least a valid CRS is defined and
the coordinates of scene's origin in this CRS space is set'''
return self.hasValidCRS and self.hasOriginPrj
@property
def isFullyGeoref(self):
return self.hasValidCRS and self.hasOriginPrj and self.hasOriginGeo
@property
def isPartiallyGeoref(self):
return self.hasCRS or self.hasOriginPrj or self.hasOriginGeo
@property
def isBroken(self):
"""partial georef infos make the geoscene unusuable and broken"""
return (self.hasCRS and not self.hasValidCRS) \
or (not self.hasCRS and (self.hasOriginPrj or self.hasOriginGeo)) \
or (self.hasCRS and self.hasOriginGeo and not self.hasOriginPrj)
@property
def hasOriginGeo(self):
return SK.LAT in self.scn and SK.LON in self.scn
@property
def hasOriginPrj(self):
return SK.CRSX in self.scn and SK.CRSY in self.scn
def setOriginGeo(self, lon, lat):
self.lon, self.lat = lon, lat
try:
self.crsx, self.crsy = reprojPt(4326, self.crs, lon, lat)
except Exception as e:
if self.hasOriginPrj:
self.delOriginPrj()
log.warning('Origin proj has been deleted because the property could not be updated', exc_info=True)
def setOriginPrj(self, x, y, synch=True):
self.crsx, self.crsy = x, y
if synch:
try:
self.lon, self.lat = reprojPt(self.crs, 4326, x, y)
except Exception as e:
if self.hasOriginGeo:
self.delOriginGeo()
log.warning('Origin geo has been deleted because the property could not be updated', exc_info=True)
elif self.hasOriginGeo:
self.delOriginGeo()
log.warning('Origin geo has been deleted because coordinate synchronization is disable')
def updOriginPrj(self, x, y, updObjLoc=True, synch=True):
'''Update/move scene origin passing absolute coordinates'''
if not self.hasOriginPrj:
raise Exception("Cannot update an unset origin.")
dx = x - self.crsx
dy = y - self.crsy
self.setOriginPrj(x, y, synch)
if updObjLoc:
self._moveObjLoc(dx, dy)
def updOriginGeo(self, lon, lat, updObjLoc=True):
if not self.isGeoref:
raise Exception("Cannot update geo origin of an ungeoref scene.")
x, y = reprojPt(4326, self.crs, lon, lat)
self.updOriginPrj(x, y, updObjLoc)
def moveOriginGeo(self, dx, dy, updObjLoc=True):
if not self.hasOriginGeo:
raise Exception("Cannot move an unset origin.")
x = self.lon + dx
y = self.lat + dy
self.updOriginGeo(x, y, updObjLoc=updObjLoc)
def moveOriginPrj(self, dx, dy, useScale=True, updObjLoc=True, synch=True):
'''Move scene origin passing relative deltas'''
if not self.hasOriginPrj:
raise Exception("Cannot move an unset origin.")
if useScale:
self.setOriginPrj(self.crsx + dx * self.scale, self.crsy + dy * self.scale, synch)
else:
self.setOriginPrj(self.crsx + dx, self.crsy + dy, synch)
if updObjLoc:
self._moveObjLoc(dx, dy)
def _moveObjLoc(self, dx, dy):
topParents = [obj for obj in self.scn.objects if not obj.parent]
for obj in topParents:
obj.location.x -= dx
obj.location.y -= dy
def getOriginGeo(self):
return self.lon, self.lat
def getOriginPrj(self):
return self.crsx, self.crsy
def delOriginGeo(self):
del self.lat
del self.lon
def delOriginPrj(self):
del self.crsx
del self.crsy
def delOrigin(self):
self.delOriginGeo()
self.delOriginPrj()
@property
def crs(self):
return self.scn.get(SK.CRS, None) #always string
@crs.setter
def crs(self, v):
#Make sure input value is a valid crs string representation
crs = SRS(v) #will raise an error if the crs is not valid
#Reproj existing origin. New CRS will not be set if updating existing origin is not possible
# try first to reproj from origin geo because self.crs can be empty or broken
if self.hasOriginGeo:
if crs.isWGS84:
#if destination crs is wgs84, just assign lonlat to originprj
self.crsx, self.crsy = self.lon, self.lat
self.crsx, self.crsy = reprojPt(4326, str(crs), self.lon, self.lat)
elif self.hasOriginPrj and self.hasCRS:
if self.hasValidCRS:
# will raise an error is current crs is empty or invalid
self.crsx, self.crsy = reprojPt(self.crs, str(crs), self.crsx, self.crsy)
else:
raise Exception("Scene origin coordinates cannot be updated because current CRS is invalid.")
#Set ID prop
if SK.CRS not in self.scn:
self._rna_ui[SK.CRS] = {"description": "Map Coordinate Reference System", "default": ''}
self.scn[SK.CRS] = str(crs)
@crs.deleter
def crs(self):
if SK.CRS in self.scn:
del self.scn[SK.CRS]
@property
def lat(self):
return self.scn.get(SK.LAT, None)
@lat.setter
def lat(self, v):
if SK.LAT not in self.scn:
self._rna_ui[SK.LAT] = {"description": "Scene origin latitude", "default": 0.0, "min":-90.0, "max":90.0}
if -90 <= v <= 90:
self.scn[SK.LAT] = v
else:
raise ValueError('Wrong latitude value '+str(v))
@lat.deleter
def lat(self):
if SK.LAT in self.scn:
del self.scn[SK.LAT]
@property
def lon(self):
return self.scn.get(SK.LON, None)
@lon.setter
def lon(self, v):
if SK.LON not in self.scn:
self._rna_ui[SK.LON] = {"description": "Scene origin longitude", "default": 0.0, "min":-180.0, "max":180.0}
if -180 <= v <= 180:
self.scn[SK.LON] = v
else:
raise ValueError('Wrong longitude value '+str(v))
@lon.deleter
def lon(self):
if SK.LON in self.scn:
del self.scn[SK.LON]
@property
def crsx(self):
return self.scn.get(SK.CRSX, None)
@crsx.setter
def crsx(self, v):
if SK.CRSX not in self.scn:
self._rna_ui[SK.CRSX] = {"description": "Scene x origin in CRS space", "default": 0.0}
if isinstance(v, (int, float)):
self.scn[SK.CRSX] = v
else:
raise ValueError('Wrong x origin value '+str(v))
@crsx.deleter
def crsx(self):
if SK.CRSX in self.scn:
del self.scn[SK.CRSX]
@property
def crsy(self):
return self.scn.get(SK.CRSY, None)
@crsy.setter
def crsy(self, v):
if SK.CRSY not in self.scn:
self._rna_ui[SK.CRSY] = {"description": "Scene y origin in CRS space", "default": 0.0}
if isinstance(v, (int, float)):
self.scn[SK.CRSY] = v
else:
raise ValueError('Wrong y origin value '+str(v))
@crsy.deleter
def crsy(self):
if SK.CRSY in self.scn:
del self.scn[SK.CRSY]
@property
def scale(self):
return self.scn.get(SK.SCALE, 1)
@scale.setter
def scale(self, v):
if SK.SCALE not in self.scn:
self._rna_ui[SK.SCALE] = {"description": "Map scale denominator", "default": 1, "min": 1}
self.scn[SK.SCALE] = v
@scale.deleter
def scale(self):
if SK.SCALE in self.scn:
del self.scn[SK.SCALE]
@property
def zoom(self):
return self.scn.get(SK.ZOOM, None)
@zoom.setter
def zoom(self, v):
if SK.ZOOM not in self.scn:
self._rna_ui[SK.ZOOM] = {"description": "Basemap zoom level", "default": 1, "min": 0, "max":25}
self.scn[SK.ZOOM] = v
@zoom.deleter
def zoom(self):
if SK.ZOOM in self.scn:
del self.scn[SK.ZOOM]
@property
def hasScale(self):
#return self.scale is not None
return SK.SCALE in self.scn
@property
def hasZoom(self):
return self.zoom is not None
################ OPERATORS ######################
from bpy_extras.view3d_utils import region_2d_to_location_3d, region_2d_to_vector_3d
class GEOSCENE_OT_coords_viewer(Operator):
bl_idname = "geoscene.coords_viewer"
bl_description = ''
bl_label = ""
bl_options = {'INTERNAL', 'UNDO'}
coords: FloatVectorProperty(subtype='XYZ')
@classmethod
def poll(cls, context):
return bpy.context.mode == 'OBJECT' and context.area.type == 'VIEW_3D'
def invoke(self, context, event):
self.geoscn = GeoScene(context.scene)
if not self.geoscn.isGeoref or self.geoscn.isBroken:
self.report({'ERROR'}, "Scene is not correctly georeferencing")
return {'CANCELLED'}
#Add modal handler and init a timer
context.window_manager.modal_handler_add(self)
self.timer = context.window_manager.event_timer_add(0.05, window=context.window)
context.window.cursor_set('CROSSHAIR')
return {'RUNNING_MODAL'}
def modal(self, context, event):
if event.type == 'MOUSEMOVE':
loc = mouseTo3d(context, event.mouse_region_x, event.mouse_region_y)
x, y = self.geoscn.view3dToProj(loc.x, loc.y)
context.area.header_text_set("x {:.3f}, y {:.3f}, z {:.3f}".format(x, y, loc.z))
if event.type == 'ESC' and event.value == 'PRESS':
context.window.cursor_set('DEFAULT')
context.area.header_text_set(None)
return {'CANCELLED'}
return {'RUNNING_MODAL'}
class GEOSCENE_OT_set_crs(Operator):
'''
use the enum of predefinates crs defined in addon prefs
to select and switch scene crs definition
'''
bl_idname = "geoscene.set_crs"
bl_description = 'Switch scene crs'
bl_label = "Switch to"
bl_options = {'INTERNAL', 'UNDO'}
"""
#to avoid conflict, make a distinct predef crs enum
#instead of reuse the one defined in addon pref
def listPredefCRS(self, context):
return PredefCRS.getEnumItems()
crsEnum = EnumProperty(
name = "Predefinate CRS",
description = "Choose predefinite Coordinate Reference System",
items = listPredefCRS
)
"""
def draw(self,context):
prefs = context.preferences.addons[PKG].preferences
layout = self.layout
row = layout.row(align=True)
#row.prop(self, "crsEnum", text='')
row.prop(prefs, "predefCrs", text='')
#row.operator("geoscene.show_pref", text='', icon='PREFERENCES')
row.operator("bgis.add_predef_crs", text='', icon='ADD')
def invoke(self, context, event):
return context.window_manager.invoke_props_dialog(self, width=200)
def execute(self, context):
geoscn = GeoScene(context.scene)
prefs = context.preferences.addons[PKG].preferences
try:
geoscn.crs = prefs.predefCrs
except Exception as err:
log.error('Cannot update crs', exc_info=True)
self.report({'ERROR'}, 'Cannot update crs. Check logs form more info')
return {'CANCELLED'}
#
context.area.tag_redraw()
return {'FINISHED'}
class GEOSCENE_OT_init_org(Operator):
bl_idname = "geoscene.init_org"
bl_description = 'Init scene origin custom props at location 0,0'
bl_label = "Init origin"
bl_options = {'INTERNAL', 'UNDO'}
lonlat: BoolProperty(
name = "As lonlat",
description = "Set origin coordinate as longitude and latitude"
)
x: FloatProperty()
y: FloatProperty()
def invoke(self, context, event):
return context.window_manager.invoke_props_dialog(self, width=200)
def execute(self, context):
geoscn = GeoScene(context.scene)
if geoscn.hasOriginGeo or geoscn.hasOriginPrj:
log.warning('Cannot init scene origin because it already exist')
return {'CANCELLED'}
else:
#geoscn.lon, geoscn.lat = 0, 0
#geoscn.crsx, geoscn.crsy = 0, 0
if self.lonlat:
geoscn.setOriginGeo(self.x, self.y)
else:
geoscn.setOriginPrj(self.x, self.y)
return {'FINISHED'}
class GEOSCENE_OT_edit_org_geo(Operator):
bl_idname = "geoscene.edit_org_geo"
bl_description = 'Edit scene origin longitude/latitude'
bl_label = "Edit origin geo"
bl_options = {'INTERNAL', 'UNDO'}
lon: FloatProperty()
lat: FloatProperty()
def invoke(self, context, event):
geoscn = GeoScene(context.scene)
if geoscn.isBroken:
self.report({'ERROR'}, "Scene georef is broken")
return {'CANCELLED'}
self.lon, self.lat = geoscn.getOriginGeo()
return context.window_manager.invoke_props_dialog(self)
def execute(self, context):
geoscn = GeoScene(context.scene)
if geoscn.hasOriginGeo:
geoscn.updOriginGeo(self.lon, self.lat)
else:
geoscn.setOriginGeo(self.lon, self.lat)
return {'FINISHED'}
class GEOSCENE_OT_edit_org_prj(Operator):
bl_idname = "geoscene.edit_org_prj"
bl_description = 'Edit scene origin in projected system'
bl_label = "Edit origin proj"
bl_options = {'INTERNAL', 'UNDO'}
x: FloatProperty()
y: FloatProperty()
def invoke(self, context, event):
geoscn = GeoScene(context.scene)
if geoscn.isBroken:
self.report({'ERROR'}, "Scene georef is broken")
return {'CANCELLED'}
self.x, self.y = geoscn.getOriginPrj()
return context.window_manager.invoke_props_dialog(self)
def execute(self, context):
geoscn = GeoScene(context.scene)
if geoscn.hasOriginPrj:
geoscn.updOriginPrj(self.x, self.y)
else:
geoscn.setOriginPrj(self.x, self.y)
return {'FINISHED'}
class GEOSCENE_OT_link_org_geo(Operator):
bl_idname = "geoscene.link_org_geo"
bl_description = 'Link scene origin lat long'
bl_label = "Link geo"
bl_options = {'INTERNAL', 'UNDO'}
def execute(self, context):
geoscn = GeoScene(context.scene)
if geoscn.hasOriginPrj and geoscn.hasCRS:
try:
geoscn.lon, geoscn.lat = reprojPt(geoscn.crs, 4326, geoscn.crsx, geoscn.crsy)
except Exception as err:
log.error('Cannot compute lat/lon coordinates', exc_info=True)
self.report({'ERROR'}, 'Cannot compute lat/lon. Check logs for more infos.')
return {'CANCELLED'}
else:
self.report({'ERROR'}, 'No enough infos')
return {'CANCELLED'}
return {'FINISHED'}
class GEOSCENE_OT_link_org_prj(Operator):
bl_idname = "geoscene.link_org_prj"
bl_description = 'Link scene origin in crs space'
bl_label = "Link prj"
bl_options = {'INTERNAL', 'UNDO'}
def execute(self, context):
geoscn = GeoScene(context.scene)
if geoscn.hasOriginGeo and geoscn.hasCRS:
try:
geoscn.crsx, geoscn.crsy = reprojPt(4326, geoscn.crs, geoscn.lon, geoscn.lat)
except Exception as err:
log.error('Cannot compute crs coordinates', exc_info=True)
self.report({'ERROR'}, 'Cannot compute crs coordinates. Check logs for more infos.')
return {'CANCELLED'}
else:
self.report({'ERROR'}, 'No enough infos')
return {'CANCELLED'}
return {'FINISHED'}
class GEOSCENE_OT_clear_org(Operator):
bl_idname = "geoscene.clear_org"
bl_description = 'Clear scene origin coordinates'
bl_label = "Clear origin"
bl_options = {'INTERNAL', 'UNDO'}
def execute(self, context):
geoscn = GeoScene(context.scene)
geoscn.delOrigin()
return {'FINISHED'}
class GEOSCENE_OT_clear_georef(Operator):
bl_idname = "geoscene.clear_georef"
bl_description = 'Clear all georef infos'
bl_label = "Clear georef"
bl_options = {'INTERNAL', 'UNDO'}
def execute(self, context):
geoscn = GeoScene(context.scene)
geoscn.delOrigin()
del geoscn.crs
return {'FINISHED'}
################ PROPS GETTERS SETTERS ######################
def getLon(self):
geoscn = GeoScene()
return geoscn.lon
def getLat(self):
geoscn = GeoScene()
return geoscn.lat
def setLon(self, lon):
geoscn = GeoScene()
prefs = bpy.context.preferences.addons[PKG].preferences
if geoscn.hasOriginGeo:
geoscn.updOriginGeo(lon, geoscn.lat, updObjLoc=prefs.lockObj)
else:
geoscn.setOriginGeo(lon, geoscn.lat)
def setLat(self, lat):
geoscn = GeoScene()
prefs = bpy.context.preferences.addons[PKG].preferences
if geoscn.hasOriginGeo:
geoscn.updOriginGeo(geoscn.lon, lat, updObjLoc=prefs.lockObj)
else:
geoscn.setOriginGeo(geoscn.lon, lat)
def getCrsx(self):
geoscn = GeoScene()
return geoscn.crsx
def getCrsy(self):
geoscn = GeoScene()
return geoscn.crsy
def setCrsx(self, x):
geoscn = GeoScene()
prefs = bpy.context.preferences.addons[PKG].preferences
if geoscn.hasOriginPrj:
geoscn.updOriginPrj(x, geoscn.crsy, updObjLoc=prefs.lockObj)
else:
geoscn.setOriginPrj(x, geoscn.crsy)
def setCrsy(self, y):
geoscn = GeoScene()
prefs = bpy.context.preferences.addons[PKG].preferences
if geoscn.hasOriginPrj:
geoscn.updOriginPrj(geoscn.crsx, y, updObjLoc=prefs.lockObj)
else:
geoscn.setOriginPrj(geoscn.crsx, y)
################ PANEL ######################
class GEOSCENE_PT_georef(Panel):
bl_category = "View"#"GIS"
bl_label = "Geoscene"
bl_space_type = "VIEW_3D"
bl_context = "objectmode"
bl_region_type = "UI"
def draw(self, context):
layout = self.layout
scn = context.scene
geoscn = GeoScene(scn)
#layout.operator("bgis.pref_show", icon='PREFERENCES')
georefManagerLayout(self, context)
layout.operator("geoscene.coords_viewer", icon='WORLD', text='Geo-coordinates')
#hidden props used as display options in georef manager panel
class GLOBAL_PROPS(PropertyGroup):
displayOriginGeo: BoolProperty(
name='Geo', description='Display longitude and latitude of scene origin')
displayOriginPrj: BoolProperty(
name='Proj', description='Display coordinates of scene origin in CRS space')
lon: FloatProperty(get=getLon, set=setLon)
lat: FloatProperty(get=getLat, set=setLat)
crsx: FloatProperty(get=getCrsx, set=setCrsx)
crsy: FloatProperty(get=getCrsy, set=setCrsy)
def georefManagerLayout(self, context):
'''Use this method to extend a panel with georef managment tools'''
layout = self.layout
scn = context.scene
wm = bpy.context.window_manager
geoscn = GeoScene(scn)
prefs = context.preferences.addons[PKG].preferences
if geoscn.isBroken:
layout.alert = True
row = layout.row(align=True)
row.label(text='Scene georeferencing :')
if geoscn.hasCRS:
row.operator("geoscene.clear_georef", text='', icon='CANCEL')
#CRS
row = layout.row(align=True)
#row.alignment = 'LEFT'
#row.label(icon='EMPTY_DATA')
split = row.split(factor=0.25)
if geoscn.hasCRS:
split.label(icon='PROP_ON', text='CRS:')
elif not geoscn.hasCRS and (geoscn.hasOriginGeo or geoscn.hasOriginPrj):
split.label(icon='ERROR', text='CRS:')
else:
split.label(icon='PROP_OFF', text='CRS:')
if geoscn.hasCRS:
##col = split.column(align=True)
##col.enabled = False
##col.prop(scn, '["'+SK.CRS+'"]', text='')
crs = scn[SK.CRS]
name = PredefCRS.getName(crs)
if name is not None:
split.label(text=name)
else:
split.label(text=crs)
else:
split.label(text="Not set")
row.operator("geoscene.set_crs", text='', icon='PREFERENCES')
#Origin
row = layout.row(align=True)
#row.alignment = 'LEFT'
#row.label(icon='PIVOT_CURSOR')
split = row.split(factor=0.25, align=True)
if not geoscn.hasOriginGeo and not geoscn.hasOriginPrj:
split.label(icon='PROP_OFF', text="Origin:")
elif not geoscn.hasOriginGeo and geoscn.hasOriginPrj:
split.label(icon='PROP_CON', text="Origin:")
elif geoscn.hasOriginGeo and geoscn.hasOriginPrj:
split.label(icon='PROP_ON', text="Origin:")
elif geoscn.hasOriginGeo and not geoscn.hasOriginPrj:
split.label(icon='ERROR', text="Origin:")
col = split.column(align=True)
if not geoscn.hasOriginGeo:
col.enabled = False
col.prop(wm.geoscnProps, 'displayOriginGeo', toggle=True)
col = split.column(align=True)
if not geoscn.hasOriginPrj:
col.enabled = False
col.prop(wm.geoscnProps, 'displayOriginPrj', toggle=True)
if geoscn.hasOriginGeo or geoscn.hasOriginPrj:
if geoscn.hasCRS and not geoscn.hasOriginPrj:
row.operator("geoscene.link_org_prj", text="", icon='CONSTRAINT')
if geoscn.hasCRS and not geoscn.hasOriginGeo:
row.operator("geoscene.link_org_geo", text="", icon='CONSTRAINT')
row.operator("geoscene.clear_org", text="", icon='REMOVE')
if not geoscn.hasOriginGeo and not geoscn.hasOriginPrj:
row.operator("geoscene.init_org", text="", icon='ADD')
if geoscn.hasOriginGeo and wm.geoscnProps.displayOriginGeo:
row = layout.row()
row.prop(wm.geoscnProps, 'lon', text='Lon')
row.prop(wm.geoscnProps, 'lat', text='Lat')
'''
row.enabled = False
row.prop(scn, '["'+SK.LON+'"]', text='Lon')
row.prop(scn, '["'+SK.LAT+'"]', text='Lat')
'''
if geoscn.hasOriginPrj and wm.geoscnProps.displayOriginPrj:
row = layout.row()
row.prop(wm.geoscnProps, 'crsx', text='X')
row.prop(wm.geoscnProps, 'crsy', text='Y')
'''
row.enabled = False
row.prop(scn, '["'+SK.CRSX+'"]', text='X')
row.prop(scn, '["'+SK.CRSY+'"]', text='Y')
'''
if geoscn.hasScale:
row = layout.row()
row.label(text='Map scale:')
col = row.column()
col.enabled = False
col.prop(scn, '["'+SK.SCALE+'"]', text='')
#if geoscn.hasZoom:
# layout.prop(scn, '["'+SK.ZOOM+'"]', text='Zoom level', slider=True)
###########################
classes = [
GEOSCENE_OT_coords_viewer,
GEOSCENE_OT_set_crs,
GEOSCENE_OT_init_org,
GEOSCENE_OT_edit_org_geo,
GEOSCENE_OT_edit_org_prj,
GEOSCENE_OT_link_org_geo,
GEOSCENE_OT_link_org_prj,
GEOSCENE_OT_clear_org,
GEOSCENE_OT_clear_georef,
GEOSCENE_PT_georef,
GLOBAL_PROPS
]
def register():
for cls in classes:
try:
bpy.utils.register_class(cls)
except ValueError as e:
log.warning('{} is already registered, now unregister and retry... '.format(cls))
bpy.utils.unregister_class(cls)
bpy.utils.register_class(cls)
bpy.types.WindowManager.geoscnProps = PointerProperty(type=GLOBAL_PROPS)
def unregister():
del bpy.types.WindowManager.geoscnProps
for cls in classes:
bpy.utils.unregister_class(cls)