File size: 7,358 Bytes
f7fb447
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ab70807
f7fb447
 
 
 
 
 
 
ab70807
f7fb447
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""Plotting functions."""
from typing import Tuple, Dict
import numpy as np
import pandas as pd
import plotly.graph_objects as go
from plotly.subplots import make_subplots

from aira.utils.formatter import spherical_to_cartesian
from aira.engine.intensity import min_max_normalization


def hedgehog(
    fig: go.Figure,
    time_peaks: np.ndarray,
    reflex_to_direct: np.ndarray,
    azimuth_peaks: np.ndarray,
    elevation_peaks: np.ndarray,
) -> go.Figure:
    """Create a hedgehog plot."""
    time_peaks *= 1000  # seconds to miliseconds
    normalized_intensities = min_max_normalization(reflex_to_direct)
    # pylint: disable=invalid-name
    x, y, z = spherical_to_cartesian(
        normalized_intensities, azimuth_peaks, elevation_peaks
    )

    fig.add_trace(
        go.Scatter3d(
            x=zero_inserter(x),
            y=zero_inserter(y),
            z=zero_inserter(z),
            marker={
                "color": zero_inserter(normalized_intensities),
                "colorscale": "portland",
                "colorbar": {
                    "thickness": 20,
                    "tickvals": [0.99],
                    "ticktext": ["Direct          <br>sound          "],
                    "ticklabelposition": "inside",
                    "ticksuffix": "                     ",
                    "ticklabeloverflow": "allow",
                    "title": {"text": "<b>Time</b>"},
                },
                "size": 3,
            },
            line={
                "width": 8,
                "color": zero_inserter(normalized_intensities),
                "colorscale": "portland",
            },
            customdata=np.stack(
                (
                    zero_inserter(reflex_to_direct),
                    zero_inserter(time_peaks),
                    zero_inserter(azimuth_peaks),
                    zero_inserter(elevation_peaks),
                ),
                axis=-1,
            ),
            hovertemplate="<b>Reflection-to-direct [dB]:</b> %{customdata[0]:.2f} dB <br>"
            + "<b>Time [ms]: </b>%{customdata[1]:.2f} ms <br>"
            + "<b>Azimuth [°]: </b>%{customdata[2]:.2f}° <br>"
            + "<b>Elevation [°]: </b>%{customdata[3]:.2f}° <extra></extra>",
            showlegend=False,
        ),
        row=1,
        col=1,
    )

    fig.update_layout(
        scene={
            "aspectmode": "cube",
            "xaxis": {
                "zerolinecolor": "white",
                "showbackground": False,
                "showticklabels": False,
            },
            "xaxis_title": " ◀️ Front - Rear ▶",
            "yaxis": {
                "zerolinecolor": "white",
                "showbackground": False,
                "showticklabels": False,
            },
            "yaxis_title": " ◀️ Right - Left ▶",
            "zaxis": {
                "zerolinecolor": "white",
                "showbackground": False,
                "showticklabels": False,
            },
            "zaxis_title": " ◀️ Up - Down ▶",
        },
    )
    return fig


def w_channel(
    fig: go.Figure,
    time: np.ndarray,
    w_channel: np.ndarray,
    ylim: float,
    time_reflections: np.ndarray,
) -> go.Figure:
    """_summary_

    Parameters
    ----------
    fig : go.Figure
        _description_
    """
    fig.add_trace(
        go.Scatter(
            x=time,
            y=w_channel,
            customdata=time,
            hovertemplate="<b>Time [ms]:</b> %{customdata:.2f} ms <extra></extra>",
            showlegend=False,
        )
    )
    fig.add_trace(
        go.Scatter(
            mode="markers",
            marker={"symbol": "star-diamond", "size": 10, "color": "rgb(72,116,212)"},
            x=time_reflections,
            y=np.ones_like(time_reflections) * 0.95,
            customdata=time_reflections,
            hovertemplate="<b>Time [ms]:</b> %{customdata:.2f} ms <extra></extra>",
            showlegend=False,
        )
    )
    fig.update_layout(yaxis_range=[0, 1], xaxis_range=[0, max(time)])
    fig.update_xaxes(title_text="Time [ms]", row=2, col=1)
    fig.update_yaxes(title_text="Relative amplitude", row=2, col=1)


def setup_plotly_layout() -> go.Figure:
    """_summary_

    Parameters
    ----------
    fig : go.Figure
        _description_

    Returns
    -------
    _type_
        _description_
    """
    initial_fig = go.Figure()
    fig = make_subplots(
        rows=2,
        cols=1,
        row_heights=[0.85, 0.15],
        vertical_spacing=0.05,
        specs=[[{"type": "scene"}], [{"type": "xy"}]],
        subplot_titles=("<b>Hedgehog</b>", "<b>Omnidirectional channel</b>"),
        figure=initial_fig,
    )

    camera, buttons = get_plotly_scenes()

    fig.update_layout(
        template="plotly_dark",
        margin={"l": 0, "r": 100, "t": 30, "b": 0},
        paper_bgcolor="rgb(49,52,56)",
        plot_bgcolor="rgb(49,52,56)",
        scene_camera=camera,
        updatemenus=[{"buttons": buttons}],
        showlegend=False,
    )
    return fig


def get_plotly_scenes() -> Tuple[Dict]:
    """_summary_

    Returns
    -------
    Tuple[Dict]
        _description_
    """
    camera = {
        "up": {"x": 0, "y": 0, "z": 1},
        "center": {"x": 0, "y": 0, "z": 0},
        "eye": {"x": 1.3, "y": 1.3, "z": 0.2},
    }

    button0 = {
        "method": "relayout",
        "args": [{"scene.camera.eye": {"x": 1.3, "y": 1.3, "z": 0.2}}],
        "label": "3D perspective",
    }

    button1 = {
        "method": "relayout",
        "args": [
            {
                "scene.camera.eye": {"x": 0.0, "y": 0.0, "z": 2},
                "scene.camera.up": {"x": 0.0, "y": 0.0, "z": 2},
            }
        ],
        "label": "X-Y plane",
    }

    button2 = {
        "method": "relayout",
        "args": [{"scene.camera.eye": {"x": 0.0, "y": 2, "z": 0.0}}],
        "label": "X-Z plane",
    }

    button3 = {
        "method": "relayout",
        "args": [{"scene.camera.eye": {"x": 2, "y": 0.0, "z": 0.0}}],
        "label": "Y-Z plane",
    }
    buttons = [button0, button1, button2, button3]
    return camera, buttons


def get_xy_projection(fig: go.Figure) -> go.Figure:
    # Removing omnidireccional channel plot
    traces = list(fig.data)
    traces.pop(1)

    # Creating new figure for xy projection
    new_fig = make_subplots()
    new_fig.add_trace(traces[0])

    # Removing axes in Scatter plot
    new_fig.update_layout(
        scene={
            "xaxis": {"visible": False},
            "yaxis": {"visible": False},
            "zaxis": {"visible": False},
        }
    )

    # Removing colorbar
    new_fig.update_traces(marker_showscale=False)

    # Setting cenital camera and cube mode
    new_fig.update_layout(
        scene={"aspectmode": "cube"},
        scene_camera={
            "up": {"x": 0, "y": 1, "z": 0},
            "center": {"x": 0, "y": 0, "z": 0},
            "eye": {"x": 0, "y": 0, "z": 1.5},
        },
        paper_bgcolor="rgba(0,0,0,0)",
        plot_bgcolor="rgba(0,0,0,0)",
    )

    return new_fig


def zero_inserter(array: np.ndarray) -> np.ndarray:
    """_summary_

    Parameters
    ----------
    array : np.ndarray
        _description_

    Returns
    -------
    np.ndarray
        _description_
    """
    return np.insert(array, np.arange(len(array)), values=0)