-
Notifications
You must be signed in to change notification settings - Fork 5
/
cinema_explorer.html
124 lines (109 loc) · 5.34 KB
/
cinema_explorer.html
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
<!DOCTYPE html>
<html lang='en'>
<!--
A general Parallel Coordinates-based viewer for Spec-D cinema databases
pcoord_viewer Version 1.9
This software is open source software available under the BSD-3 license.
Copyright (c) 2018, Los Alamos National Security, LLC All rights reserved.
Copyright 2018. Los Alamos National Security, LLC. This software was produced
under U.S. Government contract DE-AC52-06NA25396 for Los Alamos National
Laboratory (LANL), which is operated by Los Alamos National Security, LLC for
the U.S. Department of Energy. The U.S. Government has rights to use,
reproduce, and distribute this software. NEITHER THE GOVERNMENT NOR LOS
ALAMOS NATIONAL SECURITY, LLC MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR
ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. If software is modified
to produce derivative works, such modified software should be clearly marked,
so as not to confuse it with the version available from LANL.
Additionally, redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Los Alamos National Security, LLC, Los Alamos
National Laboratory, LANL, the U.S. Government, nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY LOS ALAMOS NATIONAL SECURITY, LLC AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LOS ALAMOS NATIONAL
SECURITY, LLC OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<head>
<title>Cinema:Explorer</title>
<meta charset="utf-8">
<meta name='author' content="Cameron Tauxe">
<meta name='author' content="James Ahrens">
<meta name='author' content="David Rogers">
<meta name='author' content="Robin Maack">
<!-- external -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/vtk.js"></script>
<!-- components -->
<link rel='stylesheet' href='https://cinemascience.github.io/release/CinemaComponents.v2.7.1.min.css'>
<script src='https://cinemascience.github.io/release/CinemaComponents.v2.7.1.min.js'></script>
<!-- alternative local components files (for testing builds) (please comment this out before commiting)-->
<!--
<link rel='stylesheet' href='test/CinemaComponents.min.css'>
<script src='test/CinemaComponents.js'></script>
-->
<!--Import Viewer's CSS-->
<link rel='stylesheet' href='cinema/explorer/1.9/css/viewer.css'>
</head>
<body>
<div id="top">
<div id="header">
<h1>Cinema:Explorer</h1>
<!--Controls to select and load databases-->
<div id="databaseControls">
<span id="databaseLabel">Select Database:</span>
<br>
<select id="database"></select>
<button id="loadButton" onclick="load()">Load</button>
</div>
</div>
<div id="pcoordArea">
<!--Slide-out control panel for defining a custom path and querying for results similar to it-->
<div id="slideOut">
<div id="slideOutContents" style="display:none;">
<div id="queryContainer"></div>
</div>
<!--Button to show/hide the panel-->
<div id="showHideButton" onclick="toggleShowHide()">
<span id="showHideLabel">></span>
</div>
</div>
<!--Contains the pcoord component-->
<div id="pcoordContainer"></div>
<!--readout for the number of results currently selected-->
<div id="selectionStats"></div>
<!--Checkbox for toggling smooth lines on the chart-->
<div id="smoothLinesWrapper">
<input id="smoothLines" type="checkbox" checked="checked" oninput="updateSmoothLines()">Smooth Lines</input>
</div>
</div>
<!--Bar to click-and-drag to resize the chart-->
<div id="resizeBar"></div>
</div><!--end "top"-->
<!--The lower half of the page contains a component for viewing the selected data-->
<!--"Tabs" to select which component to use as the view-->
<div id="tabContainer">
<div class="tab" id="imageSpreadTab" selected="selected" onclick="changeView(viewType.IMAGESPREAD)">Image Spread</div>
<div class="tab" id="scatterPlotTab" selected="default" onclick="changeView(viewType.SCATTERPLOT)">Scatter Plot</div>
<div class="tab" id="linechartChartTab" selected="default" onclick="changeView(viewType.LINECHART)">Line Chart</div>
</div>
<!--The container for whichever component is selected-->
<div id="viewContainer"></div>
<!--Main Script-->
<script src="cinema/explorer/1.9/js/main.js"></script>
</body>
</html>