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

# https://pyrocko.org - GPLv3 

# 

# The Pyrocko Developers, 21st Century 

# ---|P------/S----------~Lg---------- 

 

from __future__ import absolute_import, print_function, division 

 

import numpy as num 

 

from pyrocko import table, geometry, cake 

from pyrocko.guts import Bool, Float 

from pyrocko.gui.qt_compat import qw, qc 

 

from pyrocko.dataset.volcanoes import Volcanoes 

from pyrocko.gui.vtk_util import ScatterPipe 

 

from .base import Element, ElementState 

 

guts_prefix = 'sparrow' 

 

km = 1e3 

COLOR_HOLOCENE = (0.98, 0.26, .32) 

COLOR_PLEISTOCENE = (1., .41, .28) 

 

 

def volcanoes_to_points(volcanoes): 

coords = num.zeros((len(volcanoes), 3)) 

 

for i, v in enumerate(volcanoes): 

coords[i, :] = v.lat, v.lon, -v.elevation - 10*km 

 

station_table = table.Table() 

 

station_table.add_col(('coords', '', ('lat', 'lon', 'depth')), coords) 

 

return geometry.latlondepth2xyz( 

station_table.get_col('coords'), 

planetradius=cake.earthradius) 

 

 

def volcanoes_to_color(volcanoes): 

colors = [] 

for v in volcanoes: 

if v.age == 'holocene': 

colors.append(COLOR_HOLOCENE) 

else: 

colors.append(COLOR_PLEISTOCENE) 

return num.array(colors) 

 

 

class VolcanoesState(ElementState): 

visible = Bool.T(default=True) 

size = Float.T(default=3.0) 

 

def create(self): 

element = VolcanoesElement() 

element.bind_state(self) 

return element 

 

 

class VolcanoesElement(Element): 

 

def __init__(self): 

Element.__init__(self) 

self._pipe = None 

self._controls = None 

self._volcanoes = None 

 

def bind_state(self, state): 

self._listeners.append( 

state.add_listener(self.update, 'visible')) 

self._listeners.append( 

state.add_listener(self.update, 'size')) 

self._state = state 

 

def get_name(self): 

return 'Volcanoes' 

 

def set_parent(self, parent): 

self._parent = parent 

if not self._volcanoes: 

self._volcanoes = Volcanoes() 

 

self._parent.add_panel( 

self.get_name(), self._get_controls(), visible=True) 

self.update() 

 

def unset_parent(self): 

self.unbind_state() 

if not self._parent: 

return 

self._parent.remove_actor(self._pipe.actor) 

self._pipe = None 

 

self._parent.remove_panel(self._controls) 

self._controls = None 

 

self._parent.update_view() 

self._parent = None 

 

def update(self, *args): 

state = self._state 

 

if state.visible: 

if self._pipe is None: 

points = volcanoes_to_points(self._volcanoes.volcanoes) 

self._pipe = ScatterPipe(points) 

 

colors = volcanoes_to_color(self._volcanoes.volcanoes) 

self._pipe.set_colors(colors) 

 

self._pipe.set_size(state.size) 

self._pipe.set_symbol('sphere') 

self._parent.add_actor(self._pipe.actor) 

 

else: 

self._parent.remove_actor(self._pipe.actor) 

 

self._parent.update_view() 

 

def _get_controls(self): 

if not self._controls: 

from ..state import state_bind_checkbox, state_bind_slider 

 

frame = qw.QFrame() 

layout = qw.QGridLayout() 

frame.setLayout(layout) 

 

layout.addWidget(qw.QLabel('Size'), 0, 0) 

 

slider = qw.QSlider(qc.Qt.Horizontal) 

slider.setSizePolicy( 

qw.QSizePolicy( 

qw.QSizePolicy.Expanding, qw.QSizePolicy.Fixed)) 

slider.setMinimum(0) 

slider.setMaximum(10) 

slider.setSingleStep(0.5) 

slider.setPageStep(1) 

layout.addWidget(slider, 0, 1) 

state_bind_slider(self, self._state, 'size', slider) 

 

cb = qw.QCheckBox('Show') 

layout.addWidget(cb, 1, 0) 

state_bind_checkbox(self, self._state, 'visible', cb) 

 

self._controls = frame 

 

return self._controls 

 

 

__all__ = [ 

'VolcanoesElement', 

'VolcanoesState' 

]