Skip to content

Commit bfb94cc

Browse files
committed
update
1 parent 18858c1 commit bfb94cc

File tree

3 files changed

+51
-53
lines changed

3 files changed

+51
-53
lines changed

data/Example/info.json

Lines changed: 49 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,50 @@
1-
{
2-
"slider": "Frame",
3-
"x_3d": "Latitude",
4-
"y_3d": "Longitude",
5-
"z_3d": "Height",
6-
"x_ref": "Host_Latitude",
7-
"y_ref": "Host_Longitude",
8-
"keys": {
9-
"Height": {
10-
"description": "Height (m)",
11-
"decimal": 2,
12-
"type": "numerical"
13-
},
14-
"Longitude": {
15-
"description": "Longitude (m)",
16-
"decimal": 2,
17-
"type": "numerical"
18-
},
19-
"Latitude": {
20-
"description": "Latitude (m)",
21-
"decimal": 2,
22-
"type": "numerical"
23-
},
24-
"Time": {
25-
"description": "Time (s)",
26-
"decimal": 2,
27-
"type": "numerical"
28-
},
29-
"Sensor": {
30-
"description": "Sensor",
31-
"type": "categorical"
32-
},
33-
"Frame": {
34-
"description": "Frame",
35-
"decimal": 0,
36-
"type": "numerical"
37-
},
38-
"Host_Longitude": {
39-
"description": "Ref Longitude (m)",
40-
"decimal": 2,
41-
"type": "numerical"
42-
},
43-
"Host_Latitude": {
44-
"description": "Ref Latitude (m)",
45-
"decimal": 2,
46-
"type": "numerical"
47-
}
48-
}
1+
{
2+
"slider": "Frame",
3+
"x_3d": "Latitude",
4+
"y_3d": "Longitude",
5+
"z_3d": "Height",
6+
"x_ref": "Host_Latitude",
7+
"y_ref": "Host_Longitude",
8+
"z_ref": "None",
9+
"keys": {
10+
"Height": {
11+
"description": "Height (m)",
12+
"decimal": 2,
13+
"type": "numerical"
14+
},
15+
"Longitude": {
16+
"description": "Longitude (m)",
17+
"decimal": 2,
18+
"type": "numerical"
19+
},
20+
"Latitude": {
21+
"description": "Latitude (m)",
22+
"decimal": 2,
23+
"type": "numerical"
24+
},
25+
"Time": {
26+
"description": "Time (s)",
27+
"decimal": 2,
28+
"type": "numerical"
29+
},
30+
"Sensor": {
31+
"description": "Sensor",
32+
"type": "categorical"
33+
},
34+
"Frame": {
35+
"description": "Frame",
36+
"decimal": 0,
37+
"type": "numerical"
38+
},
39+
"Host_Longitude": {
40+
"description": "Ref Longitude (m)",
41+
"decimal": 2,
42+
"type": "numerical"
43+
},
44+
"Host_Latitude": {
45+
"description": "Ref Latitude (m)",
46+
"decimal": 2,
47+
"type": "numerical"
48+
}
49+
}
4950
}

layouts/app_layout.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,7 @@ def get_app_layout():
155155
},
156156
),
157157
dcc.Markdown(
158-
APP_VERSION
159-
+ " | Designed and developed by **Zhengyu Peng** \
160-
| Powered by [Dash](https://plotly.com/dash/)"
158+
APP_VERSION + " | Powered by [Dash](https://plotly.com/dash/)"
161159
),
162160
],
163161
fluid=True,

layouts/view3d_card_layout.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,9 @@ def get_3d_view_config_layout():
124124
html.I(className="bi bi-three-dots-vertical"),
125125
id="3d-config-more-button",
126126
className="mb-3",
127-
color="secondary",
127+
color="transparent",
128128
n_clicks=0,
129129
size="sm",
130-
style={"float": "right"},
131130
),
132131
width="auto",
133132
),

0 commit comments

Comments
 (0)