-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
859 lines (748 loc) · 44 KB
/
index.html
File metadata and controls
859 lines (748 loc) · 44 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
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
<!DOCTYPE HTML>
<!--
Read Only by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>UO - CUSP</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon"/>
</head>
<body>
<!-- Header -->
<section id="header">
<header>
<span class="image avatar"><img src="images/cuspuo_logo.jpeg" alt="" /></span>
<h1 id="logo"><a href="#">CUSP Urban Observatory</a></h1>
<p>Better cities through imaging</p>
</header>
<nav id="nav">
<ul>
<li><a href="#one" class="active">About</a></li>
<li><a href="#people">People</a></li>
<li><a href="#research">Research</a></li>
<li><a href="#publications">Publications</a></li>
<!-- <li><a href="#media">Media</a></li> -->
<li><a href="#support">Support</a></li>
<!-- <li><a href="comingsoon.html">Partners</a></li> -->
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<footer>
<ul class="icons">
<li><a href="https://bsky.app/profile/cuspuo.bsky.social" class="icon fa-twitter" target="_blank"><span class="label">Twitter</span></a></li>
<!--<li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a></li>-->
<li><a href="https://github.com/CUSPUO" class="icon fa-github" target="_blank"><span class="label">Github</span></a></li>
<li><a href="mailto:gdobler@udel.edu" class="icon fa-envelope"><span class="label">Email</span></a></li>
</ul>
</footer>
</section>
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<div id="main">
<!-- One -->
<section id="one">
<div class="container">
<header class="major">
<h2>CUSP Urban Observatory</h2>
<p>Better cities through imaging.</p>
</header>
<p>Through the novel use of observational and analytical techniques, the Urban Observatory at the <a href="http://cusp.nyu.edu" target="_blank">Center for Urban Science + Progress</a> (CUSP-UO) at NYU Tandon studies the complex interactions between the built, natural, and human components of the city as a coherent, definable system with the goal of enhancing public well-being, city operations, and future urban plans.
With our persistent, synoptic imaging and sensing of NYC, researchers at the CUSP-UO are developing insights into energy use and stresses on the power grid, measuring the environmental impact of cities on air quality, and characterizing how urban centers affect patterns of daily life and public health. </p>
<p style="font-size:1.5em"> For more information, see the <a href="https://www.mdpi.com/2072-4292/13/8/1426" target="_blank">Urban Observatory System paper </a></p>
</div>
</section>
<!-- Two -->
<section id="people">
<div class="container">
<h3>People</h3>
<h4>CUSP-UO <i>Core Team</i></h4>
<table class=bg-white align="center">
<tr height=30px>
<td width=30% halign="center">
<img class="img-circle" src="images/foued.jpg">
</a>
<div class="p">
<b>Foued Aouchette</b><br>Lab Operations Manager<br><i>NYU-CUSP</i></div>
</td>
<td width=30% halign="center">
<a href=https://www.udel.edu/academics/colleges/biden-school/people/gdobler/><img class="img-circle" src="images/greg.jpg">
</a>
<div class="p">
<b>Gregory Dobler</b><br>Associate Professor<br><i>University of Delaware</i></div>
</td>
<td width=30% halign="center">
<a href="http://cusp.nyu.edu/people/andy-karpf/"><img class="img-circle" src="images/andy.png"></a>
<div class="p">
<b>Andy Karpf</b><br>Project Manager<br><i>NYU-CUSP</i></div>
</td>
</tr>
<tr class=bg-white height=30px>
<td width=30% halign="center">
<a href="https://engineering.nyu.edu/faculty/debra-laefer"><img class="img-circle" src="images/debra.jpg"></a>
<div class="p">
<b>Debra Laefer</b><br>Professor<br><i>NYU-CUSP</i></div>
</td>
<td width=30% halign="center">
<a><img class="img-circle" src="images/jessica.jpg"></a>
<div class="p">
<b>Jessica Salcido</b><br>PhD Student<br><i>NYU-CUSP</i></div>
</td>
<td width=30% halign="center">
<a><img class="img-circle" src="images/vinayak.jpg"></a>
<div class="p">
<b>Vinayak Saxena</b><br>Research Scientist<br><i>NYU-CUSP</i></div>
</td>
</tr>
<tr class=bg-white height=30px>
<td width=30% halign="center">
<a href="https://engineering.nyu.edu/faculty/anamika-shreevastava"><img class="img-circle" src="images/anamika.JPG"></a>
<div class="p">
<b>Anamika Shreevastava</b><br>Assistant Professor<br><i>NYU-CUSP</i></div>
</td>
</tr>
</table>
<h4><i>Affiliated Researchers</i></h4>
<table class=bg-white align="center">
<tr height=30px>
<td width=30% halign="center">
<a href=http://fbb.space><img class="img-circle" src="images/fed.png"></a>
<div class="p">
<b>Federica Bianco</b><br>Associate Professor<br><i>University of Delaware</i></div>
</td>
<td width=30% halign="center">
<a href="https://engineering.nyu.edu/faculty/maurizio-porfiri"><img class="img-circle" src="images/maurizio.png"></a>
<div class="p">
<b>Maurizio Porfiri</b><br>CUSP Director<br><i>NYU-CUSP</i></div>
</td>
<td width=30% halign="center">
<a href="https://sharmamohit.com/"><img class="img-circle" src="images/mohit.jpg"></a>
<div class="p">
<b>Mohit Sharma</b><br>Research Scientist<br></div>
</td>
</tr>
</table>
</div>
</section>
<!-- Three -->
<section id="research">
<div class="container">
<h3>Research Projects</h3>
<div class="features">
<article>
<!--<a href="images/bb.png" class="image"><img src="images/bb.png" alt="" /><br>
<img src="images/hsi.png" alt="" /></a>-->
<a href="images/bb.png" class="image"><img src="images/bb.png" alt="" /></a>
<div class="inner">
<h4>Energy</h4>
Imaging a city night skyline at different time scales we create models of energy consumption and electrical grid dynamics. Seconds-scale images provide insight into occupancy and activity patterns. Subsecond (<i>hypertemporal</i>) imaging of the same scene can reveal the phase of the electrical grid granular to individual housing units. Spectral wavelength imaging reveals the lighting technologies used in NYC (hyperspectral)<br>
<p> Projects include:<br>
Broad Band Visible imaging of energy proxies<br>
Hypertemporal imaging of energy<br>
Rebound studies through hyperspectral imaging<br>
Infrared building dynamics
</div>
</article>
<article>
<a href="#" class="image">
<!--<video width=100% src="images/plumes.gif" autoplay loop></video>-->
<img src="images/plumes.gif" rel:animated_src="images/plumes.gif"
width="360" height="360" rel:auto_play="1" rel:rubbable="1" />
<script type="text/javascript">
$$('img').each(function (img_tag) {
if (/.*\.gif/.test(img_tag.src)) {
var rub = new SuperGif({ gif: img_tag } );
rub.load(function(){
console.log('oh hey, now the gif is loaded');
});
}
});
</script>
</a>
<div class="inner">
<h4>Environment</h4>
Time-dependent visible wavelength imaging is used to identify soot plumes ejected from NYC buildings and track them as they are transported by urban winds. Hyperspectral imagery yields both the chemical content and concentration of those plumes, providing a unique method to measure air quality in NYC. Observations of chlorophyll in urban vegetation are correlated with data from in situ air quality sensors to measure the impact of urban energy use on vegetation. Nighttime imaging of the skyline is correlated with radar and volunteer data to study impacts of urban lighting on migrating bird populations.
<p> Projects include: <br>
Ecological impact of urban lighting<br>
Visible and hyperspectral plumes<br>
Vegetative health<br>
Water vapor and latent heat detection<br>
</p>
</div>
</article>
<article>
<a href="#" class="image">
<img src="images/hsi.png" alt="" /></a>
<div class="inner">
<h4>Human Factors</h4>
Using both remote and street-level imaging systems, we are quantifying patterns of life related to human mobility, determining technology adoption and usage characteristics, developing surrogate metrics for traffic safety, and measuring the public health impacts of light pollution via circadian disruption.
<p> Projects include: <br>
Light pollution and circadian phase delay<br>
Rebound studies<br>
Dependence of heating/cooling use on temperature<br>
Technology penetration<br>
Time-dependent foot traffic<br>
Surrogate traffic safety measures<br>
</p>
</div>
</article>
</div>
</div>
</section>
<!-- Six
<section id="media">
<div class="container">
<h3>Media</h3>
<div class="features">
<article>
<div style="position:relative;padding-bottom:40.25%"><iframe src=https://embed.ted.com/talks/federica_bianco_how_we_use_astrophysics_to_study_earthbound_problems" style="position:absolute;left:0;top:0;width:50%;height:70%" frameborder="0" scrolling="no" allowfullscreen></iframe></div>
Dr. Federica Bianco's TED talk is live on <a href="https://embed.ted.com/talks/federica_bianco_how_we_use_astrophysics_to_study_earthbound_problems">TED.com</a>
</article>
<article>
<a href="images/WSJ.png" class="image"><img src="images/WSJ.png" alt="" /></a>
<div class="inner"><p>
The work of the UO was featured <a href="https://www.wsj.com/articles/as-world-crowds-in-cities-become-digital-laboratories-1449850244"> on the front page of the Wall Street Journal</a> (By Robert Lee Hotz, December 11, 2015)
</p><p>
other features articles include:
<ul><li>
<a href="https://www.cpexecutive.com/post/april-issue-trend-from-the-milky-way-to-midtown-a-new-way-to-see-a-city/">From the Milky Way to Midtown, A New Way to See a City Commercial Property Executive</a> Commercial Property Executive
</li>
<li>
<a href='http://www.crainsnewyork.com/article/20141028/TECHNOLOGY/141029855/nyu-observatory-captures-pulse-of-city'>NYU Observatory Captures "Pulse of City"</a> Crain's New York Business
</li>
<li>
<a href='http://www.fastcoexist.com/3037771/a-secret-urban-observatory-is-snapping-9000-images-a-day-of-new-york-city'>A Secret Urban Observatory Is Snapping 9,000 Images A Day Of New York City</a> Fast Company
</li>
<li>
<a href='http://technical.ly/brooklyn/2014/10/28/nyu-cusp-aims-continuous-camera-lower-manhattan/'>
NYU CUSP Aims Continuous Camera at Lower Manhattan</a>
Technical.ly/Brooklyn
</li>
<li>
<a href='http://www.aps.org/publications/apsnews/201403/urban.cfm'>Urban Physics</a> American Physical Society
</li>
<li>
<a href='http://newyork.citybizlist.com/article/216854/nyu-cusp-unveils-first-of-its-kind-urban-observatory-in-downtown-brooklyn'>
NYU CUSP Unveils First-Of-Its-Kind ‘Urban Observatory’ In Downtown Brooklyn</a> City Biz List
</li>
<li>
<a href='http://www.asee-prism.org/2014/12/page/2/'>
Don’t Miss a Beat </a> PRISM
</li>
<li>
<a href= 'http://www.wsj.com/articles/theyre-tracking-when-you-turn-off-the-lights-1413854422'>They’re Tracking When You Turn Off the Lights</a>
Wall Street Journal
</li>
</ul>
</div>
</article>
</div>
</div>
</section>
-->
<!-- PUBLICATIONS -->
<section id="publications">
<div class="container">
<header class="major">
<h3>Publications</h3>
</header>
<h4 id="y2026">2026</h4>
<ul>
<p>Yu, Lan, Manz, Mary, Sharma, Mohit S, Karpf, Andreas, Bianco, Federica B and Dobler, Gregory, <i>An emperical measurement of lighting technology changeover in new york
city with deep learning</i>, Remote Sensing, 2026</p>
</ul>
<h4 id="y2023">2023</h4>
<ul>
<p>Qamar, Farid and Dobler, Gregory, <i>Atmospheric correction of vegetation reflectance with simulation-trained deep learning for ground-based hyperspectral remote
sensing</i>, Plant Methods <b>19</b>, 74, 2023</p>
</ul>
<h4 id="y2022">2022</h4>
<ul>
<p>Qamar, Farid, Sharma, Mohit S and Dobler, Gregory, <i>The impacts of air quality on vegetation health in dense urban environments: a ground-based hyperspectral imaging
approach</i>, Remote Sensing <b>14</b>, 3854, 2022</p>
<p>Dumont, Vincent, Bowen, Trevor A, Roglans, Roger, Dobler, Gregory, Sharma, Mohit S, Karpf, Andy, Bale, Stuart D, Wickenbrock, Arne, Zhivun, Elena, Kornack, Tom and
others, <i>Do cities have a unique magnetic pulse?</i>, Journal of Applied Physics <b>131</b>, 2022</p>
</ul>
<h4 id="y2021">2021</h4>
<ul>
<p>Dobler, Gregory, Bianco, Federica B, Sharma, Mohit S, Karpf, Andreas, Baur, Julien, Ghandehari, Masoud, Wurtele, Jonathan and Koonin, Steven E, <i>The urban observatory:
a multi-modal imaging platform for the study of dynamics in complex urban systems</i>, Remote sensing <b>13</b>, 1426, 2021</p>
<p>Qamar, Farid, Gómez-Fonseca, Angie S and Dobler, Gregory, <i>The effects of atmospheric modeling covariance on ground-based hyperspectral measurements of surface
reflectance</i>, 1-5, 2021</p>
<p>Dobler, Gregory, Vani, Jordan and Dam, Trang Tran Linh, <i>Patterns of urban foot traffic dynamics</i>, Computers, Environment and Urban Systems <b>89</b>, 101674,
2021</p>
<p>Arjunan, Pandarasamy, Dobler, Gregory, Lee, Kyungmin, Miller, Clayton, Biljecki, Filip and Poolla, Kameshwar, <i>Operational characteristics of residential air
conditioners with temporally granular remote thermographic imaging</i>, 184-187, 2021</p>
</ul>
<h4 id="y2020">2020</h4>
<ul>
<p>Qamar, Farid and Dobler, Gregory, <i>Pixel-wise classification of high-resolution ground-based urban hyperspectral images with convolutional neural networks</i>, Remote
Sensing <b>12</b>, 2540, 2020</p>
</ul>
<h4 id="y2019">2019</h4>
<ul>
<p>Li, Chenge, Dobler, Gregory, Feng, Xin and Wang, Yao, <i>Tracknet: simultaneous object detection and tracking and its application in traffic video analysis</i>, arXiv
preprint arXiv:1902.01466, 2019</p>
<p>Bowen, Trevor A, Zhivun, Elena, Wickenbrock, Arne, Dumont, Vincent, Bale, Stuart D, Pankow, Christopher, Dobler, Gregory, Wurtele, Jonathan S and Budker, Dmitry, <i>A
network of magnetometers for multi-scale urban science and informatics</i>, Geoscientific Instrumentation, Methods and Data Systems <b>8</b>, 129-138, 2019</p>
</ul>
<h4 id="y2018">2018</h4>
<ul>
<p>Baur, Julien, Dobler, Gregory, Bianco, Federica, Sharma, Mohit and Karpf, Andreas, <i>Persistent hyperspectral observations of the urban lightscape</i>, 983-987, 2018</p>
</ul>
<h4 id="y2017">2017</h4>
<ul>
<p>Ghandehari, Masoud, Aghamohamadnia, Milad, Dobler, Gregory, Karpf, Andreas, Buckland, Kerry, Qian, Jun and Koonin, Steven, <a
href="https://www.nature.com/articles/s41598-017-02390-z" target="_blank"><i>Mapping refrigerant gases in the new york city skyline</i></a>, Scientific reports <b>7</b>,
2735, 2017</p>
<p>Johnson, Nicholas E, Ianiuk, Olga, Cazap, Daniel, Liu, Linglan, Starobin, Daniel, Dobler, Gregory and Ghandehari, Masoud, <a
href="https://www.sciencedirect.com/science/article/pii/S0956053X17300375" target="_blank"><i>Patterns of waste generation: a gradient boosting model for short-term waste
prediction in new york city</i></a>, Waste Management <b>62</b>, 3-11, 2017</p>
<p>Bowen, TA, Zhivun, E, Wickenbrock, A, Dumont, V, Bale, SD, Pankow, C, Dobler, G, Wurtele, JS and Budker, D, <a href="https://arxiv.org/abs/1702.01468"
target="_blank"><i>Network of sensitive magnetometers for urban studies</i></a>, arXiv preprint arXiv:1702.01468, 2017</p>
</ul>
<h4 id="y2016">2016</h4>
<ul>
<p>Li, C, Chiang, A, Dobler, Gregory, Wang, Y, Xie, Kun, Ozbay, Kaan, Ghandehari, Masoud, Zhou, J and Wang, D, <a
href="http://ieeexplore.ieee.org/abstract/document/7738075/" target="_blank"><i>Robust vehicle tracking for urban traffic videos at intersections</i></a>, 207-213, 2016</p>
<p>Xie, Kun, Li, Chenge, Ozbay, Kaan, Dobler, Gregory, Yang, Hong, Chiang, An-Ti and Ghandehari, Masoud, <a href="http://ieeexplore.ieee.org/abstract/document/7795980/"
target="_blank"><i>Development of a comprehensive framework for video-based safety assessment</i></a>, 2638-2643, 2016</p>
<p>Dobler, Gregory, Ghandehari, Masoud, Koonin, Steven E and Sharma, Mohit S, <a href="http://www.mdpi.com/1424-8220/16/12/2047/htm" target="_blank"><i>A hyperspectral
survey of new york city lighting technology</i></a>, Sensors <b>16</b>, 2047, 2016</p>
<p>Ghandehari, Masoud, Aghamohamadnia, Milad, Dobler, Gregory, Karpf, Andreas, Cavalcante, Camila, Buckland, Kerry, Qian, Jun and Koonin, Steven, <a
href="http://ieeexplore.ieee.org/abstract/document/8071735/" target="_blank"><i>Ground based hyperspectral imaging of urban emissions</i></a>, 1-3, 2016</p>
<p>Bianco, Federica B, Koonin, Steven E, Mydlarz, Charlie and Sharma, Mohit S, <a href="https://arxiv.org/abs/1611.04633" target="_blank"><i>Hypertemporal imaging of nyc
grid dynamics: short paper</i></a>, 61-64, 2016</p>
</ul>
<h4 id="y2015">2015</h4>
<ul>
<p>Dobler, Gregory, Ghandehari, Masoud, Koonin, Steven E, Nazari, Rouzbeh, Patrinos, Aristides, Sharma, Mohit S, Tafvizi, Arya, Vo, Huy T and Wurtele, Jonathan S, <a
href="https://www.sciencedirect.com/science/article/pii/S0306437915001167" target="_blank"><i>Dynamics of the urban lightscape</i></a>, Information Systems <b>54</b>,
115-126, 2015</p>
</ul>
<h4 id="y2014">2014</h4>
<ul>
<p>Koonin, Steven E, Dobler, Gregory and Wurtele, Jonathan S, <a href="https://www.aps.org/publications/apsnews/201403/urban.cfm" target="_blank"><i>Urban physics</i></a>,
APS News <b>23</b>, 2014</p>
</ul>
</div>
</section>
<!-- Five -->
<section id="support">
<div class="container">
<header class="major">
<h3>Support</h3>
</header>
<div class="features">
<article>
<a href="https://www.jsmf.org/" class="image" target="_blank"><img src="images/mcdowellLogo.png" alt="" /></a>
<div class="inner">
Dr. G. Dobler research is in part supported by the <a href="https://www.jsmf.org/">James S. McDonnell Fundation </a>: Dr. Dobler is the recipient of a 2015 <a href="https://www.jsmf.org/grants/20150009/">James S. McDonnell Complex Systems Scholar Award </a> to pursue the study of New York City as a complex system using imaging.
</div>
</article>
<article>
<a href="https://arpa-e.energy.gov" class="image" target="_blank"><img src="images/arpaeLogo.png" alt="" /></a>
<div class="inner">
Energy studies at the UO are supported by <a href="https://arpa-e.energy.gov/?q=arpa-e-programs/ideas">DOE ARPA-E IDEAS Grant</a> A18-0050-001<br> PIs :Bianco, Dobler <br>
The IDEAS (Innovative Development in Energy-Related Applied Science) program provides a continuing opportunity for the rapid support of early-stage applied research to explore pioneering new concepts with the potential for transformational and disruptive changes in energy technology
</div>
</article>
<article>
<a href="http://leonlevyfoundation.org/" class="image" target="_blank"><img src="images/llfLogo.png" alt="" bg="#333333" /></a>
<div class="inner">
Deployment of broad band visible instrumentation is in part supported by the <a href="http://leonlevyfoundation.org/">Leon Levy Foundation</a> awarded to the CUSP-UO and <a href="http://www.nycaudubon.org/">NYC Audubon</a>.
</div>
</article>
</div>
</div>
</section>
<!-- Seven -->
<section id="contact">
<div class="container">
<h3>Contact the UO</h3>
<p></p>
<form method="post" action="https://formspree.io/gdobler@udel.edu">
<div class="row uniform">
<div class="6u 12u(xsmall)"><input type="text" name="name" id="name" placeholder="Name" /></div>
<div class="6u 12u(xsmall)"><input type="email" name="email" id="email" placeholder="Email" /></div>
</div>
<div class="row uniform">
<div class="12u"><input type="text" name="subject" id="subject" placeholder="Subject" /></div>
</div>
<div class="row uniform">
<div class="12u"><textarea name="message" id="message" placeholder="Message" rows="6"></textarea></div>
</div>
<div class="row uniform">
<div class="12u">
<ul class="actions">
<li><input type="submit" class="special" value="Send Message" /></li>
<li><input type="reset" value="Reset Form" /></li>
</ul>
</div>
</div>
</form>
</div>
</section>
<!-- Five -->
<!--
<section id="five">
<div class="container">
<h3>Elements</h3>
<section>
<h4>Text</h4>
<p>This is <b>bold</b> and this is <strong>strong</strong>. This is <i>italic</i> and this is <em>emphasized</em>.
This is <sup>superscript</sup> text and this is <sub>subscript</sub> text.
This is <u>underlined</u> and this is code: <code>for (;;) { ... }</code>. Finally, <a href="#">this is a link</a>.</p>
<hr />
<header>
<h4>Heading with a Subtitle</h4>
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
</header>
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
<header>
<h5>Heading with a Subtitle</h5>
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
</header>
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
<hr />
<h2>Heading Level 2</h2>
<h3>Heading Level 3</h3>
<h4>Heading Level 4</h4>
<h5>Heading Level 5</h5>
<h6>Heading Level 6</h6>
<hr />
<h5>Blockquote</h5>
<blockquote>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan faucibus. Vestibulum ante ipsum primis in faucibus lorem ipsum dolor sit amet nullam adipiscing eu felis.</blockquote>
<h5>Preformatted</h5>
<pre><code>i = 0;
while (!deck.isInOrder()) {
print 'Iteration ' + i;
deck.shuffle();
i++;
}
print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
</section>
<section>
<h4>Lists</h4>
<div class="row">
<div class="6u 12u(xsmall)">
<h5>Unordered</h5>
<ul>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Sagittis adipiscing lorem eleifend.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ul>
<h5>Alternate</h5>
<ul class="alt">
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Sagittis adipiscing lorem eleifend.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ul>
</div>
<div class="6u 12u(xsmall)">
<h5>Ordered</h5>
<ol>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Etiam vel felis at lorem sed viverra.</li>
<li>Felis enim feugiat dolore viverra.</li>
<li>Dolor pulvinar etiam magna etiam.</li>
<li>Etiam vel felis at lorem sed viverra.</li>
<li>Felis enim feugiat dolore viverra.</li>
</ol>
<h5>Icons</h5>
<ul class="icons">
<li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon fa-github"><span class="label">Github</span></a></li>
<li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a></li>
<li><a href="#" class="icon fa-tumblr"><span class="label">Tumblr</span></a></li>
</ul>
</div>
</div>
<h5>Actions</h5>
<ul class="actions">
<li><a href="#" class="button special">Default</a></li>
<li><a href="#" class="button">Default</a></li>
<li><a href="#" class="button alt">Default</a></li>
</ul>
<ul class="actions small">
<li><a href="#" class="button special small">Small</a></li>
<li><a href="#" class="button small">Small</a></li>
<li><a href="#" class="button alt small">Small</a></li>
</ul>
<div class="row">
<div class="3u 6u(medium) 12u$(xsmall)">
<ul class="actions vertical">
<li><a href="#" class="button special">Default</a></li>
<li><a href="#" class="button">Default</a></li>
<li><a href="#" class="button alt">Default</a></li>
</ul>
</div>
<div class="3u 6u$(medium) 12u$(xsmall)">
<ul class="actions vertical small">
<li><a href="#" class="button special small">Small</a></li>
<li><a href="#" class="button small">Small</a></li>
<li><a href="#" class="button alt small">Small</a></li>
</ul>
</div>
<div class="3u 6u(medium) 12u$(xsmall)">
<ul class="actions vertical">
<li><a href="#" class="button special fit">Default</a></li>
<li><a href="#" class="button fit">Default</a></li>
<li><a href="#" class="button alt fit">Default</a></li>
</ul>
</div>
<div class="3u 6u$(medium) 12u$(xsmall)">
<ul class="actions vertical small">
<li><a href="#" class="button special small fit">Small</a></li>
<li><a href="#" class="button small fit">Small</a></li>
<li><a href="#" class="button alt small fit">Small</a></li>
</ul>
</div>
</div>
</section>
<section>
<h4>Table</h4>
<h5>Default</h5>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item One</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Two</td>
<td>Vis ac commodo adipiscing arcu aliquet.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Three</td>
<td> Morbi faucibus arcu accumsan lorem.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Four</td>
<td>Vitae integer tempus condimentum.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Five</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td>100.00</td>
</tr>
</tfoot>
</table>
</div>
<h5>Alternate</h5>
<div class="table-wrapper">
<table class="alt">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Item One</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Two</td>
<td>Vis ac commodo adipiscing arcu aliquet.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Three</td>
<td> Morbi faucibus arcu accumsan lorem.</td>
<td>29.99</td>
</tr>
<tr>
<td>Item Four</td>
<td>Vitae integer tempus condimentum.</td>
<td>19.99</td>
</tr>
<tr>
<td>Item Five</td>
<td>Ante turpis integer aliquet porttitor.</td>
<td>29.99</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"></td>
<td>100.00</td>
</tr>
</tfoot>
</table>
</div>
</section>
<section>
<h4>Buttons</h4>
<ul class="actions">
<li><a href="#" class="button special">Special</a></li>
<li><a href="#" class="button">Default</a></li>
<li><a href="#" class="button alt">Alternate</a></li>
</ul>
<ul class="actions">
<li><a href="#" class="button special big">Big</a></li>
<li><a href="#" class="button">Default</a></li>
<li><a href="#" class="button alt small">Small</a></li>
</ul>
<ul class="actions fit">
<li><a href="#" class="button special fit">Fit</a></li>
<li><a href="#" class="button fit">Fit</a></li>
<li><a href="#" class="button alt fit">Fit</a></li>
</ul>
<ul class="actions fit small">
<li><a href="#" class="button special fit small">Fit + Small</a></li>
<li><a href="#" class="button fit small">Fit + Small</a></li>
<li><a href="#" class="button alt fit small">Fit + Small</a></li>
</ul>
<ul class="actions">
<li><a href="#" class="button special icon fa-download">Icon</a></li>
<li><a href="#" class="button icon fa-download">Icon</a></li>
<li><a href="#" class="button alt icon fa-check">Icon</a></li>
</ul>
<ul class="actions">
<li><span class="button special disabled">Special</span></li>
<li><span class="button disabled">Default</span></li>
<li><span class="button alt disabled">Alternate</span></li>
</ul>
</section>
<section>
<h4>Form</h4>
<form method="post" action="#">
<div class="row uniform">
<div class="6u 12u(xsmall)">
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
</div>
<div class="6u 12u(xsmall)">
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
</div>
</div>
<div class="row uniform">
<div class="12u">
<div class="select-wrapper">
<select name="demo-category" id="demo-category">
<option value="">- Category -</option>
<option value="1">Manufacturing</option>
<option value="1">Shipping</option>
<option value="1">Administration</option>
<option value="1">Human Resources</option>
</select>
</div>
</div>
</div>
<div class="row uniform">
<div class="4u 12u(medium)">
<input type="radio" id="demo-priority-low" name="demo-priority" checked>
<label for="demo-priority-low">Low Priority</label>
</div>
<div class="4u 12u(medium)">
<input type="radio" id="demo-priority-normal" name="demo-priority">
<label for="demo-priority-normal">Normal Priority</label>
</div>
<div class="4u 12u(medium)">
<input type="radio" id="demo-priority-high" name="demo-priority">
<label for="demo-priority-high">High Priority</label>
</div>
</div>
<div class="row uniform">
<div class="6u 12u(medium)">
<input type="checkbox" id="demo-copy" name="demo-copy">
<label for="demo-copy">Email me a copy of this message</label>
</div>
<div class="6u 12u(medium)">
<input type="checkbox" id="demo-human" name="demo-human" checked>
<label for="demo-human">I am a human and not a robot</label>
</div>
</div>
<div class="row uniform">
<div class="12u">
<textarea name="demo-message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
</div>
</div>
<div class="row uniform">
<div class="12u">
<ul class="actions">
<li><input type="submit" value="Send Message" /></li>
<li><input type="reset" value="Reset" class="alt" /></li>
</ul>
</div>
</div>
</form>
</section>
<section>
<h4>Image</h4>
<h5>Fit</h5>
<span class="image fit"><img src="images/skyline.jpeg" alt="" /></span>
<div class="box alt">
<div class="row 50% uniform">
<div class="4u"><span class="image fit"><img src="images/pic01.jpg" alt="" /></span></div>
<div class="4u"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
<div class="4u"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
</div>
<div class="row 50% uniform">
<div class="4u"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
<div class="4u"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
<div class="4u"><span class="image fit"><img src="images/pic01.jpg" alt="" /></span></div>
</div>
<div class="row 50% uniform">
<div class="4u"><span class="image fit"><img src="images/pic03.jpg" alt="" /></span></div>
<div class="4u"><span class="image fit"><img src="images/pic01.jpg" alt="" /></span></div>
<div class="4u"><span class="image fit"><img src="images/pic02.jpg" alt="" /></span></div>
</div>
</div>
<h5>Left & Right</h5>
<p><span class="image left"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
<p><span class="image right"><img src="images/avatar.jpg" alt="" /></span>Fringilla nisl. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
</section>
</div>
</section>
-->
</div>
<!-- Footer -->
<section id="footer">
<div class="container">
<ul class="copyright">
<li>© CUSPUO. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollzer.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>