-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
717 lines (658 loc) · 23.6 KB
/
index.html
File metadata and controls
717 lines (658 loc) · 23.6 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
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="CatWISE" />
<meta charset="utf-8">
<title>CatWISE</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="">
<link rel="stylesheet" href="css/style.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Archivo" rel="stylesheet">
<style>
.banner {
grid-area: banner;
}
.content {
grid-area: content;
}
.footer {
grid-area: footer;
}
.sidebar1 {
grid-area: sidebar1;
}
.sidebar2 {
grid-area: sidebar2;
}
.wrapper {
background-color: #2C3531; /* Deep-Dark Blue Background */
color: rgba(68, 68, 68);
}
/* Flexible boxes here */
/* Anything smaller than 600px will be single column */
.wrapper {
display: grid;
grid-gap: 1em;
grid-template-areas:
"banner"
"sidebar1"
"content"
"sidebar2"
"footer"
}
/* If the users screen is >=600px
The columns adjust from 3 to 2 columns*/
@media only screen and (min-width: 600px) {
.wrapper {
grid-template-columns: 20% auto;
grid-template-areas:
"banner banner"
"sidebar1 content"
"sidebar2 sidebar2"
"footer footer";
}
}
/* Anything greater than 800px will
display the full 3 columns */
@media only screen and (min-width: 800px) {
.wrapper {
grid-gap: 20px;
grid-template-columns: 20% auto 20%;
grid-template-areas:
"banner banner banner"
"sidebar1 content sidebar2"
"footer footer footer";
}
}
.box {
background-color: #C4D2E9; /* Light Blue */
color: #000;
border-radius: 5px;
padding: 10px 30px;
/*padding: 10px;*/
font-family: Arial;
}
.banner, .footer {
background-color: #C4D2E9; /* Light Blue */
color: #000;
}
.sidebar2, .sidebar1{
background-color: #637896; /* Medium-Dark Blue */
color: #000;
border-radius: 5px;
}
/* CatWISE Gallery*/
.sidebar2 p img {
/* max-width and max-height dynamically adjust the size of the image */
max-width: 100%;
max-height: 100%;
margin-bottom: -4px;
}
/* Links will be stored as buttons in a button group */
.btn-group button {
background-color: #2C3531; /* Deep-Dark Blue*/
border: 1px solid #334148;
border-radius: 3px; /* rounded borders */
color: white;
padding: 10px 24px;
cursor: pointer;
/* Make the buttons stack */
display: block;
width: 100%;
}
.btn-group button:not(:last-child) {
/* Prevent double borders */
border-bottom: none;
}
/* Adjust margin on last child to compinsate type.less css*/
.btn-group {
margin-bottom: 20px;
}
/* Add a background color on hover */
.btn-group button:hover {
background-color: #D9B08C; /* Orange */
}
/* Modal: A modal is a dialog box/popup window
/* that is displayed on top of the current page. */
/* Modals are used for the CatWISE Gallery */
/* The Modal Background */
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(99, 120, 150, 0.6); /* #637896 Medium-Dark Blue */
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
width: 90%;
max-width: 1200px;
}
/* The Close Button */
.close {
color: #ED7B17; /* Bright Orange */
opacity: 0.8;
position: absolute;
top: 10px;
right: 25px;
font-size: 35px;
font-weight: bold;
transition: 0.6s ease;
}
.close:hover,
.close:focus {
color: black;
background-color: #F9C99F; /* Light Orange */
/*opacity: 1.0;*/
text-decoration: none;
cursor: pointer;
}
.Gallery_Slides {
display: none;
}
.cursor {
cursor: pointer;
}
/* Next & previous buttons */
.prev,
.next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -50px;
color: #ED7B17; /* Bright Orange */
opacity: 0.8;
font-weight: bold;
font-size: 20px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
background-color: #F9C99F; /* Light Orange */
}
/* Number text (1/3 etc) */
.numbertext {
color: #ED7B17; /* Bright Orange */
background-color: rgb(0, 0, 0, 0.1); /* Black */
border-radius: 3px 3px;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.numbertext:hover {
color: black;
background-color: #ED7B17; /* Bright Orange */
opacity: 0.8;
transition: 0.6s ease;
}
/* Text caption for each image modal in CatWISE Gallery */
.caption-container {
text-align: center;
background-color: black;
padding: 2px 16px;
color: white;
}
.demo {
opacity: 0.6;
}
.active,
.demo:hover {
opacity: 1;
}
img.hover-shadow {
transition: 0.3s;
}
.hover-shadow:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6),
0 6px 20px 0 rgba(0, 0, 0, 0.57);
}
.row > .column {
padding: 0 8px;
}
.row:after {
content: "";
display: table;
clear: both;
}
.column {
float: left;
width: 25%;
}
.preview_gallery {
background-color: white;
color: white;
}
/* Set text for entire html document */
html * {
font-family: 'Archivo', Arial;
}
/* Table Style */
#members {
border-collapse: collapse;
width: 100%;
}
#members td, #members th {
border: 1px solid #ddd;
padding: 8px;
}
#members tr:nth-child(even){background-color: #f2f2f2;}
#members tr:hover {background-color: #ddd;}
#members th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #D9B08C; /* Orange */
color: white;
}
#Team_Modal {
padding: 10px 0px;
}
</style>
<!-- JS code -->
<!-- Code for CatWISE Gallery image modals -->
<script type="text/javascript">
function openModal() {
document.getElementById('Gallery_Modal').style.display = "block";
}
function closeModal() {
document.getElementById('Gallery_Modal').style.display = "none";
}
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("Gallery_Slides");
var dots = document.getElementsByClassName("demo");
var captionText = document.getElementById("caption");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
captionText.innerHTML = dots[slideIndex-1].alt;
}
function openTeam() {
document.getElementById('Team_Modal').style.display = "block";
}
function closeTeam() {
document.getElementById('Team_Modal').style.display = "none";
}
function openScience() {
document.getElementById('Science_Modal').style.display = "block";
}
function closeScience() {
document.getElementById('Science_Modal').style.display = "none";
}
</script>
</head>
<body>
<div class="wrapper">
<div class="box banner">
<img
id="banner"
src="img/CatWISEbanner2020apr20.png"
alt="CatWISEbanner2020mar25.png"
width="100%"
height="100%">
</div>
<div class="box sidebar1" style="text-align: center">
<h3 style="text-align:center">Useful Links</h3>
<div class="btn-group">
<button onclick="window.location.href='https://irsa.ipac.caltech.edu/applications/Gator/'">
CatWISE Data Access - IRSA
(Select WISE and then WISE/NEOWISE Enhanced & Contributed Products)
</button>
<button onclick="window.location.href='https://portal.nersc.gov/project/cosmo/data/CatWISE/'">
CatWISE Data Access - NERSC
</button>
<button onclick="window.open('https://ui.adsabs.harvard.edu/abs/2020ApJS..247...69E/abstract')">
CatWISE Overview Paper
</button>
<button onclick="window.location.href='https://ui.adsabs.harvard.edu/abs/2021ApJS..253....8M/abstract'">
CatWISE2020 Performance Paper
</button>
<button onclick="openScience();">
CatWISE Science Results
</button>
<button onclick="openTeam();">
CatWISE Team
</button>
<button onclick="window.location.href='https://irsa.ipac.caltech.edu/applications/WISETiles/'">
WISE Tile Lookup Service
</button>
<button onclick="window.location.href='http://wise2.ipac.caltech.edu/docs/release/allwise/expsup/index.html'">
AllWISE Explanatory Supplement
</button>
<button onclick="window.location.href='http://unwise.me/data/neo3/unwise-coadds/fulldepth/'">
unWISE Full-Depth Coadd Images
</button>
<button onclick="window.location.href='http://unwise.me/tr_neo3/'">
unWISE Epoch Coadd Images
</button>
<button onclick="window.location.href='http://unwise.me'">
unWISE
</button>
</div>
</div>
<div class="box sidebar2">
<!-- Graphics here - CatWISE Gallery -->
<!-- TODO: Adjust style for images diplayed -->
<h3 style="text-align:center">CatWISE Gallery</h3>
<!-- CatWISE Modal Part 1: Display the link to Modal -->
<p>
<img
id="graphic_1"
src="img/CatWISE_vs_AllWISE.png"
onclick="openModal();currentSlide(1)"
class="hover-shadow cursor"
alt="CatWISE_vs_AllWISE.png">
</p>
<p>
<img
id="graphic_2"
src="img/photometric_redshift_distribution.png"
onclick="openModal();currentSlide(2)"
class="hover-shadow cursor"
alt="photometric_redshift_distribution.png">
</p>
<p>
<img
id="graphic_3"
src="img/nsrc_histo_2020_vs_Prelim.png"
onclick="openModal();currentSlide(3)"
class="hover-shadow cursor"
alt="nsrc_histo_2020_vs_Prelim.png">
</p>
</div>
<div class="box content">
<h1>CatWISE</h1>
<hr>
<div>
<p>
CatWISE is an all-sky infrared catalog at 3.4 and 4.6 microns selected from
<a href="https://www.nasa.gov/mission_pages/WISE/main/index.html">WISE</a>
and
<a href='https://www.nasa.gov/mission_pages/neowise/mission/index.html'>NEOWISE</a>
survey data.
</p>
<p>
CatWISE adapts AllWISE software to measure the sources in co-added images
created by the unWISE team from six month subsets of these data,
each representing one coverage of the inertial sky, or epoch.
The catalog includes the brightness, position, and measured motion of sources over the time spanned by the data.
</p>
<p>
The Preliminary CatWISE catalog uses data collected from 2010 to 2016, and CatWISE2020 adds two more years.
This dataset includes <strong>6x</strong> as many exposures and spans over <strong>16x</strong>
as large a time baseline as the dataset used for the AllWISE catalog,
enabling the CatWISE catalog to include fainter sources and provide far more
accurate measurements of their motions than AllWISE.
</p>
<p>
The CatWISE effort is led by the Jet Propulsion Laboratory, California Institute of Technology,
with funding from NASA's Astrophysics Data Analysis Program.
The CatWISE <a onclick="openTeam();" style="cursor:pointer">team</a> is led by Principal Investigator
Peter Eisenhardt.
</p>
</div>
</div>
<!-- CatWISE Modal Part 2: Content of Modal -->
<div id="Gallery_Modal" class="modal">
<span class="close cursor" onclick="closeModal()">
×
</span>
<div class="modal-content">
<div class="Gallery_Slides">
<div class="numbertext">
1 / 3
</div>
<img src="img/CatWISE_vs_AllWISE.png" style="width:100%" alt="CatWISE_vs_AllWISE.png">
</div>
<div class="Gallery_Slides">
<div class="numbertext">
2 / 3
</div>
<img src="img/photometric_redshift_distribution.png" style="width:100%" alt="photometric_redshift_distribution.png">
</div>
<div class="Gallery_Slides">
<div class="numbertext">
3 / 3
</div>
<img src="img/nsrc_histo_2020_vs_Prelim.png" style="width:100%" alt="nsrc_histo_2020_vs_Prelim.png">
</div>
<a class="prev" onclick="plusSlides(-1)">
❮
</a>
<a class="next" onclick="plusSlides(1)">
❯
</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div class="preview_gallery">
<div class="column">
<img
class="demo cursor"
src="img/CatWISE_vs_AllWISE.png"
style="width:100%"
onclick="currentSlide(1)"
alt="Comparison of AllWISE and CatWISE astrometric performance">
</div>
<div class="column">
<img
class="demo cursor"
src="img/photometric_redshift_distribution.png"
style="width:100%"
onclick="currentSlide(2)"
alt="Photometric Redshift Distribution">
</div>
<div class="column">
<img
class="demo cursor"
src="img/nsrc_histo_2020_vs_Prelim.png"
style="width:100%"
onclick="currentSlide(3)"
alt="CatWISE2020 and Preliminary Source Density Distribution">
</div>
</div>
</div>
</div>
<div id="Science_Modal" class="modal">
<span class="close cursor" onclick="closeScience()">
×
</span>
<div class="modal-content">
<table id="science_papers">
<tr>
<th><h3> CatWISE Science Papers </h3></th>
</tr>
<tr>
<td><a href="http://adsabs.harvard.edu/abs/2018RNAAS...2c.140M">
A Secure W2 Detection of WD 0806-661B from CatWISE </a></td>
</tr>
<tr>
<td><a href="https://ui.adsabs.harvard.edu/abs/2019ApJ...881...17M/abstract">
CWISEP J193518.59−154620.3: An Extremely Cold Brown Dwarf
in the Solar Neighborhood Discovered with CatWISE </a></td>
</tr>
<tr>
<td><a href="https://ui.adsabs.harvard.edu/abs/2020ApJ...888L..19M/abstract">
Improved Infrared Photometry and a Preliminary Parallax Measurement
for the Extremely Cold Brown Dwarf CWISEP J144606.62-231717.8 </a></td>
</tr>
<tr>
<td><a href="https://ui.adsabs.harvard.edu/abs/2020ApJ...889...74M/abstract">
Expanding the Y Dwarf Census with Spitzer Follow-up of the Coldest CatWISE
Solar Neighborhood Discoveries </a></td>
</tr>
<tr>
<td><a href="https://ui.adsabs.harvard.edu/abs/2020MNRAS.499.5302D/abstract">
Increasing the census of ultracool dwarfs in wide binary and multiple systems
using Dark Energy Survey DR1 and Gaia DR2 data </a></td>
</tr>
<tr>
<td><a href="https://ui.adsabs.harvard.edu/abs/2021RNAAS...5...18R/abstract">
Backyard Worlds: Planet 9 Discovery of an Unusual Low-mass Companion
to an M Dwarf at 80 pc </a></td>
</tr>
<tr>
<td><a href="https://ui.adsabs.harvard.edu/abs/2021ApJ...908L..51S/abstract">
A Test of the Cosmological Principle with Quasars </a></td>
</tr>
<tr>
<td><a href="https://ui.adsabs.harvard.edu/abs/2021ApJS..253....7K/abstract">
The Field Substellar Mass Function Based on the Full-sky 20 pc Census
of 525 L, T, and Y Dwarfs </a></td>
</tr>
</table>
</div>
</div>
<div id="Team_Modal" class="modal">
<span class="close cursor" onclick="closeTeam()">
×
</span>
<div class="modal-content">
<table id="members">
<tr>
<th>Name</th>
<th>Email</th>
</tr>
<tr>
<td>Peter Eisenhardt (PI; JPL)</td>
<td><a href="mailto: peter.r.eisenhardt@jpl.nasa.gov">peter.r.eisenhardt@jpl.nasa.gov</td>
</tr>
<tr>
<td>Dan Caselden (Gigamon ATR)</td>
<td><a href="mailto: dancaselden@gmail.com">dancaselden@gmail.com</a></td>
</tr>
<tr>
<td>Mike Cushing (U. of Toledo)</td>
<td><a href="mailto: michael.cushing@gmail.com">michael.cushing@gmail.com</a></td>
</tr>
<tr>
<td>Roc Cutri (IPAC)</td>
<td><a href="mailto: roc@ipac.caltech.edu">roc@ipac.caltech.edu</a></td>
</tr>
<tr>
<td>Jackie Faherty (AMNH)</td>
<td><a href="mailto: jfaherty17@gmail.com">jfaherty17@gmail.com</a></td>
</tr>
<tr>
<td>John Fowler (IPAC)</td>
<td><a href="mailto: jwfowler@caltech.edu">jwfowler@caltech.edu</a></td>
</tr>
<tr>
<td>Nelson Garcia (IPAC)</td>
<td><a href="mailto: ngarcia@ipac.caltech.edu">ngarcia@ipac.caltech.edu</a></td>
</tr>
<tr>
<td>Chris Gelino (IPAC)</td>
<td><a href="mailto: cgelino@ipac.caltech.edu">cgelino@ipac.caltech.edu</a></td>
</tr>
<tr>
<td>Anthony Gonzalez (U. Florida)</td>
<td><a href="mailto: anthonyhg@astro.ufl.edu">anthonyhg@astro.ufl.edu</a></td>
</tr>
<tr>
<td>Tom Jarrett (U. Capetown)</td>
<td><a href="mailto: jarrett@ast.uct.ac.za">jarrett@ast.uct.ac.za</a></td>
</tr>
<tr>
<td>Davy Kirkpatrick (IPAC)</td>
<td><a href="mailto: davy@ipac.caltech.edu">davy@ipac.caltech.edu</a></td>
</tr>
<tr>
<td>Renata Koontz (UC Riverside)</td>
<td><a href="mailto: rkoon001@ucr.edu">rkoon001@ucr.edu</a></td>
</tr>
<tr>
<td>Amy Mainzer (JPL)</td>
<td><a href="mailto: Amy.Mainzer@jpl.nasa.gov">Amy.Mainzer@jpl.nasa.gov</a></td>
</tr>
<tr>
<td>Elijah Marchese (UC Riverside)</td>
<td><a href="mailto: elijahmarchese1216@gmail.com">elijahmarchese1216@gmail.com</a></td>
</tr>
<tr>
<td>Federico Marocco (JPL)</td>
<td><a href="mailto: federico.marocco@jpl.nasa.gov">federico.marocco@jpl.nasa.gov</a></td>
</tr>
<tr>
<td>Aaron Meisner (NOAO)</td>
<td><a href="mailto: ameisner@lbl.gov">ameisner@lbl.gov</a></td>
</tr>
<tr>
<td>Bahram Mobasher (UC Riverside)</td>
<td><a href="mailto: mobasher@ucr.edu">mobasher@ucr.edu</a></td>
</tr>
<tr>
<td>Melany Roberts</td>
<td><a href="mailto: sigmaphi@yahoo.com">sigmaphi@yahoo.com</a></td>
</tr>
<tr>
<td>Edward Schlafly (LBL)</td>
<td><a href="mailto: eschlafly@gmail.com">eschlafly@gmail.com</a></td>
</tr>
<tr>
<td>David Schlegel (LBL)</td>
<td><a href="mailto: DJSchlegel@lbl.gov">DJSchlegel@lbl.gov</a></td>
</tr>
<tr>
<td>Daniel Stern (JPL)</td>
<td><a href="mailto: daniel.k.stern@gmail.com">daniel.k.stern@gmail.com</a></td>
</tr>
<tr>
<td>Adam Stanford (UC Davis)</td>
<td><a href="mailto: stanford@physics.ucdavis.edu">stanford@physics.ucdavis.edu</a></td>
</tr>
<tr>
<td>Harry Teplitz (IPAC)</td>
<td><a href="mailto: hit@ipac.caltech.edu">hit@ipac.caltech.edu</a></td>
</tr>
<tr>
<td>Ned Wright (UCLA)</td>
<td><a href="mailto: wright@astro.ucla.edu">wright@astro.ucla.edu</a></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>
</html>