-
Notifications
You must be signed in to change notification settings - Fork 0
/
review.tex
1319 lines (1071 loc) · 76.7 KB
/
review.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
% ==============================================================================
%
% "Ideas for Citizen Science in Astronomy"
%
% Marshall, Fletcher, & Lintott, ARAA (2014)
%
% ==============================================================================
\documentclass{ar2e}
\usepackage{ulem}
\usepackage{ARAstroBib}
\usepackage{amssymb,amsbsy,psfig}
\usepackage{xspace}
\usepackage[usenames]{color}
\usepackage{graphicx}
\input{macros.tex}
% ==============================================================================
\begin{document}
% ------------------------------------------------------------------------------
\jname{Annu.\ Rev.\ Astron.\ Astrophys.}
\jyear{2014}
\jvol{}
\ARinfo{}
\title{Ideas for Citizen Science in Astronomy}
\author{Phil Marshall,$^{1,2}$
Leigh Fletcher,$^{2}$ and
Chris Lintott$^{2}$
\affiliation{%
\small
$^1$ Kavli Institute for Particle Astrophysics and Cosmology, P.O.~Box~20450, \newline
MS~29, Stanford, CA 94309, USA. \newline
$^2$ Department of Physics, Denys Wilkinson Building, University of Oxford, \newline
Keble Road, Oxford, OX1 3RH, UK.}}
\markboth{Marshall, Lintott \& Fletcher}{Citizen Science in Astronomy}
% ------------------------------------------------------------------------------
% \begin{keywords}
% Go here...
% \end{keywords}
\begin{abstract}
We review the relatively new, internet-enabled, and rapidly evolving field of
citizen science, focusing on ideas from which astronomy either has benefited, or
could benefit in the future. We consider contributions to science in the form of
observations, instrumentation, data processing, data modeling and the design of
new scientific inquiries. Engaging a large and diverse community of both
professionals and citizens, we digest and present their suggestions for ideas
for citizen astronomy in the future. The limits to this approach to scientific
investigation are not yet known, but we make some rough estimates for astronomy
in particular.
\end{abstract}
\maketitle
% ==============================================================================
\section{Introduction (2 pages)}
\label{sec:intro}
The term ``Citizen Science'' refers to the activities of people who are not paid
to carry out scientific research, but nevertheless make intellectual
contributions to scientific research in their spare time. These contributions
are diverse, both in type and research area. The people who make those
contributions can, and do, come from all walks of life. This review is about the
science projects they have participated in to date, the tasks they have
performed, and how astronomy has benefited -- and could benefit further -- from
their efforts.
Citizen involvement in science pre-dates the profession itself, and there is a
long and honourable tradition of amateur observers making important discoveries
and significant sustained contributions. However, the advent of the world wide
web has changed the face of professional and amateur collaboration, providing
new opportunities and accelerating the sharing of information. People are now
connected to each other in a way that has never happened before. Professional
scientists can interact with citizens via a range of web-based media, including
purpose-built citizen science websites which increase the potential for shared
data analysis and exploration as well as data collection. Meanwhile, communities
of citizens have sprung into existence as like-minded people have been able to
find and talk to each other in a way that is almost independent of their
geographical location. The result has been an exponential increase in citizen
involvement in science. The field is evolving very quickly, with more and more
professional scientists becoming aware of the possibilities offered by
collaborating with, for example, specialists operating outside the usual
parameters of professional astronomical observation, or tens of thousands of
people eager to perform analysis in their lunch hours via microtasking. Our aim
in this review is to review the scientific literature as it stands for ideas
implemented in citizen science projects, primarily in astronomy but also in
other fields, and then produce a summary of successful project characteristics
for future research groups to learn from.
As our title states, this is a review of ideas for astronomy. We will look
forward as well as back, and try to answer the questions: How can the full
potential of citizen science be realised in astronomy? What are the particular
niches that citizen science can fill, in our field? How might it contribute to
the solutions of the Big Data problem in astronomy?
% Somewhat in the spirit of citizen science, we are crowd-sourcing these
% questions via a blog, \stellarpops, set up to accompany this article. Each
% area we cover will be opened up for discussion in the comments section, and we
% are encouraging the leading proponents to join in that discussion. Likewise,
% we are encouraging involvement from the citizens already working in astronomy,
% and the community of astronomers collaborating with them. The result will be
% an open conversation which we will distill, with appropriate acknowledgment,
% into these pages.
%
% \BLOG{1}{Phil}{What's all this about?}
This review is organised as follows. We survey the contributions to science that
citizens have made to date, organized according to the stage of the scientific
enquiry that those contributions fell into. Astronomy research typically starts
with observations: so do we, in \Sref{sec:obs}. We then proceed through a
discussion of citizen instrumentation, data processing, data modeling and
finally citizen-led enquiry in
Sections~\ref{sec:instr}--\ref{sec:explore}. With this overview in place,
we review in \Sref{sec:crowd} the literature on, and the collected experience
of, the population of citizens who have taken part, or are currently taking
part, in scientific research, before summarizing progress in citizen science to
date in \Sref{sec:summary}. In the second part of this review, we turn to the
future. We first report a variety of suggestions for how
citizens might contribute to astronomy there in \Sref{sec:future}. Then, in
\Sref{sec:limits} we consider possible limits to citizen science, including
challenges associated with data rates and volumes, data complexity, the
difficulties of large-scale collaboration, and finally the barriers to
accessibility. Finally, we give some concluding remarks in
\Sref{sec:conclusions}.
% ------------------------------------------------------------------------------
\section{Data Acquisition: Citizen Observing (5 pages)}
\label{sec:obs}
Typically, data in astronomy is aquired with some sort of telescope. In the 21st
century there certainly is an active community of well-equipped amateur
observers making observations of great utility. There are also many other
citizens observing the night sky with less sophisticated equipement, and/or less
enthusiasm -- and as we shall see, there are plenty of citizens making
astronomical observations almost inadvertently. What astronomical data are the
citizenry taking, and what is it being used for?
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Active Observing (\textbf{Leigh}, Chris to edit, 3 pages)}
\label{sec:obs:active}
The steady improvements and increasing affordability of digital technology, in
addition to the ease of data sharing and communications, have considerably
expanded the realm of amateur astronomy in the past two decades. Observers
have always been passionate about their pastime, from painstakingly recorded
hand drawings of the planets and their positions in the night sky, to hours
devoted to the monitoring and tracking of astronomical events. There is a
long and proud history of contributions from ?amateurs? to the field, driven
by a desire to share the results of their hobby with others. But it has only
been in the past few decades that regular and systematic pipelines have been
in place to share data between amateurs and professionals, enticing passionate
observers to shape their observations to address scientific questions. In
this section, we review some of the citizen contributions to active
observations of the night sky. Passive contributions, via data mining and
web-based studies, will be described in Section \ref{}.
Why is active citizen observing beneficial to professional astronomers? The
key advantage is time ? the very core of astronomy is observational, and
intense competition for resources means that professional astronomers are
unable to continuously monitor all the objects of interest in the night sky.
Indeed, professional observatories are always oversubscribed, with resources
concentrated on one area of sky, or one astronomical question. Observations
from professional telescopes, space-based observatories and visiting planetary
missions are often sparse and poorly sampled due to extreme competition for
resources. Such observations are rarely tuned to the optimum timescales for
scientific enquiry ? for example, determinations of meteor frequencies on
short timescales (minutes), or slow evolution of giant planets on longer
timescales (years and decades). Amateur observations can be frequent and
repetitive to provide monitoring of astronomical targets, and are naturally
well sampled across the globe during an exciting event of interest.
The second, related, advantage is that of flexibility ? whenever a new
phenomenon is discovered (e.g., a new comet, or anything changing the
appearance of the familiar planetary discs), observers will be keen to catch a
glimpse irrespective of the scientific value of their observations. This
reaction can be near instantaneous, compared to the need to allocate telescope
resources among the professional community. The third benefit is contextual ?
global maps of an object's visible albedo provide useful additional
constraints on a process of interest, especially when near-simultaneous
professional observations occur in a vastly different wavelength range (e.g.,
UV or infrared); over a narrow spatial region (e.g., close-in studies by
spacecraft); or employ spectroscopic techniques that don?t yield images.
Comparisons with the visible albedo provided by citizen scientists can
therefore play an extremely useful role in planetary missions, both for
context and for observation planning. Active observation by enthusiastic
citizens contributing directly to scientific progress, combined with the
excellent communication channels that have opened up in the past two decades,
and the digital technology that allows astrophotographers to shine, is
beginning to plug this observational gap.
As a result of these benefits, a few professionals are very closely linked
with the amateur community, organising publications and assisting in
observation planning to maximise science return. New planetary missions
frequently involve scientists to serve as an interface with the amateur
community (this is particularly true to the 2016-17 Juno mission to Jupiter).
In return, amateurs trigger alerts through online forums or emails to
professional networks, announcing a tentative new discovery to the world for
scrutiny and follow-up. The benefits of strong professional-amateur
collaboration will be repeated in the following examples where active
observations have contributed directly to our understanding of our place in
the universe. We do not intend a complete review of all examples of Pro-Am
collaboration, but a few representative examples. For a detailed review of
the methodology employed by amateur observers, the reader is referred to
\citet{13mousis}. Within our solar system, active observations fall into two
interconnected categories: Discovery and Monitoring, where each will almost
certainly lead to the other.
\subsubsection{Discovery-Class Science}
Discovery-class citizen science is enabled by the quantity of data obtained
and the extreme familiarity of citizen astronomers with a particular region,
planet or nebula, allowing them to immediately identify peculiarities or new
features \citep[e.g., meteorological activity on giant planets,][]{95rogers}.
Solar system objects moving against the fixed-star background can be detected
in a set of CCD frames either by eye or by automated software. The position
of this new object is then compared to existing catalogues, and if no existing
details are found then the new discovery and its ephemerides can be reported
to the IAU Minor Planet Centre\footnote{http://www.minorplanetcenter.net}. If
observations are repeated for at least two nights by one or several observers,
then a new denomination is provisionally assigned to the discovery. An
electronic circular then reports the discovery to the wider world. Suitable
targets for these searches include near-earth asteroids (NEAs, with orbits
intersecting those of the terrestrial planets), main belt asteroids between
Mars and Jupiter, and comets making their journey towards the Sun from the
outer solar system.
The recent close flyby of asteroid 2012 DA14 on February 15th 2013 was
initially reported by a team of amateur observers affiliated with the La Sagra
Sky Survey at the Astronomical Observatory of Mallorca. Amateur observers
still contribute to the discovery and photometric imaging of comets, and many
amateurs have managed to become associated with new cometary discoveries,
including David Levy, part of the team that discovered Shoemaker-Levy 9 before
its spectacular impact with Jupiter. As with asteroids, the majority of new
comet discoveries are made by automated surveys, but a small and stable number
of discoveries come from amateurs with small telescopes, typically in regions
poorly covered by survey telescopes (e.g., regions close to the Sun). C/2011
W3 Lovejoy, a Kreutz sungrazer comet, is one such example. C/2012 S1 ISON was
spotted by A. Novichonok and V. Gerke in images from the International
Scientific Optical Network. One might imagine that, as observing technology
improves, citizen discoveries via active observation might extend out to the
distant Kuiper Belt, although many of these targets are so dim that they are
unavailable to all but the largest of apertures.
Although survey telescopes provide the vast majority of modern discoveries,
citizen observations allow detailed characterisation of physical and orbital
characteristics of these newly discovered solar system bodies, and amateur-led
contributions are published
online\footnote{http://www.minorplanet.info/mpbdownloads.html}. There is a
need to continuously track Near Earth Asteroids as gravitational effects can
significantly alter orbital trajectories over time, and this astrometry for
both asteroids and comets can be provided to the Minor Planet Centre for
collation and use in computing orbital trajectories. Amateur monitoring of a
comet?s coma, dust and plasma tails and their photometric parameters can
reveal dynamic structures and determine the locations of active venting
regions. Photometric monitoring of comets over time of the magnitude and tail
characteristics provides insights into the levels of activity as the comet
moves along its trajectory, and can also reveal outbursts and other events
associated with the outgassing. Photometric monitoring of an asteroid as it
rotates provides information on the physical parameters, such as the shape,
rotation rate and orientation. Observationas of mutual encounters can also
yield information on the density, and hence the composition of the asteroids.
Amateurs are also contributing to the search for a sub-category of objects
with a detectable cometary coma within the asteroid belt. Recent discoveries
of these Main Belt Comets, which appear to be asteroids that are actively
venting their volatiles at perihelion, are beginning to blur the distinction
between asteroids and comets. The T3 project, a collaboration between the
University of Rome and several amateur observers, began in 2005 with the
detection of a coma around asteroid 2005 SB216 \citep{05buzzi}, and has gone
on to detect at least eight main belt comets \citep{13mousis}. Comae may be
detected as an extended FWHM of the asteroid compared to the background stars,
or visually distinctive cometary comae. Recent discoveries of cometary
activity can be found here: http://schiaparelli204.wordpress.com/
Beyond our solar system, amateurs have contributed to exoplanetary transit
discoveries, attempting to measure the 1% diminution in starlight as a giant
planet transits in front of its parent star. \citet{13mousis} points out three
methods where amateurs can contribute to characterising exoplanetary systems ?
(i) by frequent observations of known transits to refine ephemeris; (ii)
searching for transit time variations that can reveal additional planets in a
system; and (iii) searching for previously unidentified transits in known
planetary systems \citep[e.g., the discovery of the transit of HD 80606b from
a 30 cm telescope near London,][]{09fossey}.
\subsubsection{Long Baseline Monitoring}
The diverse and dynamic environments of our solar system are tantalising
targets for amateur observations, both due to their ease of identification and
the chance that some unusual, never-before-seen phenomenon might present
itself before your eyes. Long-term quasi-continuous monitoring of these
objects is highly desirable, but impossible to achieve from over-burdened
professional telescopes. Citizen science is able to plug that gap, providing
an expanding dataset of observations to trace the day-to-day evolution of the
inner and outer planets.
Jupiter?s size and colourful cloud contrasts, with its striped appearance and
large vortices, make it an ideal first target for budding astronomers. Winds,
waves, storms and plumes shape the day-to-day appearance, with cloud
structures being blown east and west by powerful zonal jets. The jet
velocities, and the dispersion of cloud material, reveals processes at work
beneath the visible ammonia ice clouds, and serve as a probe of the fluid
dynamics at work. Tracking the motion of features requires correlation of
images obtained night after night; with filters sounding in and out of strong
jovian methane absorption features providing a three dimensional view of the
planet?s cloud decks. Both colour composites and raw filtered images are
uploaded to online servers, organised by date and time, such as the Planetary
Virtual Observatory and Laboratory (PVOL, http://www.pvol.ehu.es/pvol)
maintained for the International Outer Planets Watch (IOPW) \citep{10hueso}.
The global distribution of giant planet observers permits global monitoring of
Jupiter and Saturn as they rotate over 10 hours. Descriptive records of
morphological changes and events are maintained and continuously updated by
organisations such as the British Astronomical Association (BAA) and
Association of Lunar and Planetary Observers (ALPO). Those images can be
used by amateurs and professionals alike to quantitatively study the zoology
of activity; from measuring wind speeds \citep{08sanchez}; investigating the
strength and changes to the large vortices \citep[e.g., the 2006 reddening of
Oval BA,][]{06simon-miller}; to determining the life cycle of the belt/zone
structure \citep{96sanchez, 11fletcher}.
Similar monitoring studies are underway for Saturn, Uranus and Neptune, with
increasing levels of difficulty. Saturn's appearance is typically more
subdued than that of Jupiter, but 20-30 cm diameter telescopes are capable of
resolving small convective cloud activity. A close collaboration between
amateurs and Cassini spacecraft scientists allows correlation of
lightning-related radio emissions detected by the spacecraft with visible
cloud structures on the disc (known as Saturn Storm Watch)
\citep[e.g.,][]{11fischer}, which would not be possible with the targeted
regional views provided by Cassini's cameras alone. This provides insights
into the moist convective processes thought to power the dynamics of the giant
planet, and is a good example of how citizen science can support an
international planetary mission. Amateur observations of Uranus and Neptune
are in their infancy and require telescopes with diameters exceeding 25 cm,
but there have been confirmed reports of atmospheric banding and discrete
cloud features when near-infrared filters are used to maximise contrast
between white clouds and the background and long exposure times of tens of
minutes.
Active citizen observing also provides long-term monitoring in the inner solar
system. Venus? photochemical smog shields the planet's surface from view, but
discrete cloud features can be used to study the super-rotation of the
Venusian atmosphere and the occurrence of a mysterious ultraviolet absorber
high in the planet?s atmosphere (i.e., using near-UV filters). The Venus
Ground-Based Image Active Archive was created by ESA to provide contextual
observations supporting the Venus Express mission \citep{08barentsen}.
Near-infrared imaging can be used to sample thermal emission from the Venusian
surface on the nightside \citep{93lecacheax}. The Martian atmosphere, with
its ephemeral clouds, seasonal CO2 polar ice cycles and dust storms, continues
to prove popular among citizen observers, although these typically supplement
the wealth of high-resolution information being returned by orbital and
surface missions to the red planet. As with other planetary targets, amateur
observations provide the long temporal records for the evolution of
atmospheric features. Groups such as the International Society of Mars
Observers (IMSO, http://www.mars.dti.ne.jp/~cmo/ISMO.html), the British
Astronomical Association (BAA) and the International Mars Watch program
quantitatively and qualitatively assess these amateur images.
\subsubsection{Reactive to Unexpected Events}
Long-term monitoring exercises prove most fruitful in response to new and
unexpected events, including eruptions of gigantic plumes \citep{08sanchez,
11fletcher}, changes to giant ovals \citep{06simon-miller} and impact debris
produced by asteroidal and cometary collisions \citep{10hammel}. An impact
scar near Jupiter?s south polar region was first discovered in imaging by
Australian amateur Anthony Wesley on July 19th, 2009, and led to an
international campaign of professional observations to understand the
asteroidal collision that had created the scar
\citep[e.g.,][]{10depater,11orton}. As observers use video imaging to capture
their images (see Section \ref{}), those videos have also been used to
identify flashes due to meteors in the jovian atmosphere. At least three
flashes were confirmed between 2010 and 2012, and the light curves used to
determine the sizes and frequency of objects colliding with Jupiter
\citep[e.g.,][]{10hueso}.
Closer to home, citizen scientists play a crucial role in the recording of
rare and unpredictable events such as the fireballs from meteoroid impacts,
such as the February 2013 Chelyabinsk meteor. Video footage of the fireball
and shockwave were essential to scientifically characterise the impactor and
its likely origins. These reconstructed trajectories even permit the recovery
of meteorites from a strewn field (i.e., when the meteor survives the intense
heat of atmospheric entry and reaches the ground). These objects are the
remnant debris left over from the epoch of planetary formation, and fragments
left over from comets and asteroids, so their numbers, sizes and composition
provide a window onto the earliest evolutionary stages of our solar system.
The statistics of these impacts can only be obtained via a global network of
enthusiastic citizen scientists, sharing and publicising their observations of
meteors via the International Meteor Organisation (IMO, www.imo.net). Beyond
Earth, transient impact flashes due to lunar impacts are recorded by video
monitoring of the non-illuminated fraction of the Moon, aiming to determine
the impact hazard at the lunar surface. These quantitative studies of impacts
in the Earth-Moon system allow scientists to understand the meteoritic streams
threading our solar system; identify previously unrecognised meteor showers;
and determine the statistics of potentially hazardous encounters with this
extra-terrestrial material.
% \BLOG{2}{Chris}{Are these the top 5 amateur contributions to astronomy?}
Short case studies:
\begin{itemize}
\item Impacts on planets, the Moon.
\item International Meteoroid Association, world coverage.
\item Planetary observations: JUPOS observers, nightly monitoring.
Martian meteorology?
\item Cometary monitoring.
\item Asteroid and TNO searching.
\item Variable nebulae.
\item Supernova detection.
\end{itemize}
% \BLOG{3}{Leigh}{Will we see it coming?
% How we might better monitor impacts on other worlds.}
%
% \BLOG{??}{Leigh}{April Showers?
% How Can Citizen Scientists Study Planetary Weather?}
%
% \BLOG{??}{Leigh}{What would you like for Christmas, in 2020?
% What instrumentation would you be asking Santa for?}
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Passive Observing (Phil to finish, Chris to comment, 1 page)}
\label{sec:obs:passive}
While amateur astronomers have aquired a great deal of very useful data, the
general population is better equipped than ever to image the sky and make that
data available for scientific analysis. This has been demonstrated by two
recent professionally-led studies, that made use of a largely passive
observing community connected via online social networks not usually
associated with astronomy.
\CaseStudy{The Orbit of Comet Holmes from the Photographs Uploaded to Flickr.}
\citet{Lang++2011} used N images scraped from the photo sharing website Flickr
as inputs to a reconstruction of the orbit of Comet Holmes. This comet was
bright enough to be visible with the naked eye in XX, 20XX, and a large number
of photographs were taken of it, and uploaded to the Flickr site.
\citeauthor{Lang++2011} were able to astrometrically calibrate the images that
contained enough detectable stars in the background using their automatic
image registration software, \texttt{astrometry.net}. This had been enabled as
a Flickr ``bot,'' crawling over all images submitted to the
\texttt{astrometry.net} group and sending the photos' owners messages showing
them where on the sky their images were taken. The calibrated images trace out
the trajectory of the comet over N nights, allowing a refinement of the
comet's orbit of ... As the authors point out ... While in this case the
photographers did not realize they were participating in a scientific study,
the potential of combining powerful calibration software with large amounts of
citizen-supplied imaging data is made clear.
\CaseStudy{Detecting Meteor Showers with Twitter.}
By saving a nightly (?) log of all tweets submitted to the web service
Twitter, \citet{Barentsen++2010} were able to
detect several new meteor showers simply by searching for the text string
``meteor.'' Unwitting naked-eye observers had spotted shooting stars and
tweeted about them, giving rise to a detectable signal in the steam of tweets
that night. The detected sample is incomplete/unlocalised/ etc... However,
this work illustrates the potential both of Twitter as a communication system
for connecting large numbers of observers with a science team, and of networks
of unequipped observers for doing very bright object transient astronomy.
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Data Aquisition in Other Fields (\textbf{Chris}, Phil, 1 page)}
\label{sec:obs:non-astro}
Case studies:
\begin{itemize}
\item Ecology?
\item Social science?
\item Others?
\end{itemize}
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Citizen Instrumentation (\textbf{Leigh}, Phil to edit, 1 pages)}
\label{sec:instr}
Instrumentation built and used by citizen scientists have increased in
sophistication: complex personal observatories with large-aperture motorised
telescope, multiple filters, high precision low-light cameras have become {\it
de rigeur}. Increasingly sophisticated software is also now available to aid
in the reduction and quantitative analysis of amateur imaging, as described in
Section \ref{} below. Vibrationally-damped mounts; advanced CCD and CMOS
detectors; a GOTO system to mechanically move to a set of celestial
coordinates and track that location, all serve to optimise the amount of time
the observer actually gets to spend looking at the sky, and paves the way for
fully robotic observatories. The reader is referred to \citet{13mousis} for a
thorough review of instrumentation currently in use for solar system studies.
The instrumentation and software must necessarily be tuned to the phenomenon
of interest, with many active observers choosing to use video monitoring to
capture images in moment of excellent seeing, a technique known as lucky
imaging. The best images at moments of clear seeing from the high-resolution
video frames are selected, extracted and stacked together in a software
programme. Some software also allows corrections of the distortions
associated with telescope optics and residual atmospheric seeing. These
techniques are commonly employed in observations of planetary atmospheres
(e.g., Venus, Jupiter) to provide high-resolution images, and have the added
benefit of providing time-sampled observations for impact flash detection
\citep[e.g.,][]{10hueso}.
The science contributed has been driven by the instrumentation available to
the citizens, but in some cases amateur observers have undertaken their own
customisation work to contribute new information to the field.
% History: Grote Reber. Recent examples. Rosing at LCOGT. Spectroscopy.
%
% Better monitoring of impacts.
%
% Studying planetary weather.
% \BLOG{3}{Leigh}{Will we see it coming?
% How we might better monitor impacts on other worlds.}
%
% \BLOG{??}{Leigh}{April Showers?
% How Can Citizen Scientists Study Planetary Weather?}
%
% \BLOG{??}{Leigh}{What would you like for Christmas, in 2020?
% What instrumentation would you be asking Santa for?}
% ------------------------------------------------------------------------------
\section{Data Processing (6 pages)}
\label{sec:class}
Building, instrumenting and maintaining a telescope, and then observing the
night sky with it, are perhaps the most familiar activities to amateur
astronomers. Professional astronomers spend far longer working with the data
they have taken after their observing run, reducing and exploring images and
spectra, and detecting and characterising objects and features. This data
processing phase is an essential part of the scientific process; it results in a
set of summary statistics or descriptors of the data, that can be more
conveniently propagated through to the interpretation phase. That is, data
processing involves distillation of data into knowledge -- but stops short of
the generation of understanding. What sorts of data processing have citizens
been actively engaged in? We include the word ``actively'' here, to
differentiate between the data processing that astronomers carry out, and
computing jobs that can be farmed out to grids of computers owned by citizens.
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Image Processing (\textbf{Leigh}, Phil to edit, 1 page)}
\label{sec:class:non-sensory}
Visual classification is by no means the only activity in which citizens have
been participating. One area where visual classification and software
development has translated directly into new knowledge is in the monitoring of
giant planet meteorology, both using images provided by active observers, and
images acquired and archived by professional facilities and spacecraft.
Images are regularly qualitatively described by a number of organisations,
including the British Astronomical Association?s Jupiter
section\footnote{http://www.britastro.org/jupiter/}, by a team of amateurs
with substantial expertise in Jupiter?s appearance \citep{95rogers}. Their
regular bulletins describe the changing appearance of the banded structure,
the emergence of new turbulent structures and weather phenomena, and keep a
record of the long-term atmospheric changes. However, recent software
developments have provided a much more quantitative angle on these
observations. The WinJUPOS
software\footnote{http://jupos.privat.t-online.de/} was developed by a team of
amateurs led by G. Hahn. This allows multiple images to be stacked with a
correction for the rapid (once per ten hour) rotation of Jupiter or Saturn,
then reprojected onto a latitude-longitude coordinate system, so that the
precise positional details of atmospheric features can be determined via
?point-and-click.? By doing this over many nights surrounding Jupiter?s
opposition, the team builds up enormous drift charts (tens of thousands of
positional measurements) for features, ranging from the tiniest convective
feature being moved by the jet streams, to the largest vortices. The
positions can be extrapolated forward in time, enabling targeted observations
by professional observatories or even visiting spacecraft. This long-term
record of Jupiter?s visible appearance by citizen scientists has proven
invaluable for jovian atmospheric scientists.
As described in Section \ref{}, one of the benefits of the lucky imaging
technique for solar system imaging is the hours of video footage of these
planets. These enormous datasets can be processed to search for impact
flashes to constrain the statistics (and detectability) of collisions with a
range of targets, notable Jupiter and the Moon. Software has been written by
citizen scientists for distribution to active observers, allowing them to
process their own video files to search for impacts in an automated way (e.g.,
Jupiter impact detections\footnote{http://www.pvol.ehu.es/software/} and
LunarScan from the ALPO Lunar Meteoritic Impact
Search\footnote{http://alpo-astronomy.org/lunarupload/lunimpacts.htm}). This
avoids the need for transfer and storage of large datasets on some centralised
server. Both positive and negative detections are important to constrain the
likelihood of jovian and lunar impacts.
One of the primary drivers for astrophotographers is to create artistic
masterpieces, remaining true to scientific accuracy but also generating a
product that they are proud to distribute to the broader community. For this
reason, many active observers have ventured into the realm of software
development to reduce, process and clean their astronomical images. Both
commercially available software and freely-distributed home-grown codes have
been used to correct for distortions and stack images, including
Registax\footnote{www.astronomie.be/registax} and
Autostakkert\footnote{www.autostakkert.com}, among others. These programmes
take the video files saved by the camera from the lucky imaging technique
(Section \ref{}) and allow the user to align and stack only the clearest
images. Some differences become noticeable when user preferences are
introduced ? for example, use of wavelets to sharpen images can sometimes
?over-process? the image and introduce artefacts. Colour images are put
together and tuned using commercial packages like Adobe Photoshop, and the
balance between red, green and blue is at the users discretion, usually with
the aim of maximising contrast to show as many features as possible. When
such images are used for science (e.g., point to point contrast measurements),
it is often desirable to work with the raw, unprocessed images alongside the
processed ones, precisely to avoid these artefacts and user biases.
It is not just active observers who have begun using sophisticated image
processing techniques. There is a growing community of citizen software
specialists who devote their time to processing of raw images from
interplanetary missions. Chief among these is the online forum,
UnmannedSpaceflight.com, whose stated aim is to ?advance public interest in,
and use of, space exploration data.? This includes both raw data provided by
the space agencies but not published or officially released (e.g., the Cassini
raw data stream of images from
Saturn\footnote{http://saturn.jpl.nasa.gov/photos/raw/} and those from the
Curiosity rover on Mars\footnote{
http://mars.jpl.nasa.gov/msl/multimedia/raw/}), as well as those images
previously released by the agencies but re-processed and colourised by
dedicated citizen scientists. Depending on the quality of the original, raw
images, this can sometimes produce renderings of old data in new and
startlingly beautiful ways. Although not directly used for scientific
enquiry, they certainly promote astronomy to the broader public.
Citizen image processing expanded enormously with the ease of high performance
personal computing, and the availability of raw images from missions that the
professional teams (i.e., those responsible for running the missions) simply
don?t have the time or resources to process completely. From quantitative
analyses of large datasets, to image processing strategies employed by active
observers and armchair explorers, this field relies on software development to
move forwards.
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Visual Classification in Astronomy (\textbf{Chris}, Phil, 3 pages)}
\label{sec:class:astro}
%Visual classification holds something of a central position in astronomy: there
%is a strong historical tradition of astronomers asking, ``What's that?'' in
%response to a new observation, and the first answer is usually (and most
%usefully) descriptive, rather than explanatory. In the internet age,
%classification of features in images, spectra and time series can be carried out
%at enormous scale by crowds of citizens with web browsers. Such web interfaces
%have come to be known as ``zoos,'' after the first project to engage crowds in
%this way, Galaxy Zoo. Just as in a zoological park, the visitors are shown
%various example specimens, and invited to consider what those specimens might
%be. At the Galaxy Zoo, the visitors are asked to go one step further, and are
%presented with a questionnaire about each specimen they see.
As an observational science, visual classification has played a significant role in astronomical history. Despite significant advances in machine learning and computer vision, the visual inspection of data remains an important part of the subject, taking advantage of the human capacity for pattern recognition. While many in the 1990s predicted that the increasing size of astronomical datasets would make such time-intensive inspection impossible, the ability of the world wide web to reach large audiences has meant the involvement of hundreds of thousands of citizen scientists in this form of data analysis. It is perhaps worth noting that this sort of project represents an inversion of the traditional model of amateur involvement in astronomer; instead of data being supplied by citizen observers for analysis by professionals data gathered by highly specialized and dedicated professional projects are passed to volunteers for analysis.
Case studies:
\begin{itemize}
\item Stardust@home
While significant preliminary work had been carried out by NASA's clickworkers project (see below), the project that first illustrated the potential of crowdsourcing for astronomical purposes was Stardust@home. This effort, which asked volunteers to scan through images of samples returned from Comet Wild-2 by the \emph{Stardust} mission, attracted a large audience to the apparently unprepossessing task of looking for dust grains in an effort to identify samples of material from outside our Solar System. The site was built on BOSSA, an early attempt to build a generalized platform for such crowdsourcing projects (see next section), and featured a stringent test which had to be passed before classifications were counted. Despite this hurdle, more than 20,000 people took part and a variety of dust grains were removed from the aerogel for further study, at least one later proving an excellent candidate for an interstellar grain. Perhaps the most significant long-term impact of Stardust@home, though, was the demonstration that large amounts of volunteer effort were available even for relatively `unsexy' tasks such as hunting dust grains which do not involve intrinsically beautiful images, and that, with a suitable website design and stringent testing, scientifically valuable results could be obtained.
XXXX Add references
% Note to coauthors - I've resorted to crowdsourcing here despite its negative connotations because it's just too tedious to keep writing 'distributed analysis citizen science' or something like that. Other suggestions welcome.
\item Galaxy morphology with Galaxy Zoo
These results directly inspired the development of Galaxy Zoo, perhaps the most prominent scientific crowdsourcing project to date. Galaxy Zoo was built on the continued importance of morphological classification of galaxies. First introduced in a systematic fashion by Hubble, and later developed by amongst others de Vaucoleurs, it remains the case that the morphology of a system is closely related to - but not entirely defined by - parameters such as colour, star formation history, dynamics, concentration and so on. In an effort to prepare for large surveys such as the Sloan Digital Sky Survey (SDSS), Lahav et al. followed especially by the work of Ball et al. developed neural networks trained on small samples of expert classifications in order to automate the process of classification,\footnote{The Lahav papers are perhaps as interesting for their psychology as for their astrophysics, as the classifications reveal the relations between the senior classifiers employed to be experts} arguing that the size of the then up-coming surveys left no place for manual classification.
The performance of the automatic classifiers depended on the input parameters, including colour, magnitude and size. These variables correlate well with morphology, but are not themselves morphological, and when included they dominate the classification. In particularly for galaxies which do not fit the general trends, such as spirals with dominant bulges or star-forming ellipticals, automated classifiers whether using these simple measures or more complex proxies for morphology such as texture fail to match the performance of expert classifiers. Schawinski and Nair, amongst others, spent substantial time during their time as graduate students classifying tens of thousands of galaxies.
Inspired by Stardust@home, a group led by one of the authors (Lintott) created Galaxy Zoo in 2007 to provide basic classifications of SDSS galaxies\footnote{The original Galaxy Zoo is preserved at http://zoo1.galaxyzoo.org with the current incarnation at www.galaxyzoo.org.} Classifiers were presented with a coloured image centered on and scaled to one of more than 800,000 galaxies, and could select from one of six options: clockwise, anti clockwise and edge-on spirals, ellipticals, mergers and `star/don't know'. Despite the initial inclusion of an easily-passed test, little knowledge was required or indeed presented to classifiers who could do something real soon after arriving on the site; this approach, in contrast to Stardust@home where a difficult test needed to be completed before authentic and useful contributions could be made, was successful in encouraging large numbers of visitors to participate. This tactic - in which both passing and sustained engagement provide substantial contribution - is illustrated in figure XXX INSERT BOX DIAGRAM XXXX which shows results from Galaxy Zoo 2. This later version of the project asked for more detailed classifications via a decision tree containing questions such as `How prominent is the bulge?', and later iterations of the project have applied a similar approach to galaxies drawn from \emph{Hubble Space Telescope} surveys including \textsc{GEMS, GOODS, COSMOS} and \textsc{CANDELS}.
XXX STATISTICS XXXX. These figures are undoubtedly impressive, but they would be meaningless if the classifications provided were not suitable for science. With sufficient effort to ensure each galaxy is classified multiple times (as many as 80 for many Galaxy Zoo images), these independent classifications need to be combined into a consensus. As discussed in later sections, this can become complex but for Galaxy Zoo a simple weighting which rewards consistency, first described in Land et al., was suffucient. Importantly, combining classifications provides not only the assignment of a label but, in the vote fraction in a particular category, an indication of the reliability of the classification. This allows more subtle biases, such as the propensity for small, faint or distant galaxies to appear as elliptical regardless of their true morphology, to be measured and accounted for (see Bamford et al.). The net result is that the Galaxy Zoo classifications are an excellent match for results from expert classification, and have produced science ranging from studies of red spirals (Masters et al.) to investigations of spiral spin (Slosar et al.).
A full review of Galaxy Zoo science is beyond the scope of this review; a recent summary is given in the Galaxy Zoo 2 data release paper by Willett et al. However, it is worth noting that many of the project's most important results have been the result not of interaction with the main interface but represent rather serendipitous discoveries made by participants. The best known such system is `Hanny's Voorwerp' (Lintott et al.), a galaxy-scale light echo which reveals a recent ($\sim 100000$ years) shutdown of AGN activity in IC 2497, the neighboring spiral galaxy. The discovery of the Voorwerp, first recorded in the Galaxy Zoo forum a few weeks after the project started, inspired a more systematic search for similar phenomena in other galaxies. This project, made possible by the deep engagement of Galaxy Zoo team member Bill Keel in the forum community, succeeding in finding more than forty instances of clouds which appear to have been ionized by AGN activity, in systems a third of which show signs of significant drops in activity on a timescale of tens of thousands of years.
The ability of volunteers to carry out their own research, moving far beyond the mere `clockwork' required by the main interface, is best illustrated by the discovery of the Galaxy Zoo Peas. These small, round and, in SDSS imaging, green systems are dwarf systems with specific star formation rates (SFR per unit mass) which are unprecedented in the local Universe, matched only by high-redshift Lyman-break galaxies. Volunteers not only identified these systems, but organized a systematic search and further review of them, including using tools designed by SDSS for professional astronomers to acquire and study spectral data. The discovery of the Peas marked the first time the Galaxy Zoo team realized the potential of the community of citizen scientists the project had acquired, but it is important to note that the simpler, initial interaction provided by the main interface was necessary in order to develop that community in the first place. The participants in the citizen scientists' investigation of the Peas did not arrive on the site wanting to dig into spectra or confident of their ability to do so; these were the results of their participation. The project is, in addition to producing science, acting as an `engine of motivation' in inspiring its participants to become more involved.
We have dwelt on Galaxy Zoo at length because it allows us to clearly see the key advantages of crowdsourcing as a solution to scientific data analysis. It is capable of \emph{scaling} to the size of modern data sets to produce results of scientific value. It enables \emph{serendipity}, giving individual attention to each image and allowing the identification of (and advocacy for) systems which are literally one in a million such as Hanny's Voorwerp. The large datasets it produces, and in particular the ability to quantify uncertainty, improve \emph{machine learning} by providing large, rich training sets. Last but not least, crowdsourcing projects have enormous \emph{educational} potential, teaching participating volunteers about science and about the process of science even when that is not the explicit goal of the project.
xxxx More references
\item Surfaces of solar system bodies: Moon Zoo, Moonwatch. Saturn storms. JUPOS
measurers.
If studying galaxies remains, at least in part, a visual pursuit, then the same is certainly true of planetary science. NASA's clickworkers, which asked volunteers to identify craters on the Martain surface, lays claim to be the oldest astronomical crowdsourcing project. The consensus results matched those available from experts XXXXX CHECK XXXXX at the time, but failed to go beyond this promising start to produce results of real scientific value. More recently, interfaces inviting classifiers to look at the Moon, Mercury, Mars and Vesta have been launched and attracted significant classifications, but although preliminary results have been promising these projects have yet to produce datasets that have been used by the planetary science community in the same way that Galaxy Zoo has by the astronomical community.
%Saturn and JUPOS to be added - I don't know much about either.
%Is this too negative? I wanted to go on to say lots about the need for serious effort to make use of classifications, but felt it was perhaps better to leave it there and move on.
\item Time domain astronomy: Supernova Zoo, PlanetHunters
\item Rapid-reaction events (jovian/lunar impacts, storm/plume eruptions)
\item Data mining for asteroids and TNOs.
\end{itemize}
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Visual Classification in Other Fields (\textbf{Chris}, Phil, 1 page)}
\label{sec:class:non-astro}
There is now a diverse range of zoo-like citizen science portals online,
covering social as well as natural sciences. What can we learn from visual
classification projects outside astronomy?
\begin{itemize}
\item Annotation in Ancient Lives
\item etc.
\end{itemize}
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\phil{I think citizen software belongs here...}
\subsection{Software development by citizens (\textbf{Phil}, Chris, 1 page)}
\label{sec:instr:software}
JUPOS measurers: wind measurement.
Impact detection.
PlanetHunters, Galaxy Zoo analysis.
Stumm at astrometry.net.
Collaborative development projects with citizens.
% ------------------------------------------------------------------------------
\section{Data Modeling: Citizen Analysts (4 pages)}
\label{sec:model}
New understanding of the world comes from the interpretation of data in the
context of a model. The modeling activity itself often has technical
difficulties that computers may find hard to overcome, associated with complex
and/or computationally expensive, likelihood functions. Humans, by applying
their developed intuition, can often contribute a great deal to the
exploration of a model's parameter space by closing in quickly on the model
configurations that are fit the data well. This process can be particularly
satisfying, rather like solving a puzzle. How have citizen scientists been
involved in model making and data fitting in astronomy, to date?
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Data Modeling in Astronomy (Chris to read, edit and supplement, 2 pages)}
\label{sec:model:astro}
A number of web-based citizen astronomy projects include an element of data
modeling as part of their set tasks. The Milky Way Project
\citep{SimpsonEtal2012} provides volunteers with a fairly flexible set of
annulus-drawing tools, for annotating circularly-symmetric ``bubble'' features
in colour-composite (24.0, 8.0 and 4.5$\mu$m) infrared images from surveys
carried out by the Spitzer space telescope, which are hypothesised to have
been caused by a recently-formed high mass star at the centre of the bubble.
The (bubble) model in this case is simple and recognisable, making both the
interface constructions and its operation relatively straightforward. The
large sample of bubble models have been used to investigate the possibility
of further star formation being triggered at the bubble surfaces
\citep{KendrewEtal2012}.
Another Zooniverse project, Space
Warps,\footnote{\texttt{http://spacewarps.org}} also involves data modeling,
but not directly on the interface, which is restricted to enabling
identification (``spotting'') gravitational lensed images. A fraction of the
community is engaged in modeling the identified lens candidates using
web-based software developed and supported by the science
team.\footnote{\texttt{Lens Labs}}
Perhaps the most advanced attempt at data modeling in astronomical web-based
citizen science has been the Galaxy Zoo Mergers project
\citep{HolincheckEtal2010,WallinEtal2010}. Here, simple N-body simulations of
galaxy mergers were performed in a java applet, and the results selected
according to visual similarity to images of galaxy mergers (previously
identified in the Galaxy Zoo project). A key proposal in this project is that
the inspectors of the simulation outputs would be able to find matches to the
data more readily than a computer could, for two reasons. First is that humans
are good at {\it vague} pattern matching: they do not get distracted by
detailed pixel value comparisons but instead have an intuitive understanding
of when one object is ``like'' another. The second is that initialising a
galaxy merger simulation requires a large number of parameters to be set --
and its this high dimensionality that makes the space of possible models hard
to explore for a machine. Humans should be able to navigate the space using
their intuition, which is partly physical and partly learned from experience
gained from playing with the system. Initial tests on Arp 86 showed the crowd
converging on a single location in parameter space, and that the simulated
mergers at this location do indeed strongly resemble the Arp 86 system. The
authors have since collected thousands of citizen-generated models for a
sample of a large number SDSS merging systems (Holincheck et al, in
preparation).
%%%%%%%%%%%%%%%%%%%
\begin{figure}[t]
\begin{minipage}{\linewidth}
\begin{minipage}{0.45\linewidth}
\centering\includegraphics[width=\linewidth]{figs/SimpsonEtal2012_interface.png}
\end{minipage}\hfill
\begin{minipage}{0.51\linewidth}
\centering\includegraphics[width=\linewidth]{figs/SimpsonEtal2012_bubbles.png}
\end{minipage}\hfill
\end{minipage}
\medskip
\begin{minipage}{\linewidth}
\begin{minipage}{0.48\linewidth}
\centering\includegraphics[width=\linewidth]{figs/HolincheckEtal2010_comparing.png}
\end{minipage}\hfill
\begin{minipage}{0.48\linewidth}
\centering\includegraphics[width=\linewidth]{figs/HolincheckEtal2010_enhancing.png}
\end{minipage}\hfill
\end{minipage}
\caption{Examples of image modeling in web-based citizen science projects. Top
row: star formation ``bubble'' identification and interpretation in Spitzer
images in the Milky Way Project, with the annotation interface shown on the
left, and some example (selected, averaged) bubbles on the right. Images from
\citet{SimpsonEtal2012}. Bottom row: matching N-body simulated merging
galaxies to SDSS images in the Galaxy Zoo Mergers project (left), and
exploring parameter space two parameters at a time to refine the models
(right). Screenshots from \citet{HolincheckEtal2010}.}
\label{fig:modeling}
\end{figure}
%%%%%%%%%%%%%%%%%%%
The above examples involved modeling infrastructure provided by either the
project's developers or science teams. There have also been cases where
citizens have carried out modeling analyses using their own tools, or writing
their own software. For example, in the PlanetHunters project, a small group
[?] of volunteers downloaded full Kepler lightcurve datasets for the best [?]
community-selected candidates, and fitted transit lightcurves to them using
[?]. [Chris: can you please confirm and extend this?]
Another very interesting case is that of the analysis challenges organised by
the professional cosmology community. The measurement of weak gravitational
lensing by large scale structure (``cosmic shear'') relies on the measurement
of the shapes of distant, faint galaxies with extreme accuracy. The STEP
\citep{HeymansEtal2006,MasseyEtal2007} and GREAT
\citep{BridleEtal2010,KitchingEtal2012,KitchingEtal2013a} blind galaxy shape
estimation challenges have had an enormous impact on the field, revealing
biases present in existing techniques, and providing a way for researchers
outside the world of professional cosmology to participate. In particular, the
GREAT08 challenge saw very successful entries (including the winner) from two
(out of a total of 11) teams of researchers from outside the field (albeit
still professional researchers). A companion, somewhat streamlined galaxy
shape measurement challenge, ``Mapping Dark Matter,'' which was hosted at the
Kaggle website\footnote{\texttt{http://www.kaggle.com/c/mdm}}
\citep{KitchingEtal2013b}. The wider reach of this platform led to over 70
teams making over 700 entries to the competition; in a comparison with the
GREAT challenges, the authors found a factor of several improvement in shear
accuracy over comparable previous challenges. \citet{KitchingEtal2013b}
suggest two interesting explanations for the success of the Kaggle challenge.
First, the challenge was designed to be as accessible as possible, with an
extensive training set of data that needed very little explanation; in this
way the challenge was geared towards {\it idea generation}. Second, they note
that the competitive nature of the challenge (a webpage leaderboard was
updated in real time as entries were submitted) seemed to stimulate the
analysts into improving their submissions. Kaggle offers cash prizes, which
will have had some effect as well (the pot
was \$3000 for this challenge, even if indirectly).
A second astronomical Kaggle challenge involved inferring the positions of
dark matter halos based on their weak lensing effects (``Dark
Worlds,''\footnote{\texttt{http://www.kaggle.com/c/DarkWorlds}} Harvey et al,
in prep.) This challenge attracted the attention of 357 teams, perhaps due to
its larger prizes. It also sparked some debate in its forums as to the design
of the challenge: the models used to generate the data, the size of the test
datasets (and consequent stability of the leaderboard), the choice of
leaderboard metric and so on. These issues are also of generic importance for
scientists looking to crowd-source algorithm development. It is interesting to
note that the Kaggle forums are a useful resource for the Kaggle development
team: the citizens who are active there do influence the design of the site
infrastructure and challenge rules (D.~Harvey, priv.~comm.).
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Data Modeling in Other Fields (\textbf{Phil}, Chris, 2 pages)}
\label{sec:model:astro}
Case studies:
\begin{itemize}
\item Protein folding with Fold.it. Gamification as a technique.
\item Other examples: look around SciStarter.
\end{itemize}
% \BLOG{??}{Phil}{Who's really doing all the work?}
% ------------------------------------------------------------------------------
\section{Data Exploration: Citizen Enquiry (3 pages)}
\label{sec:explore}
The previous sections have focused on specific, and isolated, activities in
which citizens have participated. In most cases, the community's involvement has
been a {\it contribution} to a scientific investigation, while not being
involved in the design of the investigation. The most important part of any
scientific investigation is the question at the heart of it: what is it we are
trying to find out about the world? In this section we look at some cases where
the process of enquiry, the science, has been instigated or led by citizens. In
principle, this is an area of great potential. Professional scientists can find
it very difficult to step back from the technical details of their work, and see
the bigger picture; in contrast, outsiders only see the big picture, and so we
might expect them to ask some unusual, surprising and searching questions.
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Individuals in action (Phil to edit, 1 page)}
\label{sec:explore:individuals}
The constraints of funding proposals and management of research groups can
often mean that professional scientists focus very narrowly on particular
topics of research, using a particular technique for which they become known.
Steering away from this course implies taking risks with time management, and
allocation of resources to an ultimately fruitless research area can be
detrimental to careers. Citizen scientists are largely free of these
managerial and budgetary constraints, and are able to devote their attentions
to whatever topics interest them. We propose that the creativity of citizen
scientists, and the freedom to ask questions and direct scientific enquiry, is
nurtured by the creation of communities. These can be online communities,
with individuals contributing ideas via discussion groups and challenging one
another; or they can be ready-made communities, such as school classes and
family groups.
Online forums arguably provide the most direct connection between citizens and
professional scientists, and have already been discussed in this review.
Examples of individual successes include the ?Saturn Storm Watch? connecting
Cassini?s observations of lightning emissions with active amateur observations
of convective cloud structures within the giant planet atmosphere; and the
tracking of the vertices of Saturn?s bizarre north polar hexagon
\citep{88godfrey}, a 6-sided planet encircling wave that has persisted for at
least 30 years but that has only recently been observed by amateur
astronomers. In the first case, citizen scientists wished to identify the
source of Saturn?s radio emissions. In the latter case, the long-term
evolution of the hexagon vertices is being used to understand what sort of
wave this is, and to identify its origins.
Astronomy as an educational tool has been used to encourage a whole new
generation of citizen astronomers, and the aid of teachers in guiding and
encouraging the enquiries of school children is essential for the teaching of
the scientific method. The Faulkes telescope is an excellent example of
citizen-led enquiry ? both student-devised and teacher-led investigations can
be performed at the network of robotic observatories in Hawaii and Australia,
allowing students to develop scientific questions using their own data and
collaboration with other students around the world. A selection of some of
these projects can be found here:
http://www.faulkes-telescope.com/showcases/schools. Other observatories
around the world have telescopes devoted to citizen enquiry ? the Pic-du-Midi
observatory\footnote{http://www.obs-mip.fr/pic-du-midi} in the French Pyrenees
has a 0.6-m telescope devoted to amateur observers. For example, in 2013 M.
Delacroix used the 1-m observatory to image details on Uranus and
Neptune\footnote{http://www.cloudynights.com/ubbthreads/showflat.php/Cat/0/Number/5955129/page/0/view/collapsed/sb/5/o/all/fpart/1/vc/1}.
Case studies:
\begin{itemize}
\item Teacher-led science: Blackawton Bees.
\item Families as research groups: Monster eyes. % http://blogs.discovermagazine.com/notrocketscience/2012/10/30/12-year-old-uses-dungeons-and-dragons-to-help-scientist-dad-with-his-research/
\end{itemize}
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
\subsection{Facilitated research groups (\textbf{Chris}, Phil, 2 pages)}
\label{sec:explore:groups}
Case studies:
\begin{itemize}
\item Galaxy Zoo forum. Voorwerp, Green Peas. Lens thread: search and model.
\item Planet Hunters' investigations
\item Quench.
\item Deep sky obs (variable nebulae etc). Amateur asteroid observations and follow-up.
\end{itemize}