-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (131 loc) · 5.73 KB
/
Copy pathindex.html
File metadata and controls
163 lines (131 loc) · 5.73 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
---
layout: page
header-img: "img/MikeSaanich19.jpg"
---
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.5.1/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""/>
<script src="https://cdn.jsdelivr.net/leaflet.esri/1.0.0/esri-leaflet.js"></script>
<script src="https://cdn.jsdelivr.net/leaflet.esri.geocoder/1.0.2/esri-leaflet-geocoder.js"></script>
<script src="https://unpkg.com/leaflet@1.5.1/dist/leaflet.js"
integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og=="
crossorigin=""></script>
<body class="home">
<p>The Canadian-Pacific Robotic Ocean Observing Facility was initiated with CFI/BCKDF funding to build ocean observing
capacity off the British Columbia coast. It operates a fleet of autonomous gliders, floats, and moorings providing
ocean scientists with long-term monitoring of the ocean at the small scales important to resolve upper ocean physical
and biological processes.</p>
<h3> Deployments </h3>
<iframe id="totals-frame" src="gliderdata/deployments/Totals.html" width="100%" style="border:none;" height="3em"></iframe>
<script>
// Adjust iframe height to fit content
const iframe = document.getElementById('totals-frame');
iframe.onload = function() {
// Access the height of the content inside the iframe
iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px';
};
</script>
<p>Our <a href='/deployments/'>Deployments Page</a> has a list of glider deployments and access to glider data; more information on downloading glider data is also at the <a href='/datapage.html'>Data</a> page. See <a href='/platforms/'>Platforms Page</a> for information about the Argo floats and how to access their data:</p>
<p>See the <a href='/observatory/'>Observatory</a> page for a description of deployment location and line names.
If you use C-PROOF data, please cite: <i>Klymak, J., & Ross, T. (2025). C-PROOF Underwater Glider Deployment Datasets [Data set]. Canadian-Pacific Robotic Ocean Observing Facility. doi:<a href="https://doi.org/10.82534/44DS-K310">10.82534/44DS-K310</a></i>.
</p>
<div id="mapfront" style="width: 100%; height: 400px;"></div>
<a href="/deployments/">
<script src="js/map.js"></script>
</a>
<h4> Active glider deployments</h4>
<div id="image-container"></div>
<script src="js/image_active_deploy.js"></script>
<ul>
<li><a href="/mapserver/glider_status.html">Glider Status Page</a></li>
<li><a href="/gliderdata/deployments/sshplotsnew/">SSH Plots with glider tracks (2019--)</a></li>
</ul>
<h2>Partners</h2>
<h3>Operational Partners</h3>
<table style="width:100%">
<tr>
{% for partner in site.data.partners %}{% if partner.type == "opfunder2" %}{% if partner.visible == true %}
<td><a href="{{ partner.url }}"><img src="{{ partner.img }}" alt="{{ partner.name }}" border="3" width="80" /></a> </td>
{% if forloop.index == 3 %}
</tr>
<tr>
{% endif %}
{% endif %}{% endif %}{% endfor %}
{% for partner in site.data.partners %}{% if partner.type == "opfunder1" %}{% if partner.visible == true %} {% if partner.size == false %}
<td><a href="{{ partner.url }}"><img src="{{ partner.img }}" alt="{{ partner.name }}" border="3" width="120" /></a> </td>
{% endif %}
{% if partner.size == true %}
<td><a href="{{ partner.url }}"><img src="{{ partner.img }}" alt="{{ partner.name }}" border="3" width="230" /></a> </td>
{% endif %}
{% if forloop.index == 3 %}
</tr>
<tr>
{% endif %}
{% endif %}{% endif %}{% endfor %}
</tr>
</table>
<h3>Funding</h3>
<table style="width:100%">
<tr>
{% for partner in site.data.partners %}{% if partner.type == "funder" %}{% if partner.visible == true %}{% if partner.size == false %}
<td><a href="{{ partner.url }}"><img src="{{ partner.img }}" alt="{{ partner.name }}" border="3" width="120" /></a> </td>
{% endif %}
{% if partner.size == true %}
<td><a href="{{ partner.url }}"><img src="{{ partner.img }}" alt="{{ partner.name }}" border="3" width="230" /></a> </td>
{% endif %}
{% if forloop.index == 3 %}
</tr>
<tr>
{% endif %}
{% endif %}{% endif %}{% endfor %}
</tr>
</table>
<h3>Industry</h3>
<table style="width:100%">
<tr>
{% for partner in site.data.partners %}{% if partner.type == "industry" %}{% if partner.visible == true %}
<td><a href="{{ partner.url }}"><img src="{{ partner.img }}" alt="{{ partner.name }}" border="3" width="130" /></a> </td>
{% if forloop.index == 3 %}
</tr>
<tr>
{% endif %}
{% endif %}{% endif %}{% endfor %}
</tr>
</table>
<hr/>
<h2>
<a href="{{ site.baseurl }}/search/index.html">
Recent News
</a>
</h2>
{% for post in paginator.posts offset:0 limit:4 %} <!-- jpnote: added limit -->
<div class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h4 class="post-title"> {{ post.title }}
</h4>
{% if post.subtitle %}
<h5 class="post-subtitle">
{{ post.subtitle }}
</h5>
{% endif %}
</a>
<p class="post-meta" style="margin-bottom:5px">Posted by {{ post.author }} on {{ post.date | date: "%B %-d, %Y" }}</p>
</div>
<hr>
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}
</body>