-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhogg_cv.tex
2279 lines (2258 loc) · 113 KB
/
hogg_cv.tex
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
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% this is a LaTeX file
%----------------------------------------------------------------------
% name:
% hogg_cv.tex
% purpose:
% Hogg's CV and list of publications
% to-do:
% - Add Wilson Gregory arXiv paper to unrefereed?
% - Convert all \ads{} to \doi{} -- the DOIs should exist now.
% - Is the ``what constrains'' paper published anywhere?
% - Should I make an \acronym{} macro that uses \small? I should.
% comments:
% - Don't list full author lists of 10 or more.
% - If you want to include/remove the date, see \renewcommand{\today}.
% - Swap 1/0 flag to include invited talks.
%----------------------------------------------------------------------
\documentclass[10pt,letterpaper]{article}
\usepackage{fancyhdr, afterpage}
\usepackage{color, hyperref}
\usepackage{ifthen}
% put in the date -- or not
\renewcommand{\today}{2025 January 30}
% hypertex insanity
\definecolor{linkcolor}{rgb}{0,0,0.33}
\definecolor{grey}{rgb}{0.5,0.5,0.5}
\hypersetup{
colorlinks=true, % false: boxed links; true: colored links
linkcolor=grey, % color of internal links
citecolor=linkcolor, % color of links to bibliography
filecolor=black, % color of file links
urlcolor=linkcolor % color of external links
}
% repeated text formatting
\newcommand{\acronym}[1]{{\small{#1}}}
\newcommand{\foreign}[1]{\textsl{#1}}
\newcommand{\etal}{\foreign{et~al.}}
\newcommand{\project}[1]{\textsl{#1}}
\newcommand{\usd}[1]{{#1}\,\acronym{USD}}
\newcommand{\eur}[1]{{#1}\,\acronym{EUR}}
\newcommand{\grantnumber}[2]{{\footnotesize{#1}}; #2,~\acronym{PI}}
% literature links--use doi if you can
\newcommand{\doi}[2]{\href{http://dx.doi.org/#1}{{#2}}}
\newcommand{\ads}[2]{\href{http://adsabs.harvard.edu/abs/#1}{{#2}}}
\newcommand{\isbn}[1]{{\footnotesize(\acronym{ISBN:}{#1})}}
\newcommand{\arxiv}[2]{\href{http://arxiv.org/abs/#1}{{#2}\ (\texttt{arXiv:#1})}}
% define de-emphasize commands
\newcommand{\deemph}[1]{\textcolor{grey}{\footnotesize{#1}}}
\newcommand{\pubnumber}[1]{\deemph{{#1}.}}
% define heading command SERIOUS HACKING HERE
\newcommand{\hoggheading}[1]{\addvspace{1.5ex}\pagebreak[3]%
\par\textbf{#1}\nopagebreak%
\afterpage{\markboth{David W. Hogg, curriculum vitae continued: \textbf{#1}}{}}%
\nopagebreak\\*[0.5ex]\nopagebreak}%
% custom list characteristics
\newcounter{refpubnum}
\newcommand{\hogglist}{%
\rightmargin=0in
\leftmargin=1.2em
\topsep=0ex
\partopsep=0pt
\itemsep=0.2ex
\parsep=0pt
\itemindent=-1.0\leftmargin
\listparindent=0.0\leftmargin
\settowidth{\labelsep}{~}
\usecounter{refpubnum}
}
\newcommand{\note}[1]{{\small\par{#1}}}
% Margins and spaces
\raggedright
\setlength{\textheight}{9.0in}
\setlength{\topmargin}{-0.5in}
\addtolength{\textheight}{-2.0\topmargin}
\setlength{\headsep}{0.5\baselineskip}
\setlength{\headheight}{1.0\baselineskip}
\addtolength{\textheight}{-\headsep}
\addtolength{\textheight}{-\headheight}
\setlength{\textwidth}{6.5in}
\setlength{\oddsidemargin}{0.5in}
\addtolength{\textwidth}{-2.0\oddsidemargin}
\setlength{\parindent}{0in}
\setlength{\parskip}{0ex}
% Headings and footing
\renewcommand{\headrulewidth}{0pt}
\pagestyle{fancy}
\lhead{\deemph{\leftmark}}
\rhead{\deemph{\thepage}}
\cfoot{}
\begin{document}\thispagestyle{empty}\sloppy\sloppypar\raggedbottom\frenchspacing
\setlength{\tabcolsep}{0em}
\begin{tabular*}{\textwidth}{l @{\extracolsep{\fill}} l}
\textbf{\Large David W. Hogg} & \deemph{\today} \\[1ex]
\texttt{david.hogg@nyu.edu} & \url{http://cosmo.nyu.edu/hogg/}\\[1ex]
Center for Cosmology and Particle Physics & \deemph{also:} \\
Department of Physics & Center for Data Science \\
New York University & New York University \\
726 Broadway, room 1005 & 60 Fifth Ave, 7th floor \\
New York, NY 10003, USA & New York, NY 10011, USA \\[1ex]
\deemph{also:} & \deemph{also:} \\
Max-Planck-Institut f\"ur Astronomie & Flatiron Institute \\
K\"onigstuhl 17 & 162 Fifth Ave \\
69117 Heidelberg, Germany & New York, NY 10010, USA
\end{tabular*}\vspace{1ex} % HACK
\hoggheading{Education}
\begin{list}{}{\hogglist}
\item
PhD 1998, Physics, California Institute of Technology.
\item
SB 1992 (Physics), Massachusetts Institute of Technology.
\end{list}
\hoggheading{Positions}
\begin{list}{}{\hogglist}
\item
\deemph{current:} Professor of Physics and Data Science, New York University, 2014--present.
\item
Associate Professor of Physics with tenure, New York University, 2007--2014.
\item
Assistant Professor of Physics, New York University, 2001--2007.
\item
Long-term member, Institute for Advanced Study, 1997--2001.
\end{list}
\hoggheading{Short-term and part-time positions}
% reverse chronological by END date.
\begin{list}{}{\hogglist}
\item
\deemph{current:} Senior Research Scientist, Center for Computational Astrophysics,
Flatiron Institute, New York, 2023--present.
\item
\deemph{current:} Adjunct Scientist, Max-Planck-Institut f\"ur Astronomie,
Heidelberg, Germany, 2024--present.
\item
Adjunct Senior Staff Scientist, Max-Planck-Institut f\"ur Astronomie,
Heidelberg, Germany, 2012--2024
\item
Group Leader, Astronomical Data Group, Center for Computational Astrophysics,
Flatiron Institute, New York, 2017--2023.
\item
Consultant, Flatiron Institute, New York, 2016--2017.
\item
Consultant, Simons Center for Data Analysis,
Simons Foundation, New York, 2015--2016.
\item
Visiting Scientist, Max-Planck-Institut f\"ur Astronomie,
Heidelberg, Germany, 2006--2012.
\item
Visiting Professor, Department of Astronomy and Astrophysics, Columbia
University, 2008
\item
Consultant, Google Inc., 2008.
\item
Scholar in Residence, \project{Spitzer} Science Center, California
Institute of Technology, 2006
\item
Visiting Professor, Department of Physics, Massachusetts Institute of
Technology, 2005
\item
Lecturer (part-time), Department of Physics, Princeton University,
1998--2001.
%% \item
%% TA (Instructor), Department of Physics, California Institute of
%% Technology, 1993--1997.
%%% \item
%%% Technical consultant for the movie \textit{Contact}, Warner Bros,
%%% 1996.
%% \item
%% RA, Canadian Institute for Theoretical Astrophysics, summers 1990,
%% 1991, 1992.
%% % \item
%% % Teacher, MLK Jr Elementary School after-school program, Cambridge MA,
%% % 1990--1992.
%% \item
%% RA, Epistemology and Learning group, MIT Media Lab, 1989--1992.
%% %%% \item
%% %%% Assistant teacher, Boston Museum of Science, 1990--1991.
\end{list}
\hoggheading{Administrative roles}
% reverse chronological by END date.
\begin{list}{}{\hogglist}
\item
Executive Director, \project{Moore--Sloan Data Science Environment at \acronym{NYU}}, 2013--2015.
\item
Deputy Director, New York University Center for Data Science, 2014--2015.
\item
Director of Undergraduate Studies, Department of Physics, New York University, 2008--2015.
\end{list}
\hoggheading{Service}\nopagebreak\begin{list}{}{\hogglist}
% reverse chronological by END date.
\item
Chair, \project{Sloan Digital Sky Survey \acronym{V}} Advisory Council,
2023--present.
\item
\project{Terra Hunting Experiment} Board,
2019--present.
\item
\project{Sloan Digital Sky Survey \acronym{V}} Technical Advisory Group,
2017--present.
\item
\project{Sloan Digital Sky Survey \acronym{IV}} Collaboration Council,
2013--2022.
\item
\project{Spitzer} Science Center Oversight Committee,
2008--2019.
\item
Panel reviewer for the
National Science Foundation (2019).
\item
Founder and co-organizer of hands-on research and education workshops, including
\textsl{\acronym{AAS} Hack Together Day} (annually in January, 2013--2020),
\textsl{AstroHackWeek} (five events, 2014--2017, 2020)
\textsl{Preparing for TESS} (2018),
\textsl{Telluric Line Hack Week} (2019),
and the \textsl{Gaia Sprint} (six week-long events, 2016--2022).
\item
White House appointee to the US national Astronomy and Astrophysics Advisory Committee,
2014--2017.
\item
\project{\acronym{NASA} Extragalactic Database} Users Committee,
2006--2013.
\item
\project{Sloan Digital Sky Survey \acronym{III}} Collaboration Council,
2008--2011.
\item
Panel Chair, \project{Spitzer Space Telescope} Time Allocation Committee,
2005.
\item
\project{Sloan Digital Sky Survey} Collaboration Council,
1999--2004.
\item
Leader, \project{Sloan Digital Sky Survey} Calibration Task Force,
2000--2003.
\item
National Optical Astronomy Observatories Time Allocation Committee,
2000--2002.
\item
\project{Hubble Space Telescope} Time Allocation Committee,
1999.
\end{list}
\hoggheading{Honors}
\begin{list}{}{\hogglist}
\item
Neural Information Processing Systems Machine Learning and the Physical Sciences Workshop ``Best `AI for Physics' Paper Award'' (first author Gregory,~W.~G.), 2024.
\item
International Conference on Machine Learning Latinx in AI Workshop ``Best Poster Award'' (first author Tardugno~Poleo,~V.), 2024.
\item
New York University ``Golden Dozen'' Teaching Award, 2004.
\item
Princeton University Engineering Council Teaching Award, 2000.
\item
Caltech Undergraduate Teaching Award, Associated Students of Caltech, 1996.
\item
J. S. Stemple Memorial Prize, Caltech, for Physics PhD oral candidacy
exam, 1995.
%%% \item
%%% Caltech Distinguished Graduate Student Lecture, 1995.
\item
Phi Beta Kappa, 1992. Sigma Xi, 1992.
\item
Award of merit, International Physics Olympiad, Bad Ischl, Austria, 1988.
%%% \item
%%% First place, University of Waterloo Sir Isaac Newton Physics Contest,
%%% 1988.
\end{list}
\hoggheading{Grants}
%%% reverse order by expiration date
%% ADD LEISTEDT SIMONS AND LEISTEDT SAO EINSTEIN FELLOWSHIP and POPE SAGAN (see email from CA on March 4)
%% ADD PEARSON AND KSF AND THAVISHA AND BEANE (?) GRANTS.
\begin{list}{}{\hogglist}
\item
\acronym{NASA} \project{\acronym{TESS}} Guest Investigator Grant (\grantnumber{TBA}{Angus}),
\textit{Measuring long rotation periods from \project{\acronym{TESS}}'s short light curves},
\usd{50,000}, 2019--2021.
\item
\acronym{NASA} \project{\acronym{TESS}} Guest Investigator Grant (\grantnumber{TBA}{Hogg}),
\textit{Halo Photometry of Naked-Eye Stars with \project{\acronym{TESS}}},
\usd{50,000}, 2019--2021.
\item
\acronym{NASA} Astrophysics Data Analysis Grant
(\grantnumber{80NSSC19K0533}{Bean}),
\textit{Improving the sensitivity of radial velocity spectrographs with
data-driven techniques},
\usd{308,326}, 2019--2021.
\item
\acronym{NSF} Cyberinfrastructure for Emerging Science and Engineering Research Grant
(\grantnumber{OAC-1841594}{Hogg}),
\textit{Collaborative Research: Community Planning for Scalable Cyberinfrastructure to Support Multi-Messenger Astrophysics},
\usd{36,469}, 2018--2019.
\item
\acronym{NSF} Astronomy and Astrophysics Research Grant
(\grantnumber{AST-1517237}{Hogg}),
\textit{New Probabilistic Methods for Observational Cosmology},
\usd{328,312}, 2015--2019.
\item
Moore Foundation and Sloan Foundation Joint Grant
(LeCun,~\acronym{PI}),
\textit{The Moore-Sloan Data Science Environment at \acronym{NYU}},
\usd{12,600,000} (approx), 2013--2018.
\item
\acronym{NASA} \project{\acronym{K2}} Guest Observer grant
(\grantnumber{NNX16AC70G}{Hogg}),
\textit{Ultra-precise photometry in crowded fields: A self-calibration approach},
\usd{100,000}, 2016--2017.
\item
\acronym{NASA} Astrophysics Data Analysis Grant
(\grantnumber{NNX12AI50G}{Hogg}),
\textit{The Lives and Deaths of Planets and Stars in the Value-Added UV Photon Catalog},
\usd{473,705}, 2012--2017.
\item
\acronym{NSF} Cyber-Enabled Discovery Type I Grant
(\grantnumber{IIS-1124794}{Hogg}),
\textit{A Unified Probabilistic Model of Astronomical Imaging,}
\usd{675,000}, 2011--2016.
\item
\acronym{NASA} \project{Hubble Space Telescope} Archival Resarch grant
(\grantnumber{AR-13250}{Hogg}),
\textit{Probabilistic Self-Calibration of the \acronym{WFC3} IR Channel},
\usd{119,988}, 2013--2016.
\item
\acronym{NSF} Astronomy and Astrophysics Research Grant
(\grantnumber{AST-0908357}{Hogg}),
\textit{Dynamical models from kinematic data:\ The Milky Way Disk and Halo,}
\usd{147,000}, 2009--2011.
\item
Alexander von Humboldt Foundation Research Fellowship
(Hogg,~\acronym{PI}),
\textit{Cosmology with the proper motions of stars,}
\eur{32,000} (approx), 2008--2011.
\item
\acronym{NASA} Astrophysics Data Analysis Grant
(\grantnumber{NNX08AJ48G}{Hogg}),
\textit{Multi-wavelength astrometric catalog built from \acronym{NASA} data,}
\usd{277,415}, 2008--2011.
\item
Amazon Web Services Research Grant
(Koposov,~\acronym{PI})
\textit{Searching for tidal streams in the Milky Way Halo,}
40,000~\acronym{CPU}-hours (approx), 2009--2010.
\item
\acronym{NASA} \project{Spitzer Space Telescope} General Observer Grant
(\project{Spitzer} programs {\footnotesize{50568}} and {\footnotesize{50569}}; Schiminovich,~\acronym{PI}),
\textit{\acronym{S5}:\ \project{Spitzer}--\project{\acronym{SDSS}} Statistical Spectroscopic Survey,}
\usd{350,000} (approx), 2008--2010.
\item
Google Research Grant
(Blanton,~\acronym{PI}),
\textit{Beautiful and correct \project{\acronym{SDSS}} images for \project{Google Sky},}
\usd{86,000}, 2008--2009.
\item
\acronym{NASA} Long-Term Space Astrophysics Grant
(\grantnumber{NAG5-11669}{Hogg}),
\textit{Tools for Galaxy Astrophysics in the Era of the
\project{Space Infrared Telescope Facility,}}
\usd{498,770}, 2002--2007.
\item
\acronym{NSF} Information Technology Research Grant
(\grantnumber{AST-0428465}{Hogg}),
\textit{Automated Astrometry for Time-Domain and Distributed
Astrophysics,}
\usd{504,140}, 2004--2007.
\item
\acronym{NASA} \project{Spitzer Space Telescope} General Observer Grant
(\project{Spitzer} program {\footnotesize{20120}}; Hogg,~\acronym{PI}),
\textit{A search for \acronym{PAH} emission in extremely low luminosity galaxies,}
\usd{59,243}, 2005--2007.
\item
\acronym{NASA} \project{Galaxy Evolution Explorer} Archival Research Grant
(Blanton,~\acronym{PI}),
\textit{K-corrections for \acronym{GALEX},}
\usd{42,500}, 2004--2005.
\item
\acronym{NASA} \project{Hubble Space Telescope} Archival Research Grant
(Blanton,~\acronym{PI}),
\textit{Comparing the ACS Ultra Deep Field to Low Redshift Galaxy Observations,}
\usd{70,000}, 2003--2004.
\item
\acronym{NSF} Group Grant
(\grantnumber{PHY-0101738}{Farrar}),
\textit{Theoretical Particle Physics, Astrophysics and Cosmology,}
\usd{686,000} (+\usd{16,000} in \acronym{REU} supplement), 2001--2004.
\item
\acronym{NASA} Hubble Postdoctoral Fellowship, 1997--2000.
% \item
% Kingsley Foundation Fellowship, Caltech, 1995--1997.
\item
\acronym{NSF} Graduate Fellowship, 1992--1995.
\end{list}
\hoggheading{PhDs supervised}
\begin{list}{}{\hogglist}
\item
Morad~Masjedi, 2007, \textit{Massive galaxy merging and cosmogony,}
PhD thesis, New York University.
\item
Dustin~Lang, 2009, \textit{\project{Astrometry.net}:\ Automatic recognition and calibration of astronomical images},
PhD thesis, University of Toronto (co-supervised by Sam~Roweis at Toronto).
\item
Ronin~Wu, 2010, \textit{Tracing star formation in the mid-infrared},
PhD thesis, New York University.
\item
Jo~Bovy, 2011, \textit{Dynamical inference in the Milky Way},
PhD thesis, New York University.
\item
Adi~Zolotov, 2011, \textit{The dual origin of stellar halos},
PhD thesis, New York University (co-supervised by Beth~Willman at Haverford).
\item
Tao~Jiang, 2012, \textit{Galaxy mergers and galaxy evolution},
PhD thesis, New York University.
\item
Fengji~Hou, 2014, \textit{Bayesian inference on stellar radial velocity data},
PhD thesis, New York University (co-supervised by Jonathan~Goodman at NYU).
\item
Daniel~Foreman-Mackey, 2015, \textit{Methods for the detection and characterization of exoplanets and their population},
PhD thesis, New York University.
\item
Mohammadjavad~Vakili, 2017, \textit{Methods in computational cosmology},
PhD thesis, New York University.
\item
Dun~Wang, 2018, \textit{Methods for the calibration of astronomical imaging data},
PhD thesis, New York University.
\item
Alex~Malz, 2019, \textit{Probabilistic analysis methods for cosmology using uncertainty-dominated photometric data},
PhD thesis, New York University.
\item
Kate~Storey-Fisher, 2023, \textit{Tools for large-scale structure and galaxy formation},
PhD thesis, New York University.
\item
Matthew~Daunt, current PhD student.
\item
Valentina~Tardugno~Poleo, current PhD student.
\end{list}
\hoggheading{Postdoctoral scholars supervised and co-supervised}
Lauren~Anderson,
Megan~Bedell,
Andreas~A.~Berlind,
Michael~R.~Blanton,
Katie~Breivik,
Lisa~Bugnet,
Gabriella~Contardo,
Trevor~David,
Thavisha~Dharmawardena,
Nora~Eisner,
Ross~Fadely,
Richard~Galvez,
Danny~Horta,
Daniela~Huppenkothen,
Boris~Leistedt,
Rodrigo~Luger,
Sarah~Pearson,
Gabe~Perez-Giz,
Benjamin~J.~S.~Pope,
Adrian~M.~Price-Whelan,
Erin~Sheldon,
Beth~Willman,
Lily~L.~Zhao.
%% % begin HACK
%% % this next line is a clearpage line with heading hack. Feel free to delete it if pagination is okay.
%% \afterpage{\markboth{David W. Hogg, curriculum vitae continued: \textbf{\ref{rpcount} Refereed publications}}{}}%
%% \clearpage
%% % end HACK
\hypersetup{linkcolor=black}%
\hoggheading{\ref{rpcount} Refereed publications}%% use \etal when there are >9 authors!
\hypersetup{linkcolor=grey}%
\begin{list}{\pubnumber{\therefpubnum}}{\hogglist}
\item
Hogg,~D.~W., Quinlan,~G.~D., \& Tremaine,~S., 1991,
\doi{10.1086/115849}{Dynamical limits on dark matter in the Solar System},
\textit{Astron.\,J.}\ \textbf{101} 2274--2286.
\item
Hogg,~D.~W., Jackson,~C., \.Zytkow,~A.~N., Irwin,~M., Webster,~R., \& Tremaine,~S., 1994,
\doi{10.1006/icar.1994.1025}{A photographic search for satellites of Neptune},
\textit{Icarus}\ \textbf{107} 304--310.
\item
Hogg,~D.~W. \& Blandford,~R.~D., 1994,
\ads{1994MNRAS.268..889H}{The gravitational lens system B1422$+$231:\ Dark matter, superluminal expansion and the Hubble Constant},
\textit{Mon.\,Not.\,R.\,Astr.\,Soc.}\ \textbf{268} 889--893.
\item
Djorgovski,~S. \etal, 1995,
\doi{10.1086/187703}{Deep galaxy counts in the $K$ band with the Keck Telescope},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{438} L13--L16.
\item
Smail,~I., Hogg,~D.~W., Yan,~L., \& Cohen,~J.~G., 1995,
\doi{10.1086/309647}{Deep optical galaxy counts with the Keck Telescope},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{449} L105--L108.
\item
Smail,~I., Hogg,~D.~W., Blandford,~R., Cohen,~J.~G., Edge,~A.~C., \& Djorgovski,~S.~G., 1995,
\ads{1995MNRAS.277....1S}{Discovery of two giant arcs in the rich cluster A2219 with the Keck Telescope},
\textit{Mon.\,Not.\,R.\,Astr.\,Soc.}\ \textbf{277} 1--10.
\item
Eisenhardt,~P.~R., Armus,~L., Hogg,~D.~W., Soifer,~B.~T., Neugebauer,~G., \& Werner,~M.~W., 1996,
\doi{10.1086/177038}{\project{Hubble Space Telescope} observations of the luminous IRAS source FSC10214+4724:\ A gravitationally lensed infrared quasar},
\textit{Astrophys.\,J.}\ \textbf{461} 72--83.
\item
Cohen,~J.~G., Hogg,~D.~W., Pahre,~M.~A., \& Blandford,~R., 1996,
\doi{10.1086/310020}{Strong redshift clustering of distant galaxies},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{462} L9--L12.
\item
Hogg,~D.~W., Blandford,~R., Kundi\'c,~T., Fassnacht,~C.~D., \& Malhotra,~S., 1996,
\doi{10.1086/310213}{A candidate gravitational lens in the Hubble Deep Field},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{467} L73--L75.
\item
Cohen,~J.~G., Cowie,~L.~L., Hogg,~D.~W., Songaila,~A., Blandford,~R.,
Hu,~E.~M., \& Shopbell,~P., 1996,
\doi{10.1086/310330}{Redshift clustering in the Hubble Deep Field},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{471} L5--L9.
\item
Hogg,~D.~W., Neugebauer,~G., Armus,~L., Matthews,~K., Pahre,~M.~A., Soifer,~B.~T.,
\& Weinberger,~A.~J., 1997,
\doi{10.1086/118269}{Near infrared imaging of the Hubble Deep Field with the Keck Telescope},
\textit{Astron.\,J.}\ \textbf{113} 474--482.
\doi{10.1086/118445}{Associated erratum}:\ \textit{Astron.\,J.}\ \textbf{113} 2338.
\item
Reid,~I.~N., Gizis,~J.~E., Cohen,~J., Pahre,~M.~A., Hogg,~D.~W., Cowie,~L., Hu,~E., \& Songaila,~A., 1997,
\ads{1997PASP..109..559R}{Faint M dwarfs and the structure of the Galactic disk},
\textit{Pubs.\,Astr.\,Soc.\,Pac.}\ \textbf{109} 559--565.
\item
Hogg,~D.~W., Pahre,~M.~A., McCarthy,~J.~K., Cohen,~J.~G., Blandford,~R., Smail,~I., \& Soifer,~B.~T., 1997,
\ads{1997MNRAS.288..404H}{Counts and colours of faint galaxies in the $U$ and $R$ bands},
\textit{Mon.\,Not.\,R.\,Astr.\,Soc.}\ \textbf{288} 404--410.
\item
Hogg,~D.~W. \& Phinney,~E.~S., 1997,
\doi{10.1086/310929}{The fading of young stellar populations and the luminosity functions of dwarf, irregular and starburst galaxies},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{488} L95--L99.
\item
Kundi\'c,~T., Hogg,~D.~W., Blandford,~R.~D., Cohen,~J.~G., Lubin,~L.~M., \& Larkin,~J.~E., 1997,
\doi{10.1086/118647}{The external shear acting on gravitational lens B1422+231},
\textit{Astron.\,J.}\ \textbf{114} 2276--2283.
\item
Hogg,~D.~W., 1998,
{\textit{On the evolution of field galaxies},}
PhD thesis, California Institute of Technology.
\item
Hogg,~D.~W. \etal, 1998,
\doi{10.1086/300277}{A blind test of photometric redshift prediction},
\textit{Astron.\,J.}\ \textbf{115} 1418--1422.
\item
Hogg,~D.~W., \& Turner,~E.~L., 1998,
\ads{1998PASP..110..727H}{A maximum likelihood method for improving faint source flux and color estimates},
\textit{Pubs.\,Astr.\,Soc.\,Pac.}\ \textbf{110} 727--731.
\item
Hogg,~D.~W., Cohen,~J.~G., Blandford,~R., \& Pahre,~M.~A., 1998,
\doi{10.1086/306122}{The O~II luminosity density of the Universe},
\textit{Astrophys.\,J.}\ \textbf{504} 622--628.
\item
Sykes,~C.~M. \etal, 1998,
\doi{10.1046/j.1365-8711.1998.02081.x}{The complex gravitational lens system B1933+503},
\textit{Mon.\,Not.\,R.\,Astr.\,Soc.}\ \textbf{301} 310--314.
\item
Nguyen,~H.~T., Eisenhardt,~P.~R., Werner,~M.~W., Goodrich,~R., Hogg,~D.~W., Armus,~L., Soifer,~B.~T., \& Neugebauer,~G., 1998,
\doi{10.1086/300742}{Imaging polarimetry of the gravitational lens FSC10214+4724},
\textit{Astron.\,J.}\ \textbf{117} 671--676.
\item
Cohen,~J.~G., Blandford,~R., Hogg,~D.~W., Pahre,~M.~A., \& Shopbell,~P.~L., 1999,
\doi{10.1086/306778}{Caltech Faint Field Galaxy Redshift Survey.\ \acronym{VIII}.\ Analysis of the field J0053+1234},
\textit{Astrophys.\,J.}\ \textbf{512} 30--47.
\item
Cohen,~J.~G., Hogg,~D.~W., Pahre,~M.~A., Blandford,~R., Shopbell,~P., \& Richberg,~K., 1999,
\doi{10.1086/313184}{Caltech Faint Field Galaxy Redshift Survey.\ \acronym{VII}.\ Data analysis techniques and redshifts in the field J0053+1234},
\textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{120} 171--178.
\item
Barkana,~R., Blandford,~R., \& Hogg,~D.~W., 1999,
\doi{10.1086/311924}{A possible gravitational lens in the Hubble Deep Field South},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{513} L91--L94.
\item
Fruchter,~A.~S. \etal, 1999,
\doi{10.1086/312094}{\project{Hubble Space Telescope} and Palomar imaging of \acronym{GRB~990123}:\ Implications for the nature of gamma-ray bursts and their hosts},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{519} L13--L16.
\item
Hogg,~D.~W. \& Fruchter,~A.~S., 1999,
\doi{10.1086/307457}{The faint-galaxy hosts of gamma-ray bursts},
\textit{Astrophys.\,J.}\ \textbf{520} 54--58.
\item
Carlberg,~R.~G. \etal, 2000,
\doi{10.1086/312560}{Caltech Faint Galaxy Redshift Survey.\ \acronym{XI}.\ The merger rate to redshift 1 from kinematic pairs},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{532} L1--L4.
\item
Hogg,~D.~W., Pahre,~M.~A., Adelberger,~K.~L., Blandford,~R., Cohen,~J.~G., Gautier,~T.~N., Jarrett,~T., Neugebauer,~G., \& Steidel,~C.~C., 2000,
\doi{10.1086/313318}{Caltech Faint Field Galaxy Redshift Survey.\ \acronym{IX}.\ Source detection and photometry in the Hubble Deep Field region},
\textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{127} 1--9.
\item
Hogg,~D.~W., Neugebauer,~G., Cohen,~J.~G., Dickinson,~M.~E., Djorgovski,~S.~G., Matthews,~K., \& Soifer,~B.~T., 2000,
\doi{10.1086/301309}{Three-micron imaging of the Hubble Deep Field},
\textit{Astron.\,J.}\ \textbf{119} 1519--1525.
\item\label{pub:Cohen2000}
Cohen,~J.~G., Hogg,~D.~W., Blandford,~R., Cowie,~L.~L., Hu,~E., Songaila,~A., Shopbell,~P., \& Richberg,~K., 2000,
\doi{10.1086/309096}{Caltech Faint Galaxy Redshift Survey.\ \acronym{X}.\ A redshift survey in the region of the Hubble Deep Field North},
\textit{Astrophys.\,J.}\ \textbf{538} 29--52.
\item
van~den~Bergh,~S., Cohen,~J.~G., Hogg,~D.~W., \& Blandford,~R., 2000,
\doi{10.1086/316828}{Caltech Faint Galaxy Redshift Survey.\ \acronym{XIV}.\ Galaxy morphology in the HDF (North) and its flanking fields to $z=1.2$},
\textit{Astron.\,J.}\ \textbf{120} 2190--2205.
\item
Hogg,~D.~W., Cohen,~J.~G., \& Blandford,~R., 2000,
\doi{10.1086/317779}{The Caltech Faint Galaxy Redshift Survey.\ \acronym{XII}.\ Clustering of galaxies},
\textit{Astrophys.\,J.}\ \textbf{545} 32--42.
\item
Hogg,~D.~W., 2001,
\doi{10.1086/318736}{Confusion errors in astrometry and counterpart association},
\textit{Astron.\,J.}\ \textbf{121} 1207--1213.
\item
Blanton,~M.~R. \etal, 2001,
\doi{10.1086/320405}{The luminosity function of galaxies in \project{\acronym{SDSS}} commissioning data},
\textit{Astron.\,J.}\ \textbf{121} 2358--2380.
\item
Smette,~A. \etal, 2001,
\doi{10.1086/321585}{\project{Hubble Space Telescope/\acronym{STIS}} observations of \acronym{GRB~000301C}:\ \acronym{CCD} imaging and \project{\acronym{NUV MAMA}} spectroscopy},
\textit{Astrophys.\,J.}\ \textbf{556} 70--76.
\item
Yasuda,~N. \etal, 2001,
\doi{10.1086/322093}{Galaxy number counts from the \project{Sloan Digital Sky Survey} commissioning data},
\textit{Astron.\,J.}\ \textbf{122} 1104--1124.
\item\label{pub:Hogg2001}
Hogg,~D.~W., Finkbeiner,~D.~P., Schlegel,~D.~J., \& Gunn,~J.~E., 2001,
\doi{10.1086/323103}{A photometricity and extinction monitor at the Apache Point Observatory},
\textit{Astron.\,J.}\ \textbf{122} 2129--2138.
\item
Eisenstein,~D.~J. \etal, 2001,
\doi{10.1086/323717}{Spectroscopic target selection for the \project{Sloan Digital Sky Survey}:\ The Luminous Red Galaxy Sample},
\textit{Astron.\,J.}\ \textbf{122} 2267--2280.
\item
Stoughton,~C. \etal, 2002,
\doi{10.1086/324741}{\project{Sloan Digital Sky Survey}:\ Early Data Release},
\textit{Astron.\,J.}\ \textbf{123} 485--548.
\item
Schneider,~D.~P. \etal, 2002,
\doi{10.1086/338434}{The \project{Sloan Digital Sky Survey} Quasar Catalog.\ \acronym{I}.\ Early Data Release},
\textit{Astron.\,J.}\ \textbf{123} 567--577.
\item
Hogg,~D.~W. \etal, 2002,
\doi{10.1086/341392}{The luminosity density of red galaxies},
\textit{Astron.\,J.}\ \textbf{124} 646--651.
\item
Eisenstein,~D.~J., Hogg,~D.~W., \etal, 2003,
\doi{10.1086/346233}{Average spectra of massive galaxies in the \project{\acronym{SDSS}}},
\textit{Astrophys.\,J.}\ \textbf{585} 694--713.
\item
Hogg,~D.~W. \etal, 2003,
\doi{10.1086/374238}{The overdensities of galaxy environments as a function of luminosity and color},
\textit{Astrophys.\,J.\,Lett.}\
\textbf{585} L5--L9.
\item
Bernardi,~M. \etal, 2003,
\doi{10.1086/367776}{Early-type galaxies in the \project{\acronym{SDSS}}.\ \acronym{I}.\ The sample},
\textit{Astron.\,J.}\ \textbf{125} 1817--1848.
\item
Bernardi,~M. \etal, 2003,
\doi{10.1086/374256}{Early-type galaxies in the \project{\acronym{SDSS}}.\ \acronym{II}.\ Correlations between observables},
\textit{Astron.\,J.}\ \textbf{125} 1849--1865.
\item
Bernardi,~M. \etal, 2003,
\doi{10.1086/367794}{Early-type galaxies in the \project{\acronym{SDSS}}.\ \acronym{III}.\ The fundamental plane},
\textit{Astron.\,J.}\ \textbf{125} 1866--1881.
\item
Blanton,~M.~R., Brinkmann,~J., Csabai,~I., Doi,~M., Eisenstein,~D., Fukugita,~M., Gunn,~J.~E., Hogg,~D.~W., \& Schlegel,~D.~J., 2003,
\doi{10.1086/342935}{Estimating fixed-frame galaxy magnitudes in the \project{\acronym{SDSS}}},
\textit{Astron.\,J.}\ \textbf{125} 2348--2360.
\item
Blanton,~M.~R. \etal, 2003,
\doi{10.1086/375776}{The galaxy luminosity function and luminosity density at redshift $z=0.1$},
\textit{Astrophys.\,J.}\ \textbf{592} 819--838.
\item
Blanton,~M.~R., Hogg,~D.~W., \etal, 2003,
\doi{10.1086/375528}{The broadband optical properties of galaxies with redshifts $0.02<z<0.2$},
\textit{Astrophys.\,J.}\ \textbf{594} 186--207.
\item
Abazajian,~K. \etal, 2003,
\doi{10.1086/378165}{The First Data Release of the \project{Sloan Digital Sky Survey}},
\textit{Astron.\,J.}\ \textbf{126} 2081--2086.
\item\label{pub:Hogg2004}
Hogg,~D.~W. \etal, 2004,
\doi{10.1086/381749}{The dependence on environment of the color--magnitude relation of galaxies},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{601} L29--L32.
\item\label{pub:Quintero2004}
Quintero,~A.~D., Hogg,~D.~W., \etal, 2004,
\doi{10.1086/380601}{Selection and photometric properties of K+A galaxies},
\textit{Astrophys.\,J.}\ \textbf{602} 190--199.
\item
Lupton,~R., Blanton,~M.~R., Fekete,~G., Hogg,~D.~W., O'Mullane,~W., Szalay,~A., \& Wherry,~N., 2004,
\doi{10.1086/382245}{Preparing red-green-blue images from \acronym{CCD} data},
\textit{Pubs.\,Astr.\,Soc.\,Pac.}\ \textbf{116} 133--137.
\item
Tegmark,~M. \etal, 2004,
\doi{10.1086/382125}{The three-dimensional power spectrum of galaxies from the \project{Sloan Digital Sky Survey}},
\textit{Astrophys.\,J.}\ \textbf{606} 702--740.
\item
Tegmark,~M. \etal, 2004,
\doi{10.1103/PhysRevD.69.103501}{Cosmological parameters from \project{\acronym{SDSS}} and \project{\acronym{WMAP}}},
\textit{Phys.\,Rev.\,D}\ \textbf{69} 103501.
\item
Abazajian,~K. \etal, 2004,
\doi{10.1086/421365}{The Second Data Release of the \project{Sloan Digital Sky Survey}},
\textit{Astron.\,J.}\ \textbf{128} 502--512.
\item
Finkbeiner,~D.~P. \etal, 2004,
\doi{10.1086/425050}{\project{Sloan Digital Sky Survey} imaging of low Galactic latitude fields:\ Technical summary and data release},
\textit{Astron.\,J.}\ \textbf{128} 2577--2592.
\item
Abazajian,~K. \etal, 2005,
\doi{10.1086/427544}{The Third Data Release of the \project{Sloan Digital Sky Survey}},
\textit{Astron.\,J.}\ \textbf{129} 1755--1759.
\item
Zehavi,~I., \etal, 2005,
\doi{10.1086/427495}{The intermediate-scale clustering of luminous red galaxies},
\textit{Astrophys.\,J.}\ \textbf{621} 22--31.
\item
Hogg,~D.~W., Eisenstein,~D.~J., Blanton,~M.~R., Bahcall,~N.~A., Brinkmann,~J., Gunn,~J.~E., \& Schneider,~D.~P., 2005,
\doi{10.1086/429084}{Cosmic homogeneity demonstrated with luminous red galaxies},
\textit{Astrophys.\,J.}\ \textbf{624} 54--58.
\item
Hogg,~D.~W., Tremonti,~C.~A., Blanton,~M.~R., Finkbeiner,~D.~P., Padmanabhan,~N., Quintero,~A.~D., Schlegel,~D.~J., \& Wherry,~N., 2005,
\doi{10.1086/429686}{Mid-infrared and visible photometry of galaxies:\ Anomalously low polycyclic aromatic hydrocarbon emission from low-luminosity galaxies},
\textit{Astrophys.\,J.}\ \textbf{624} 162--167.
\item
Blanton,~M.~R. \etal, 2005,
\doi{10.1086/429803}{New York University Value-Added Galaxy Catalog:\ A galaxy catalog based on new public surveys},
\textit{Astron.\,J.}\ \textbf{129} 2562--2578.
\item
Willman,~B., Blanton,~M.~R., West,~A.~A., Dalcanton,~J.~J, Hogg,~D.~W., Schneider,~D.~P., Wherry,~N., Yanny,~B., \& Brinkmann,~J., 2005,
\doi{10.1086/430214}{A new Milky Way companion:\ Unusual globular cluster or extreme dwarf satellite?},
\textit{Astron.\,J.}\ \textbf{129} 2692--2700.
\item\label{pub:Willman2005b}
Willman,~B. \etal, 2005,
\doi{10.1086/431760}{A new Milky Way dwarf galaxy in Ursa Major},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{626} L85--L88.
\item
Blanton,~M.~R., Eisenstein,~D.~J., Hogg,~D.~W., Schlegel,~D.~J., \& Brinkmann,~J., 2005,
\doi{10.1086/422897}{The relationship between environment and the broad-band optical properties of galaxies in the \project{Sloan Digital Sky Survey}},
\textit{Astrophys.\,J.}\ \textbf{629} 143--157.
\item
Hogg,~D.~W., Blanton,~M.~R., Roweis,~S.~T., \& Johnston,~K.~V., 2005,
\doi{10.1086/431572}{Modeling complete distributions with incomplete observations:\ The velocity ellipsoid from \project{Hipparcos} data},
\textit{Astrophys.\,J.}\ \textbf{629} 268--275.
\item
Berlind,~A.~A., Blanton,~M.~R., Hogg,~D.~W., Weinberg,~D.~H., Dav\'e,~R., Eisenstein,~D.~J., \& Katz,~N., 2005,
\doi{10.1086/431658}{Interpreting the relationship between galaxy luminosity, color and environment},
\textit{Astrophys.\,J.}\ \textbf{629} 625--632.
\item\label{pub:Eisenstein2005}
Eisenstein,~D.~J., Zehavi,~I., Hogg,~D.~W., \etal, 2005,
\doi{10.1086/466512}{Detection of the baryon acoustic peak in the large-scale correlation function of \project{Sloan Digital Sky Survey} Luminous Red Galaxies},
\textit{Astrophys.\,J.}\ \textbf{633} 560--574.
\item
Adelman-McCarthy,~J.~K. \etal, 2006,
\doi{10.1086/497917}{The Fourth Data Release of the \project{Sloan Digital Sky Survey}},
\textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{162} 38--48.
\item
Farrar,~G.~F., Berlind,~A.~A., \& Hogg,~D.~W., 2006,
\doi{10.1086/504711}{Foreground and source of a cluster of ultra--high-energy cosmic rays},
\textit{Astrophys.\,J.}\ \textbf{642} L89--L93.
\item
Cool,~R.~J., Eisenstein,~D.~J., Hogg,~D.~W., Blanton,~M.~R., Schlegel,~D.~J., Brinkmann,~J., Schneider,~D.~P., \& Vanden~Berk,~D.~E., 2006,
\doi{10.1086/503334}{\project{\acronym{SDSS}} pre-burst observations of recent gamma-ray burst fields},
\textit{Pubs.\,Astr.\,Soc.\,Pac.}\ \textbf{118} 733--739.
\item\label{pub:Masjedi2006}
Masjedi,~M., Hogg,~D.~W., \etal, 2006,
\doi{10.1086/503536}{Very small-scale clustering and merger rate of luminous red galaxies},
\textit{Astrophys.\,J.}\ \textbf{644} 54--60.
\item
Blanton,~M.~R., Eisenstein,~D.~J., Hogg,~D.~W., \& Zehavi,~I.~I., 2006,
\doi{10.1086/500918}{The scale-dependence of relative galaxy bias:\ Encouragement for the ``halo model'' description},
\textit{Astrophys.\,J.}\ \textbf{645}
977--985.
\item
Tucker,~D.~L. \etal, 2006,
\doi{10.1002/asna.200610655}{The \project{Sloan Digital Sky Survey} Monitor Telescope pipeline},
\textit{Astron.\,Nachr.}\ \textbf{327} 821--843.
\item
Hogg,~D.~W., Masjedi,~M., Berlind,~A.~A., Blanton,~M.~R., Quintero,~A.~D., \& Brinkmann,~J., 2006,
\doi{10.1086/507172}{What triggers galaxy transformations?\ The environments of post-starburst galaxies},
\textit{Astrophys.\,J.}\ \textbf{650} 763--769.
\item
Berlind,~A.~A. \etal, 2006,
\doi{10.1086/508170}{Percolation galaxy groups and clusters in the \project{\acronym{SDSS}} Redshift Survey:\ Identification, catalogs, and the multiplicity function},
\textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{167} 1--25.
\item
Tegmark,~M., \etal, 2006,
\doi{10.1103/PhysRevD.74.123507}{Cosmological constraints from the \project{\acronym{SDSS}} Luminous Red Galaxies},
\textit{Phys.\,Rev.\,D}\ \textbf{74} 123507.
\item
Schneider,~D.~P., \etal, 2007,
\doi{10.1086/518474}{The \project{Sloan Digital Sky Survey} Quasar Catalog \acronym{IV}:\ Fifth Data Release},
\textit{Astron.\,J.}\ \textbf{134} 102--117.
\item
Padmanabhan,~N., \etal, 2007,
\doi{10.1111/j.1365-2966.2007.11593.x}{The clustering of luminous red galaxies in the \project{Sloan Digital Sky Survey} imaging data},
\textit{Mon.\,Not.\,R.\,Astr.\,Soc.}\ \textbf{378} 852--872.
\item
Adelman-McCarthy,~J.~K. \etal, 2007,
\doi{10.1086/518864}{The Fifth Data Release of the \project{Sloan Digital Sky Survey}},
\textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{172} 634--644.
\item
Barron,~J.~T., Stumm,~C., Hogg,~D.~W., Lang,~D., \& Roweis,~S., 2008,
\doi{10.1088/0004-6256/135/1/414}{Cleaning the \project{\acronym{USNO-B} Catalog} through automatic detection of optical artifacts},
\textit{Astron.\,J.}\ \textbf{135} 414--422.
\item
Padmanabhan,~N., \etal, 2008,
\doi{10.1086/524677}{An improved photometric calibration of the \project{Sloan Digital Sky Survey} imaging data},
\textit{Astrophys.\,J.}\ \textbf{674} 1217--1233.
\item
Adelman-McCarthy,~J.~K. \etal, 2008,
\doi{10.1086/524984}{The Sixth Data Release of the \project{Sloan Digital Sky Survey}},
\textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{175} 297--313.
\item
Masjedi,~M., Hogg,~D.~W., \& Blanton,~M.~R., 2008,
\doi{10.1086/586696}{The growth of luminous red galaxies by merging},
\textit{Astrophys.\,J.}\ \textbf{679} 260--268.
\item
Bell,~E.~F., \etal, 2008,
\doi{10.1086/588032}{The accretion origin of the Milky Way's stellar halo},
\textit{Astrophys.\,J.}\ \textbf{680} 295--311.
\item
Barron,~J.~T., Hogg,~D.~W., Lang,~D., \& Roweis,~S., 2008,
\doi{10.1088/0004-6256/136/4/1490}{Blind Date:\ Using proper motions to determine the ages of historical images},
\textit{Astron.\,J.}\ \textbf{136} 1490--1501.
\item
Bovy,~J., Hogg,~D.~W., \& Moustakas,~J., 2008,
\doi{10.1086/592187}{The transparency of galaxy clusters},
\textit{Astrophys.\,J.}\ \textbf{688} 198--207.
\item
Maller,~A.~H., Berlind,~A.~A., Blanton,~M.~R., \& Hogg,~D.~W., 2009,
\doi{10.1088/0004-637X/691/1/394}{The intrinsic properties of \project{\acronym{SDSS}} galaxies},
\textit{Astrophys.\,J.}\ \textbf{691} 394--406.
\item
Marshall,~P.~J., Hogg,~D.~W., Moustakas,~L.~A., Fassnacht,~C.~D.,
Brada\v{c},~M., Schrabback,~T., \& Blandford,~R.~D., 2009,
\doi{10.1088/0004-637X/694/2/924}{Automated detection of galaxy-scale gravitational lenses in high-resolution imaging data},
\textit{Astrophys.\,J.}\ \textbf{694} 924--942.
\item
Lang,~D., Hogg,~D.~W., Jester,~S., \& Rix,~H.-W., 2009,
\doi{10.1088/0004-6256/137/5/4400}{Measuring the undetectable:\ Proper motions and parallaxes of very faint sources},
\textit{Astron.\,J.}\ \textbf{137} 4400--4411.
\item
More,~S., Bovy,~J., \& Hogg,~D.~W., 2009,
\doi{10.1088/0004-637X/696/2/1727}{Cosmic transparency:\ A test with the baryon acoustic feature and type Ia supernovae},
\textit{Astrophys.\,J.}\ \textbf{696} 1727--1732.
\item
Abazajian,~K.~N. \etal, 2009,
\doi{10.1088/0067-0049/182/2/543}{The Seventh Data Release of the \project{Sloan Digital Sky Survey}},
\textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{182} 543--558.
\item
Bunn,~E.~F. \& Hogg,~D.~W., 2009,
\doi{10.1119/1.3129103}{The kinematic origin of the cosmological redshift},
\textit{Am.\,J.\,Phys.}\ \textbf{77}(8) 688--694.
\item
Bovy,~J., Hogg,~D.~W., \& Roweis,~S., 2009,
\doi{10.1088/0004-637X/700/2/1794}{The velocity distribution of nearby stars from \project{Hipparcos} data I.~The significance of the moving groups},
\textit{Astrophys.\,J.}\ \textbf{700} 1794--1819.
\item
Zolotov,~A., Willman,~B., Brooks,~A.~M., Governato,~F., Brook,~C.~B., Hogg,~D.~W., Quinn,~T., \& Stinson,~G., 2009,
\doi{10.1088/0004-637X/702/2/1058}{The dual origin of stellar halos},
\textit{Astrophys.\,J.}\ \textbf{702} 1058--1067.
\item
Bovy,~J., Hogg,~D.~W., \& Rix,~H.-W., 2009,
\doi{10.1088/0004-637X/704/2/1704}{Galactic masers and the Milky Way circular velocity},
\textit{Astrophys.\,J.}\ \textbf{704} 1704--1709.
\item
Price-Whelan,~A.~M. \& Hogg,~D.~W., 2010,
\doi{10.1086/651009}{What bandwidth do I need for my image?},
\textit{Pubs.\,Astr.\,Soc.\,Pac.}\ \textbf{122} 207--214.
\item
Bovy,~J., Murray,~I., \& Hogg,~D.~W., 2010,
\doi{10.1088/0004-637X/711/2/1157}{Dynamical inference from a kinematic snapshot:\ The force law in the Solar System},
\textit{Astrophys.\,J.}\ \textbf{711} 1157--1167.
\item
Koposov,~S.~E., Rix,~H.-W., \& Hogg,~D.~W., 2010,
\doi{10.1088/0004-637X/712/1/260}{Constraining the Milky Way potential with a 6-D phase-space map of the GD-1 stellar stream},
\textit{Astrophys.\,J.}\ \textbf{712} 260--273.
\item
Lang,~D., Hogg,~D.~W., Mierle,~K., Blanton,~M., \& Roweis,~S., 2010,
\doi{10.1088/0004-6256/139/5/1782}{\project{Astrometry.net}:\ Blind astrometric calibration of arbitrary astronomical images},
\textit{Astron.\,J.}\ \textbf{139} 1782--1800.
\item
Bovy,~J. \& Hogg,~D.~W., 2010,
\doi{10.1088/0004-637X/717/2/617}{The velocity distribution of nearby stars from \project{Hipparcos} data \acronym{II}.\ The nature of the low-velocity moving groups},
\textit{Astrophys.\,J.}\ \textbf{717} 617--639.
\item
Zolotov,~A., Willman,~B., Brooks,~A.~M., Governato,~F., Hogg,~D.~W., Shen,~S., \& Wadsley,~J., 2010,
\doi{10.1088/0004-637X/721/1/738}{The dual origin of stellar halos \acronym{II}.\ Chemical abundances as tracers of formation history},
\textit{Astrophys.\,J.}\ \textbf{721} 738--743.
\item
Bell,~E.~F., Xue,~X.~X., Rix,~H.-W., Ruhland,~C., \& Hogg,~D.~W., 2010,
\doi{10.1088/0004-6256/140/6/1850}{Stellar population variations in the Milky Way's stellar halo},
\textit{Astron.\,J.}\ \textbf{140} 1850--1859.
\item
Hogg,~D.~W., Myers,~A.~D., \& Bovy,~J., 2010,
\doi{10.1088/0004-637X/725/2/2166}{Inferring the eccentricity distribution},
\textit{Astrophys.\,J.}\ \textbf{725} 2166--2175.
\item
Zolotov,~A., Hogg,~D.~W., \& Willman,~B., 2011,
\doi{10.1088/2041-8205/727/1/L14}{Are the ultra-faint dwarf galaxies just cusps?},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{727} L14.
\doi{10.1088/2041-8205/732/2/L37}{Associated erratum}:\ \textit{Astrophys.\,J.\,Lett.}\ \textbf{732} L37.
\item
Bovy,~J., Hennawi,~J.~F., Hogg,~D.~W., \etal, 2011,
\doi{10.1088/0004-637X/729/2/141}{Think outside the color-box:\ Probabilistic target selection and the \acronym{SDSS-XDQSO} quasar targeting catalog},
\textit{Astrophys.\,J.}\ \textbf{729} 141.
\item
Wu,~R., Hogg,~D.~W., \& Moustakas,~J., 2011,
\doi{10.1088/0004-637X/730/2/111}{The aromatic features in very faint dwarf galaxies},
\textit{Astrophys.\,J.}\ \textbf{730} 111.
\item
Yoon,~J.~H., Johnston,~K.~V., \& Hogg,~D.~W., 2011,
\doi{10.1088/0004-637X/731/1/58}{Clumpy streams from clumpy halos:\ Detecting missing satellites with cold stellar structures},
\textit{Astrophys.\,J.}\ \textbf{731} 58.
\item
Aihara,~H. \etal, 2011,
\doi{10.1088/0067-0049/193/2/29}{The Eighth Data Release of the Sloan Digital Sky Survey:\ First data from \project{\acronym{SDSS-III}}},
\textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{193} 29.
\doi{10.1088/0067-0049/195/2/26}{Associated erratum}:\ \textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{195} 26.
\item
Bovy,~J., Hogg,~D.~W., \& Roweis,~S., 2011,
\doi{10.1214/10-AOAS439}{Extreme deconvolution:\ Inferring complete distribution functions from noisy, heterogeneous and incomplete observations},
\textit{Ann.\,Appl.\,Stat.}\ \textbf{5} 1657--1677.
\item
Eisenstein,~D.~J. \etal, 2011,
\doi{10.1088/0004-6256/142/3/72}{\project{\acronym{SDSS-III}}:\ Massive spectroscopic surveys of the distant Universe, the Milky Way, and extra-Solar planetary systems},
\textit{Astron.\,J.}\ \textbf{142} 72.
\item
Tsalmantza,~P., Decarli,~R., Dotti,~M., \& Hogg,~D.~W., 2011,
\doi{10.1088/0004-637X/738/1/20}{A systematic search for massive black hole binaries in the \project{Sloan Digital Sky Survey} spectroscopic sample},
\textit{Astrophys.\,J.}\ \textbf{738} 20.
\item
Malyshev,~D. \& Hogg,~D.~W., 2011,
\doi{10.1088/0004-637X/738/2/181}{Statistics of gamma-ray point sources below the \project{Fermi} detection limit},
\textit{Astrophys.\,J.}\ \textbf{738} 181.
\item
Coil,~A.~L. \etal, 2011,
\doi{10.1088/0004-637X/741/1/8}{The \project{Prism MUlti-Object Survey (\acronym{PRIMUS})} I:\ Survey overview and characteristics},
\textit{Astrophys.\,J.}\ \textbf{741} 8.
\item
Schmidt,~K.~B., Rix,~H.-W., Shields,~J.~C., Knecht,~M., Hogg,~D.~W., Maoz,~D., \& Bovy,~J., 2012,
\doi{10.1088/0004-637X/744/2/147}{The color variability of quasars},
\textit{Astrophys.\,J.}\ \textbf{744} 147.
\item
Hou,~F., Goodman,~J., Hogg,~D.~W., Weare,~J., \& Schwab,~C., 2012,
\doi{10.1088/0004-637X/745/2/198}{An affine-invariant sampler for exoplanet fitting and discovery in radial velocity data},
\textit{Astrophys.\,J.}\ \textbf{745} 198.
\item
Ross,~N.~P. \etal, 2012,
\doi{10.1088/0067-0049/199/1/3}{The \project{\acronym{SDSS-III} Baryon Oscillation Spectroscopic Survey}:\ Quasar target selection for \project{Data Release Nine}},
\textit{Astrophys.\,J.\,Suppl.\,Ser.}\ \textbf{199} 3.
\item
Bovy,~J. \etal, 2012,
\doi{10.1088/0004-637X/749/1/41}{Photometric redshifts and quasar probabilities from a single, data-driven generative model},
\textit{Astrophys.\,J.}\ \textbf{749} 41.
\item
Watson,~D.~F., Berlind,~A.~A., McBride,~C.~K., Hogg,~D.~W., \& Jiang,~T., 2012,
\doi{10.1088/0004-637X/749/1/83}{The extreme small scales:\ Do satellite galaxies trace dark matter?},
\textit{Astrophys.\,J.}\ \textbf{749} 83.
\item
Kudryavtseva,~N., \etal, 2012,
\doi{10.1088/2041-8205/750/2/L44}{Instantaneous starburst of the massive clusters Westerlund 1 and NGC 3603 YC},
\textit{Astrophys.\,J.\,Lett.}\ \textbf{750} L44.
\item
Bovy,~J., Rix,~H.-W., \& Hogg,~D.~W., 2012,
\doi{10.1088/0004-637X/751/2/131}{The Milky Way has no distinct thick disk},
\textit{Astrophys.\,J.}\ \textbf{751} 131.
\item
Tsalmantza,~P. \& Hogg,~D.~W., 2012,
\doi{10.1088/0004-637X/753/2/122}{A data-driven model for spectra:\ Finding double redshifts in the \project{Sloan Digital Sky Survey}},
\textit{Astrophys.\,J.}\ \textbf{753} 122.
\item
Bovy,~J., Rix,~H.-W., Liu,~C., Hogg,~D.~W., Beers,~T.~C., \& Lee,~Y.~S., 2012,
\doi{10.1088/0004-637X/753/2/148}{The spatial structure of mono-abundance sub-populations of the Milky Way Disk},
\textit{Astrophys.\,J.}\ \textbf{753} 148.
\item
Lang,~D. \& Hogg,~D.~W., 2012,
\doi{10.1088/0004-6256/144/2/46}{Searching for comets on the World Wide Web:\ The orbit of 17P/Holmes from the behavior of photographers},
\textit{Astron.\,J.}\ \textbf{144} 46.
\item
Bovy,~J., Rix,~H.-W., Hogg,~D.~W., Beers,~T.~C., Lee,~Y.~S., \& Zhang,~L., 2012,
\doi{10.1088/0004-637X/755/2/115}{The vertical motions of mono-abundance sub-populations in the Milky Way Disk},
\textit{Astrophys.\,J.}\ \textbf{755} 115.
\item
Bovy,~J. \etal, 2012,
\doi{10.1088/0004-637X/759/2/131}{The Milky Way's circular-velocity curve between 4 and 14~kpc from \project{APOGEE} data},
\textit{Astrophys.\,J.}\ \textbf{759} 131.
\item
Jiang,~T., Hogg,~D.~W., \& Blanton,~M.~R., 2012,
\doi{10.1088/0004-637X/759/2/140}{Galaxy growth by merging in the nearby Universe},
\textit{Astrophys.\,J.}\ \textbf{759} 140.
\item
Fadely,~R., Hogg,~D.~W., \& Willman,~B., 2012,
\doi{10.1088/0004-637X/760/1/15}{Star--galaxy classification in multi-band optical imaging},
\textit{Astrophys.\,J.}\ \textbf{760} 15.
\item
Holmes,~R., Hogg,~D.~W., \& Rix,~H.-W., 2012,
\doi{10.1086/668656}{Designing imaging surveys for a retrospective relative photometric calibration},