home.html.jinja2
5.33 KB
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
{% extends 'layout.html.jinja2' %}
{% set menu_section = 'home' %}
{% block title %}Home{% endblock %}
{% block content %}
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer">
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Orbiters</span>
<section id="orbiters_filters">
<img src="{{ static('img/planet/jupiter_128.png') }}" width="64px" height="64px" alt="Jupiter">
<img src="{{ static('img/planet/earth_128.png') }}" width="64px" height="64px" alt="Earth (locked)" class="locked">
<img src="{{ static('img/planet/mars_128.png') }}" width="64px" height="64px" alt="Mars (locked)" class="locked">
</section>
<br>
<hr class="clear">
<span class="mdl-layout-title">Parameters</span>
<nav id="parameters" class="mdl-navigation">
<a class="mdl-navigation__link parameter" href="">Dynamic Pressure</a>
<a class="mdl-navigation__link parameter" href="">Magnetism</a>
<a class="mdl-navigation__link parameter" href="">Velocity</a>
</nav>
<span class="mdl-layout-title">Options</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="">How is this done?</a>
<a class="mdl-navigation__link" href="">More...</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--4-col">
<section id="orbits"></section>
</div>
<div class="mdl-cell mdl-cell--8-col">
<section id="time_series"></section>
</div>
</div>
<div class="loader"><div class="hole"></div></div>
</main>
</div>
{% endblock %}
{% block styles %}
<style>
html, body {
{# background-color: #322e3f;#}
{# color: #e3e3e3;#}
}
.axis path, .axis line {
fill: none;
{# stroke: #f4f4f4;#}
shape-rendering: crispEdges;
stroke-width: 1px;
}
svg text {
{# fill: #f4f4f4;#}
}
path.line {
fill: none;
stroke: steelblue;
stroke-width: 1px;
}
circle.cursor-circle {
fill: black;
stroke: rgba(20, 20, 20, 0.48);
}
text.cursor-text {
{# font-family: 'Ubuntu', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;#}
{# font-family: 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace;#}
font-family: "Ubuntu Mono", 'Consolas', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
text-align: right;
}
text.cursor-text-shadow {
stroke: white;
stroke-width: 5px;
opacity: 0.777
}
path.orbit.orbit_section {
fill: none;
stroke: steelblue;
stroke-width: 3px;
}
ellipse.orbit.orbit_ellipse {
fill: none;
stroke: #a3a3a3;
stroke-width: 1px;
stroke-dasharray: 5px;
}
#orbiters_filters img {
float: left;
}
#orbiters_filters img.locked {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
-ms-filter: grayscale(100%);
filter: grayscale(100%);
}
#orbits {
{# background-image: url('{{ static('img/orbitals_background.png') }}');#}
{# background-repeat: repeat;#}
{# background-size: 42%;#}
}
</style>
{% endblock %}
{% block scripts_footer %}
<script type="application/javascript" src="{{ static('js/vendor/d3.min.js') }}"></script>
<script type="application/javascript" src="{{ static('js/swapp.js') }}"></script>
<script type="application/javascript">
// Sorry, no ES6. Feel free to refactor.
var orbiters = {
jupiter: {
name: "Jupiter",
orbit: { a: 5.45516759, b: 4.95155843 },
img: "{{ static('img/planet/jupiter_128.png') }}"
}
};
jQuery().ready(function($){
var timeSeries = [];
var orbits;
d3.csv("{{ url_for('get_csv') }}", function(csv){
var timeFormat = d3.timeParse('%Y-%m-%dT%H:%M:%S%Z');
var data = {'pdyn': [], 'magn': [], 'vlen': []};
csv.forEach(function (d) {
data['pdyn'].push({x: timeFormat(d['time']), y: parseFloat(d['pdyn'])});
data['magn'].push({x: timeFormat(d['time']), y: parseFloat(d['magn'])});
data['vlen'].push({x: timeFormat(d['time']), y: parseFloat(d['vlen'])});
});
var container = "#time_series";
timeSeries.push(new TimeSeries(
'Dynamic Pressure (nPa)', data['pdyn'], container
));
timeSeries.push(new TimeSeries(
'Magnetism (nT)', data['magn'], container
));
timeSeries.push(new TimeSeries(
'Velocity (km/s)', data['vlen'], container
));
// move outside after promises
timeSeries.forEach(function(ts){
ts.options['onMouseOver'] = function() {
timeSeries.forEach(function(ts2){ ts2.showCursor(); });
};
ts.options['onMouseOut'] = function() {
timeSeries.forEach(function(ts2){ ts2.hideCursor(); });
};
ts.options['onMouseMove'] = function(t) {
timeSeries.forEach(function(ts2){ ts2.moveCursor(t); });
};
});
});
d3.csv("{{ url_for('get_astral_coordinates_csv') }}", function(csv){
var data = [];
csv.forEach(function (d) {
data.push({x: parseFloat(d['x_hci']), y: parseFloat(d['y_hci'])});
});
orbits = new Orbits(orbiters, data, '#orbits');
});
window.addEventListener('resize', function() {
timeSeries.forEach(function(ts){ ts.resize(); });
orbits.resize();
});
});
</script>
{% endblock %}