-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.bib
More file actions
1607 lines (1505 loc) · 74.2 KB
/
lib.bib
File metadata and controls
1607 lines (1505 loc) · 74.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
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
@ARTICLE{2022Pandhi,
author = {{Pandhi}, Ayush and {Hutschenreuter}, Sebastian and {West}, Jennifer and {Gaensler}, Bryan and {Stock}, Ashley},
title = "{A method for reconstructing the Galactic magnetic field using dispersion of fast radio bursts and Faraday rotation of radio galaxies}",
journal = {arXiv e-prints},
keywords = {Astrophysics - Astrophysics of Galaxies},
year = 2022,
month = aug,
eid = {arXiv:2208.06417},
pages = {arXiv:2208.06417},
archivePrefix = {arXiv},
eprint = {2208.06417},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2022arXiv220806417P},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
}
@unpublished{2022van_Eck,
author = {{van Eck et al.}, C.},
title = "RMTable and PolSpectra: standards for reporting polarization and Faraday rotation measurements of radio source",
note = "submitted",
journal = "\apjs",
year = 2022,
}
@ARTICLE{2022Arras,
author = {{Arras}, Philipp and {Frank}, Philipp and {Haim}, Philipp and {Knollm{\"u}ller}, Jakob and {Leike}, Reimar and {Reinecke}, Martin and {En{\ss}lin}, Torsten},
title = "{Variable structures in M87* from space, time and frequency resolved interferometry}",
journal = {Nature Astronomy},
keywords = {Astrophysics - Instrumentation and Methods for Astrophysics, Astrophysics - Astrophysics of Galaxies},
year = 2022,
month = jan,
volume = {6},
pages = {259-269},
doi = {10.1038/s41550-021-01548-0},
archivePrefix = {arXiv},
eprint = {2002.05218},
primaryClass = {astro-ph.IM},
adsurl = {https://ui.adsabs.harvard.edu/abs/2022NatAs...6..259A},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2022Hutschenreuter,
author = {{Hutschenreuter}, S. and {Anderson}, C.~S. and {Betti}, S. and {Bower}, G.~C. and {Brown}, J. -A. and {Br{\"u}ggen}, M. and {Carretti}, E. and {Clarke}, T. and {Clegg}, A. and {Costa}, A. and {Croft}, S. and {Van Eck}, C. and {Gaensler}, B.~M. and {de Gasperin}, F. and {Haverkorn}, M. and {Heald}, G. and {Hull}, C.~L.~H. and {Inoue}, M. and {Johnston-Hollitt}, M. and {Kaczmarek}, J. and {Law}, C. and {Ma}, Y.~K. and {MacMahon}, D. and {Mao}, S.~A. and {Riseley}, C. and {Roy}, S. and {Shanahan}, R. and {Shimwell}, T. and {Stil}, J. and {Sobey}, C. and {O'Sullivan}, S.~P. and {Tasse}, C. and {Vacca}, V. and {Vernstrom}, T. and {Williams}, P.~K.~G. and {Wright}, M. and {En{\ss}lin}, T.~A.},
title = "{The Galactic Faraday rotation sky 2020}",
journal = {\aap},
keywords = {Galaxy: general, ISM: magnetic fields, ISM: structure, Galaxy: structure, Astrophysics - Astrophysics of Galaxies},
year = 2022,
month = jan,
volume = {657},
eid = {A43},
pages = {A43},
doi = {10.1051/0004-6361/202140486},
archivePrefix = {arXiv},
eprint = {2102.01709},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2022A&A...657A..43H},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2022Nergis,
author = {{Raycheva}, N.~C. and {Haverkorn}, M. and {Ideguchi}, S. and {Stil}, J.~M. and {Gaensler}, B.~M. and {Sun}, X. and {Han}, J.~L. and {Carretti}, E. and {Gao}, X.~Y. and {Wijte}, T.},
title = "{Turbulent magnetic field in the HII region Sh 2-27}",
journal = {arXiv e-prints},
keywords = {Astrophysics - Astrophysics of Galaxies},
year = 2022,
month = jun,
eid = {arXiv:2206.01787},
pages = {arXiv:2206.01787},
archivePrefix = {arXiv},
eprint = {2206.01787},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2022arXiv220601787R},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2022Platz,
author = {{Platz}, Lukas I. and {Knollm{\"u}ller}, Jakob and {Arras}, Philipp and {Frank}, Philipp and {Reinecke}, Martin and {J{\"u}stel}, Dominik and {En{\ss}lin}, Torsten A.},
title = "{Multi-Component Imaging of the Fermi Gamma-ray Sky in the Spatio-spectral Domain}",
journal = {arXiv e-prints},
keywords = {Astrophysics - High Energy Astrophysical Phenomena},
year = 2022,
month = apr,
eid = {arXiv:2204.09360},
pages = {arXiv:2204.09360},
archivePrefix = {arXiv},
eprint = {2204.09360},
primaryClass = {astro-ph.HE},
adsurl = {https://ui.adsabs.harvard.edu/abs/2022arXiv220409360P},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2022Seta,
author = {{Seta}, Amit and {Federrath}, Christoph and {Livingston}, Jack D. and {McClure-Griffiths}, N.~M.},
title = "{Rotation measure structure functions with higher-order stencils as a probe of small-scale magnetic fluctuations and its application to the Small and Large Magellanic Clouds}",
journal = {arXiv e-prints},
keywords = {Astrophysics - Astrophysics of Galaxies, Astrophysics - Cosmology and Nongalactic Astrophysics},
year = 2022,
month = jun,
eid = {arXiv:2206.13798},
pages = {arXiv:2206.13798},
archivePrefix = {arXiv},
eprint = {2206.13798},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2022arXiv220613798S},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2022Livingston,
author = {{Livingston}, J.~D. and {McClure-Griffiths}, N.~M. and {Mao}, S.~A. and {Ma}, Y.~K. and {Gaensler}, B.~M. and {Heald}, G. and {Seta}, A.},
title = "{A radio polarization study of magnetic fields in the Small Magellanic Cloud}",
journal = {\mnras},
keywords = {polarization, ISM: magnetic fields, Magellanic Clouds, Astrophysics - Astrophysics of Galaxies},
year = 2022,
month = feb,
volume = {510},
number = {1},
pages = {260-275},
doi = {10.1093/mnras/stab3375},
archivePrefix = {arXiv},
eprint = {2112.04044},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2022MNRAS.510..260L},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2021Price,
author = {{Price}, D.~C. and {Flynn}, C. and {Deller}, A.},
title = "{A comparison of Galactic electron density models using PyGEDM}",
journal = {\pasa},
keywords = {pulsars:general, stars:distances, ISM:structure, fast radio bursts, Astrophysics - Astrophysics of Galaxies, Astrophysics - High Energy Astrophysical Phenomena},
year = 2021,
month = aug,
volume = {38},
eid = {e038},
pages = {e038},
doi = {10.1017/pasa.2021.33},
archivePrefix = {arXiv},
eprint = {2106.15816},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2021PASA...38...38P},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2021Mertsch,
author = {{Mertsch}, P. and {Vittino}, A.},
title = "{Bayesian inference of three-dimensional gas maps. I. Galactic CO}",
journal = {\aap},
keywords = {Galaxy: structure, ISM: kinematics and dynamics, ISM: molecules, methods: statistical, Astrophysics - Astrophysics of Galaxies},
year = 2021,
month = nov,
volume = {655},
eid = {A64},
pages = {A64},
doi = {10.1051/0004-6361/202141000},
archivePrefix = {arXiv},
eprint = {2012.15770},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2021A&A...655A..64M},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2021Reeb,
author = {{Reeb}, N. and {Hutschenreuter}, S. and {Zehetner}, P. and {Ensslin}, T. and {Alves}, S. and {Andr{\'e}}, M. and {Anghinolfi}, M. and {Anton}, G. and {Ardid}, M. and {Aubert}, J. -J. and {Aublin}, J. and {Baret}, B. and {Basa}, S. and {Belhorma}, B. and {Bendahman}, M. and {Bertin}, V. and {Biagi}, S. and {Bissinger}, M. and {Boumaaza}, J. and {Bouta}, M. and {Bouwhuis}, M.~C. and {Br{\^a}nza{\c{s}}}, H. and {Bruijn}, R. and {Brunner}, J. and {Busto}, J. and {Caiffi}, B. and {Capone}, A. and {Caramete}, L. and {Carr}, J. and {Carretero}, V. and {Celli}, S. and {Chabab}, M. and {Chau}, T.~N. and {Cherkaoui El Moursli}, R. and {Chiarusi}, T. and {Circella}, M. and {Coleiro}, A. and {Colomer-Molla}, M. and {Coniglione}, R. and {Coyle}, P. and {Creusot}, A. and {D{\'\i}az}, A.~F. and {de Wasseige}, G. and {Deschamps}, A. and {Distefano}, C. and {Di Palma}, I. and {Domi}, A. and {Donzaud}, C. and {Dornic}, D. and {Drouhin}, D. and {Eberl}, T. and {van Eeden}, T. and {El Khayati}, N. and {Enzenh{\"o}fer}, A. and {Fermani}, P. and {Ferrara}, G. and {Filippini}, F. and {Fusco}, L. and {Gatelet}, Y. and {Gay}, P. and {Glotin}, H. and {Gozzini}, R. and {Ruiz}, R. Gracia and {Graf}, K. and {Guidi}, C. and {Hallmann}, S. and {van Haren}, H. and {Heijboer}, A.~J. and {Hello}, Y. and {Hern{\'a}ndez-Rey}, J.~J. and {H{\"o}{\ss}l}, J. and {Hofest{\"a}dt}, J. and {Huang}, F. and {Illuminati}, G. and {James}, C.~W. and {Jisse-Jung}, B. and {Jong}, M. d. and {Jong}, P. d. and {Jongen}, M. and {Kadler}, M. and {Kalekin}, O. and {Katz}, U. and {Khan-Chowdhury}, N.~R. and {Kouchner}, A. and {Kreykenbohm}, I. and {Kulikovskiy}, V. and {Lahmann}, R. and {Le Breton}, R. and {Lef{\`e}vre}, D. and {Leonora}, E. and {Levi}, G. and {Lincetto}, M. and {Lopez-Coto}, D. and {Loucatos}, S. and {Maderer}, L. and {Manczak}, J. and {Marcelin}, M. and {Margiotta}, A. and {Marinelli}, A. and {Mart{\'\i}nez-Mora}, J.~A. and {Melis}, K. and {Migliozzi}, P. and {Moussa}, A. and {Muller}, R. and {Nauta}, L. and {Navas}, S. and {Nezri}, E. and {Fearraigh}, B. {\'O} and {Organokov}, M. and {P{\u{a}}v{\u{a}}la{\c{s}}}, G.~E. and {Pellegrino}, C. and {Perrin-Terrin}, M. and {Piattelli}, P. and {Pieterse}, C. and {Poir{\`e}}, C. and {Popa}, V. and {Pradier}, T. and {Randazzo}, N. and {Reck}, S. and {Riccobene}, G. and {Romanov}, A. and {S{\'a}nchez-Losa}, A. and {Salesa Greus}, F. and {Samtleben}, D.~F.~E. and {Sanguineti}, M. and {Sapienza}, P. and {Schnabel}, J. and {Schumann}, J. and {Sch{\"u}ssler}, F. and {Spurio}, M. and {Stolarczyk}, Th. and {Taiuti}, M. and {Tayalati}, Y. and {Tingay}, S.~J. and {Vallage}, B. and {Van Elewyck}, V. and {Versari}, F. and {Viola}, S. and {Vivolo}, D. and {Wilms}, J. and {Zavatarelli}, S. and {Zegarelli}, A. and {Zornoza}, J.~D. and {Z{\'u}{\~n}iga}, J.},
title = "{Studying Bioluminescence Flashes with the ANTARES Deep Sea Neutrino Telescope}",
journal = {arXiv e-prints},
keywords = {Physics - Atmospheric and Oceanic Physics, Astrophysics - Instrumentation and Methods for Astrophysics, Quantitative Biology - Populations and Evolution},
year = 2021,
month = jul,
eid = {arXiv:2107.08063},
pages = {arXiv:2107.08063},
archivePrefix = {arXiv},
eprint = {2107.08063},
primaryClass = {physics.ao-ph},
adsurl = {https://ui.adsabs.harvard.edu/abs/2021arXiv210708063R},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2021Frank,
author = {{Frank}, Philipp and {Leike}, Reimar and {En{\ss}lin}, Torsten A.},
title = "{Geometric Variational Inference}",
journal = {Entropy},
keywords = {Statistics - Methodology, Astrophysics - Instrumentation and Methods for Astrophysics, Statistics - Machine Learning},
year = 2021,
month = jul,
volume = {23},
number = {7},
pages = {853},
doi = {10.3390/e23070853},
archivePrefix = {arXiv},
eprint = {2105.10470},
primaryClass = {stat.ME},
adsurl = {https://ui.adsabs.harvard.edu/abs/2021Entrp..23..853F},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2021Seta,
author = {{Seta}, Amit and {Federrath}, Christoph},
title = "{Magnetic fields in the Milky Way from pulsar observations: effect of the correlation between thermal electrons and magnetic fields}",
journal = {\mnras},
keywords = {polarization, methods: numerical, methods: observational, pulsars: general, ISM: magnetic fields, Astrophysics - Astrophysics of Galaxies},
year = 2021,
month = apr,
volume = {502},
number = {2},
pages = {2220-2237},
doi = {10.1093/mnras/stab128},
archivePrefix = {arXiv},
eprint = {2101.05384},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2021MNRAS.502.2220S},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2021Ferriere,
author = {{Ferri{\`e}re}, K. and {West}, J.~L. and {Jaffe}, T.~R.},
title = "{The correct sense of Faraday rotation}",
journal = {\mnras},
keywords = {plasmas, polarization, ISM: magnetic fields, radio continuum: ISM, Astrophysics - Astrophysics of Galaxies},
year = 2021,
month = nov,
volume = {507},
number = {4},
pages = {4968-4982},
doi = {10.1093/mnras/stab1641},
archivePrefix = {arXiv},
eprint = {2106.03074},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2021MNRAS.507.4968F},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2020Ferriere,
author = {{Ferri{\`e}re}, K.},
title = "{Plasma turbulence in the interstellar medium}",
journal = {Plasma Physics and Controlled Fusion},
keywords = {interstellar medium, plasma, magnetic field, turbulence, Astrophysics - Astrophysics of Galaxies, Astrophysics - High Energy Astrophysical Phenomena},
year = 2020,
month = jan,
volume = {62},
number = {1},
pages = {014014},
doi = {10.1088/1361-6587/ab49eb},
archivePrefix = {arXiv},
eprint = {1912.08237},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2020PPCF...62a4014F},
}
@ARTICLE{2020Ocker,
author = {{Ocker}, Stella Koch and {Cordes}, James M. and {Chatterjee}, Shami},
title = "{Electron Density Structure of the Local Galactic Disk}",
journal = {\apj},
keywords = {Pulsars, Galaxy structure, Interstellar medium, Milky Way disk, H II regions, Superbubbles, 847, 1050, 1306, 1656, 694, 622, Astrophysics - Astrophysics of Galaxies, Astrophysics - High Energy Astrophysical Phenomena},
year = 2020,
month = jul,
volume = {897},
number = {2},
eid = {124},
pages = {124},
doi = {10.3847/1538-4357/ab98f9},
archivePrefix = {arXiv},
eprint = {2004.11921},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2020ApJ...897..124O},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2020Polderman,
author = {{Polderman}, I.~M. and {Haverkorn}, M. and {Jaffe}, T.~R.},
title = "{A more detailed look at Galactic magnetic field models: using free-free absorption in HII regions}",
journal = {arXiv e-prints},
keywords = {Astrophysics - Astrophysics of Galaxies},
year = 2020,
month = feb,
eid = {arXiv:2002.09204},
pages = {arXiv:2002.09204},
archivePrefix = {arXiv},
eprint = {2002.09204},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2020arXiv200209204P},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2020BeyondMain,
author = {{BeyondPlanck Collaboration} and {Andersen}, K.~J. and {Aurlien}, R. and {Banerji}, R. and {Bersanelli}, M. and {Bertocco}, S. and {Brilenkov}, M. and {Carbone}, M. and {Colombo}, L.~P.~L. and {Eriksen}, H.~K. and {Eskilt}, J.~R. and {Foss}, M.~K. and {Franceschet}, C. and {Fuskeland}, U. and {Galeotta}, S. and {Galloway}, M. and {Gerakakis}, S. and {Gjerl{\o}w}, E. and {Hensley}, B. and {Herman}, D. and {Iacobellis}, M. and {Ieronymaki}, M. and {Ihle}, H.~T. and {Jewell}, J.~B. and {Karakci}, A. and {Keih{\"a}nen}, E. and {Keskitalo}, R. and {Maggio}, G. and {Maino}, D. and {Maris}, M. and {Mennella}, A. and {Paradiso}, S. and {Partridge}, B. and {Reinecke}, M. and {San}, M. and {Suur-Uski}, A. -S. and {Svalheim}, T.~L. and {Tavagnacco}, D. and {Thommesen}, H. and {Watts}, D.~J. and {Wehus}, I.~K. and {Zacchei}, A.},
title = "{BeyondPlanck I. Global Bayesian analysis of the Planck Low Frequency Instrument data}",
journal = {arXiv e-prints},
keywords = {Astrophysics - Cosmology and Nongalactic Astrophysics},
year = 2020,
month = nov,
eid = {arXiv:2011.05609},
pages = {arXiv:2011.05609},
archivePrefix = {arXiv},
eprint = {2011.05609},
primaryClass = {astro-ph.CO},
adsurl = {https://ui.adsabs.harvard.edu/abs/2020arXiv201105609B},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2020Kulkarni,
author = {{Kulkarni}, S.~R.},
title = "{Dispersion measure: Confusion, Constants \& Clarity}",
journal = {arXiv e-prints},
keywords = {Astrophysics - High Energy Astrophysical Phenomena},
year = 2020,
month = jul,
eid = {arXiv:2007.02886},
pages = {arXiv:2007.02886},
archivePrefix = {arXiv},
eprint = {2007.02886},
primaryClass = {astro-ph.HE},
adsurl = {https://ui.adsabs.harvard.edu/abs/2020arXiv200702886K},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2020Reissl,
author = {{Reissl}, S. and {Stil}, J.~M. and {Chen}, E. and {Tre{\ss}}, R.~G. and {Sormani}, M.~C. and {Smith}, R.~J. and {Klessen}, R.~S. and {Buick}, M. and {Glover}, S.~C.~O. and {Shanahan}, R. and {Lemmer}, S.~J. and {Soler}, J.~D. and {Beuther}, H. and {Urquhart}, J.~S. and {Anderson}, L.~D. and {Menten}, K.~M. and {Brunthaler}, A. and {Ragan}, S. and {Rugel}, M.~R.},
title = "{Synthetic observations of spiral arm tracers of a simulated Milky Way analog}",
journal = {\aap},
keywords = {Galaxy: structure, Galaxy: fundamental parameters, ISM: bubbles, ISM: magnetic fields, local insterstellar matter, Astrophysics - Astrophysics of Galaxies},
year = 2020,
month = oct,
volume = {642},
eid = {A201},
pages = {A201},
doi = {10.1051/0004-6361/202037690},
archivePrefix = {arXiv},
eprint = {2007.11084},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2020A&A...642A.201R},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Krishnakumar,
author = {{Krishnakumar}, M.~A. and {Maan}, Yogesh and {Joshi}, B.~C. and {Manoharan}, P.~K.},
title = "{Multi-frequency Scatter-broadening Evolution of Pulsars. II. Scatter-broadening of Nearby Pulsars}",
journal = {\apj},
keywords = {ISM: general, pulsars: general, scattering, Astrophysics - High Energy Astrophysical Phenomena},
year = 2019,
month = jun,
volume = {878},
number = {2},
eid = {130},
pages = {130},
doi = {10.3847/1538-4357/ab20c5},
archivePrefix = {arXiv},
eprint = {1905.01651},
primaryClass = {astro-ph.HE},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...878..130K},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Thomson,
author = {{Thomson}, Alec J.~M. and {Landecker}, T.~L. and {Dickey}, John M. and {McClure-Griffiths}, N.~M. and {Wolleben}, M. and {Carretti}, E. and {Fletcher}, A. and {Federrath}, Christoph and {Hill}, A.~S. and {Mao}, S.~A. and {Gaensler}, B.~M. and {Haverkorn}, M. and {Clark}, S.~E. and {Van Eck}, C.~L. and {West}, J.~L.},
title = "{Through thick or thin: multiple components of the magneto-ionic medium towards the nearby H II region Sharpless 2-27 revealed by Faraday tomography}",
journal = {\mnras},
keywords = {polarization, H $\lt$sc$\gt$ii$\lt$/sc$\gt$ regions, ISM: magnetic fields, Astrophysics - Astrophysics of Galaxies},
year = 2019,
month = aug,
volume = {487},
number = {4},
pages = {4751-4767},
doi = {10.1093/mnras/stz1438},
archivePrefix = {arXiv},
eprint = {1905.09285},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019MNRAS.487.4751T},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@Misc{2019NIFTY,
author = {{The NIFTy5 team} and {Arras}, Philipp snd {Baltac}, Mihai and {En{\ss}lin}, Torsten A. and
{Frank}, Philipp and {Hutschenreuter}, Sebastian and {Knollmueller}, Jakob and {Leike},
Reimar and {Newrzella}, Max-Niklas and {Platz}, Lukas and {Reinecke}, Martin and {Stadler},
Julia},
howpublished = {{In preparation}},
year = {2019},
institution = {Max Planck Institue for Astrophysics},
}
@ARTICLE{2019Vernstrom,
author = {{Vernstrom}, T. and {Gaensler}, B.~M. and {Rudnick}, L. and
{Andernach}, H.},
title = "{Differences in Faraday Rotation between Adjacent Extragalactic Radio Sources as a Probe of Cosmic Magnetic Fields}",
journal = {\apj},
keywords = {galaxies: magnetic fields, intergalactic medium, methods: statistical, radio continuum: galaxies, Astrophysics - Cosmology and Nongalactic Astrophysics, Astrophysics - Astrophysics of Galaxies},
year = "2019",
month = "Jun",
volume = {878},
number = {2},
eid = {92},
pages = {92},
doi = {10.3847/1538-4357/ab1f83},
archivePrefix = {arXiv},
eprint = {1905.02410},
primaryClass = {astro-ph.CO},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...878...92V},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Leike,
author = {{Leike}, R.~H. and {En{\ss}lin}, T.~A.},
title = "{Charting nearby dust clouds using Gaia data only}",
journal = {\aap},
keywords = {dust, extinction, local insterstellar matter, methods: data analysis, solar neighborhood, Astrophysics - Astrophysics of Galaxies, Astrophysics - Solar and Stellar Astrophysics},
year = 2019,
month = nov,
volume = {631},
eid = {A32},
pages = {A32},
doi = {10.1051/0004-6361/201935093},
archivePrefix = {arXiv},
eprint = {1901.05971},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019A&A...631A..32L},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Hutschenreuter,
author = {{Hutschenreuter}, Sebastian and {En{\ss}lin}, Torsten A.},
title = "{The Galactic Faraday depth sky revisited}",
journal = {\aap},
keywords = {ISM: magnetic fields, ISM: structure, Astrophysics - Astrophysics of Galaxies},
year = "2020",
month = "Jan",
volume = {633},
eid = {A150},
pages = {A150},
doi = {10.1051/0004-6361/201935479},
archivePrefix = {arXiv},
eprint = {1903.06735},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2020A&A...633A.150H},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Betti,
author = {{Betti}, S.~K. and {Hill}, Alex S. and {Mao}, S.~A. and {Gaensler}, B.~M. and {Lockman}, Felix J. and {McClure-Griffiths}, N.~M. and {Benjamin}, Robert A.},
title = "{Constraining the Magnetic Field of the Smith High-velocity Cloud Using Faraday Rotation}",
journal = {\apj},
keywords = {ISM: individual objects: Smith Cloud, ISM: magnetic fields, polarization, radio continuum: general, Astrophysics - Astrophysics of Galaxies},
year = 2019,
month = feb,
volume = {871},
number = {2},
eid = {215},
pages = {215},
doi = {10.3847/1538-4357/aaf886},
archivePrefix = {arXiv},
eprint = {1812.06133},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...871..215B},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Ma,
author = {{Ma}, Yik Ki and {Mao}, S.~A. and {Stil}, Jeroen and {Basu}, Aritra and
{West}, Jennifer and {Heiles}, Carl and {Hill}, Alex S. and
{Betti}, S.~K.},
title = "{A Broadband Spectro-polarimetric View of the NVSS Rotation Measure Catalogue I: Breaking the n{\ensuremath{\pi}}-ambiguity}",
journal = {\mnras},
keywords = {galaxies: active, galaxies: magnetic fields, ISM: magnetic fields, radio continuum: galaxies, Astrophysics - Astrophysics of Galaxies},
year = "2019",
month = "May",
pages = {1401},
doi = {10.1093/mnras/stz1325},
archivePrefix = {arXiv},
eprint = {1905.04313},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019MNRAS.tmp.1401M},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Thor,
author = {{Shanahan}, R. and {Lemmer}, S.~J. and {Stil}, J.~M. and {Beuther}, H. and {Wang}, Y. and {Soler}, J. and {Anderson}, L.~D. and {Bigiel}, F. and {Glover}, S.~C.~O. and {Goldsmith}, P. and {Klessen}, R.~S. and {McClure-Griffiths}, N.~M. and {Reissl}, S. and {Rugel}, M. and {Smith}, R.~J.},
title = "{Strong Excess Faraday Rotation on the Inside of the Sagittarius Spiral Arm}",
journal = {\apjl},
keywords = {Galaxy magnetic fields, Polarimetry, Interstellar medium, Spiral arms, Transient sources, H II regions, Radio pulsars, 604, 1278, 847, 1559, 1851, 694, 1353, Astrophysics - Astrophysics of Galaxies},
year = 2019,
month = dec,
volume = {887},
number = {1},
eid = {L7},
pages = {L7},
doi = {10.3847/2041-8213/ab58d4},
archivePrefix = {arXiv},
eprint = {1911.08536},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...887L...7S},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Knollmuller,
author = {{Knollm{\"u}ller}, Jakob and {En{\ss}lin}, Torsten A.},
title = "{Metric Gaussian Variational Inference}",
journal = {arXiv e-prints},
keywords = {Statistics - Machine Learning, Astrophysics - Instrumentation and Methods for Astrophysics, Computer Science - Machine Learning, Physics - Data Analysis, Statistics and Probability, Statistics - Methodology},
year = 2019,
month = jan,
eid = {arXiv:1901.11033},
pages = {arXiv:1901.11033},
archivePrefix = {arXiv},
eprint = {1901.11033},
primaryClass = {stat.ML},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019arXiv190111033K},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Ensslin,
author = {{En{\ss}lin}, Torsten A. and {Hutschenreuter}, Sebastian and {Gopal-Krishna}},
title = "{Determining the composition of radio plasma via circular polarization: the prospects of the Cygnus A hot spots}",
journal = {\jcap},
keywords = {Astrophysics - High Energy Astrophysical Phenomena},
year = 2019,
month = jan,
volume = {2019},
number = {1},
eid = {035},
pages = {035},
doi = {10.1088/1475-7516/2019/01/035},
archivePrefix = {arXiv},
eprint = {1808.07061},
primaryClass = {astro-ph.HE},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019JCAP...01..035E},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Ensslin_2,
author = {{En{\ss}lin}, Torsten A.},
title = "{Information Theory for Fields}",
journal = {Annalen der Physik},
keywords = {Astrophysics - Cosmology and Nongalactic Astrophysics, Astrophysics - Instrumentation and Methods for Astrophysics, Computer Science - Information Theory},
year = 2019,
month = mar,
volume = {531},
number = {3},
pages = {1800127},
doi = {10.1002/andp.201800127},
archivePrefix = {arXiv},
eprint = {1804.03350},
primaryClass = {astro-ph.CO},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019AnP...53100127E},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2019Sobey,
author = {{Sobey}, C. and {Bilous}, A.~V. and {Grie{\ss}meier}, J. -M. and {Hessels}, J.~W.~T. and {Karastergiou}, A. and {Keane}, E.~F. and {Kondratiev}, V.~I. and {Kramer}, M. and {Michilli}, D. and {Noutsos}, A. and {Pilia}, M. and {Polzin}, E.~J. and {Stappers}, B.~W. and {Tan}, C.~M. and {van Leeuwen}, J. and {Verbiest}, J.~P.~W. and {Weltevrede}, P. and {Heald}, G. and {Alves}, M.~I.~R. and {Carretti}, E. and {En{\ss}lin}, T. and {Haverkorn}, M. and {Iacobelli}, M. and {Reich}, W. and {Van Eck}, C.},
title = "{Low-frequency Faraday rotation measures towards pulsars using LOFAR: probing the 3D Galactic halo magnetic field}",
journal = {\mnras},
keywords = {techniques: polarimetric, pulsars: general, ISM: magnetic fields, Galaxy: structure, Astrophysics - Astrophysics of Galaxies, Astrophysics - Instrumentation and Methods for Astrophysics},
year = 2019,
month = apr,
volume = {484},
number = {3},
pages = {3646-3664},
doi = {10.1093/mnras/stz214},
archivePrefix = {arXiv},
eprint = {1901.07738},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019MNRAS.484.3646S},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2018Boulanger,
author = {{Boulanger}, Fran{\c{c}}ois and {En{\ss}lin}, Torsten and {Fletcher}, Andrew and {Girichides}, Philipp and {Hackstein}, Stefan and {Haverkorn}, Marijke and {H{\"o}randel}, J{\"o}rg R. and {Jaffe}, Tess and {Jasche}, Jens and {Kachelrie{\ss}}, Michael and {Kotera}, Kumiko and {Pfrommer}, Christoph and {Rachen}, J{\"o}rg P. and {Rodrigues}, Luiz F.~S. and {Ruiz-Granados}, Beatriz and {Seta}, Amit and {Shukurov}, Anvar and {Sigl}, G{\"u}nter and {Steininger}, Theo and {Vacca}, Valentina and {van der Velden}, Ellert and {van Vliet}, Arjen and {Wang}, Jiaxin},
title = "{IMAGINE: a comprehensive view of the interstellar medium, Galactic magnetic fields and cosmic rays}",
journal = {\jcap},
keywords = {Astrophysics - Astrophysics of Galaxies, Astrophysics - High Energy Astrophysical Phenomena},
year = 2018,
month = aug,
volume = {2018},
number = {8},
eid = {049},
pages = {049},
doi = {10.1088/1475-7516/2018/08/049},
archivePrefix = {arXiv},
eprint = {1805.02496},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2018JCAP...08..049B},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2018Hutschenreuter,
author = {{Hutschenreuter}, Sebastian and {Dorn}, Sebastian and {Jasche}, Jens and {Vazza}, Franco and {Paoletti}, Daniela and {Lavaux}, Guilhem and {En{\ss}lin}, Torsten A.},
title = "{The primordial magnetic field in our cosmic backyard}",
journal = {Classical and Quantum Gravity},
keywords = {Astrophysics - Cosmology and Nongalactic Astrophysics},
year = 2018,
month = aug,
volume = {35},
number = {15},
eid = {154001},
pages = {154001},
doi = {10.1088/1361-6382/aacde0},
archivePrefix = {arXiv},
eprint = {1803.02629},
primaryClass = {astro-ph.CO},
adsurl = {https://ui.adsabs.harvard.edu/abs/2018CQGra..35o4001H},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2018Vallee,
author = {{Vall{\'e}e}, Jacques P.},
title = "{Meta-analysis from different tracers of the small Local Arm around the Sun{\textemdash}extent, shape, pitch, origin}",
journal = {\apss},
keywords = {Galaxy: structure, Galaxy: spiral arms, Galaxy: disk, ISM: kinematics and dynamics, Astrophysics - Astrophysics of Galaxies},
year = "2018",
month = "Nov",
volume = {363},
number = {11},
eid = {243},
pages = {243},
doi = {10.1007/s10509-018-3463-2},
archivePrefix = {arXiv},
eprint = {1810.12995},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2018Ap&SS.363..243V},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2018Gaia,
author = {{Gaia Collaboration et al.}},
title = "{Gaia Data Release 2. Summary of the contents and survey properties}",
journal = {\aap},
keywords = {catalogs, astrometry, techniques: radial velocities, stars: fundamental parameters, stars: variables: general, minor planets, asteroids: general, Astrophysics - Astrophysics of Galaxies, Astrophysics - Instrumentation and Methods for Astrophysics},
year = 2018,
month = aug,
volume = {616},
eid = {A1},
pages = {A1},
doi = {10.1051/0004-6361/201833051},
archivePrefix = {arXiv},
eprint = {1804.09365},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2018A&A...616A...1G},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2017Steininger_update,
author = {{Steininger}, Theo and {Dixit}, Jait and {Frank}, Philipp and {Greiner},
Maksim and {Hutschenreuter}, Sebastian and {Knollm{\"u}ller},
Jakob and {Leike}, Reimar and {Porqueres}, Natalia and {Pumpe},
Daniel and {Reinecke}, Martin and {{\v{S}}raml}, Matev{\v{z}}
and {Varady}, Csongor and {En{\ss}lin}, Torsten},
title = "{NIFTy 3 - Numerical Information Field Theory - A Python framework for multicomponent signal inference on HPC clusters}",
journal = {arXiv e-prints},
keywords = {Astrophysics - Instrumentation and Methods for Astrophysics},
year = 2017,
month = Aug,
eid = {arXiv:1708.01073},
pages = {arXiv:1708.01073},
archivePrefix = {arXiv},
eprint = {1708.01073},
primaryClass = {astro-ph.IM},
adsurl = {https://ui.adsabs.harvard.edu/\#abs/2017arXiv170801073S},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2017Ordog,
author = {{Ordog}, A. and {Brown}, J.~C. and {Kothes}, R. and {Landecker}, T.~L.},
title = "{Three-dimensional structure of the magnetic field in the disk of the Milky Way}",
journal = {\aap},
keywords = {Galaxy: structure, ISM: magnetic fields, polarization, radio continuum: ISM, techniques: interferometric, Astrophysics - Astrophysics of Galaxies},
year = "2017",
month = "Jul",
volume = {603},
eid = {A15},
pages = {A15},
doi = {10.1051/0004-6361/201730740},
archivePrefix = {arXiv},
eprint = {1704.08663},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2017A&A...603A..15O},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2017Yao,
author = {{Yao}, J.~M. and {Manchester}, R.~N. and {Wang}, N.},
title = "{A New Electron-density Model for Estimation of Pulsar and FRB Distances}",
journal = {\apj},
keywords = {ISM: structure, pulsars: general, stars: distances, Astrophysics - Astrophysics of Galaxies},
year = 2017,
month = jan,
volume = {835},
number = {1},
eid = {29},
pages = {29},
doi = {10.3847/1538-4357/835/1/29},
archivePrefix = {arXiv},
eprint = {1610.09448},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2017ApJ...835...29Y},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@article{2017Ensslin,
title = {The Galaxy in circular polarization: All-sky radio prediction, detection strategy, and the charge of the leptonic cosmic rays},
author = {En\ss{}lin, Torsten A. and Hutschenreuter, Sebastian and Vacca, Valentina and Oppermann, Niels},
journal = {Phys. Rev. D},
volume = {96},
issue = {4},
pages = {043021},
numpages = {11},
year = {2017},
month = {Aug},
publisher = {American Physical Society},
doi = {10.1103/PhysRevD.96.043021},
url = {https://link.aps.org/doi/10.1103/PhysRevD.96.043021}
}
@ARTICLE{2016Planck_X,
author = {{Planck Collaboration}},
title = "{Planck 2015 results. X. Diffuse component separation: Foreground maps}",
journal = {\aap},
keywords = {ISM: general, cosmology: observations, polarization, cosmic background radiation, diffuse radiation, Galaxy: general, Astrophysics - Cosmology and Nongalactic Astrophysics},
year = 2016,
month = Sep,
volume = {594},
eid = {A10},
pages = {A10},
doi = {10.1051/0004-6361/201525967},
archivePrefix = {arXiv},
eprint = {1502.01588},
primaryClass = {astro-ph.CO},
adsurl = {https://ui.adsabs.harvard.edu/\#abs/2016A&A...594A..10P},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2016Planck_XV,
author = {{Planck Collaboration}},
title = "{Planck 2015 results. XXV. Diffuse low-frequency Galactic foregrounds}",
journal = {\aap},
keywords = {diffuse radiation, ISM: general, radiation mechanisms: general, radio continuum: ISM, polarization, local insterstellar matter, Astrophysics - Astrophysics of Galaxies},
year = "2016",
month = "Sep",
volume = {594},
eid = {A25},
pages = {A25},
doi = {10.1051/0004-6361/201526803},
archivePrefix = {arXiv},
eprint = {1506.06660},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/\#abs/2016A&A...594A..25P},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2016Maksim,
author = {{Greiner}, M. and {Schnitzeler}, D.~H.~F.~M. and {En{\ss}lin}, T.~A.},
title = "{Tomography of the Galactic free electron density with the Square Kilometer Array}",
journal = {\aap},
keywords = {Galaxy: structure, ISM: structure, pulsars: general, Astrophysics - Astrophysics of Galaxies},
year = "2016",
month = "May",
volume = {590},
eid = {A59},
pages = {A59},
doi = {10.1051/0004-6361/201526717},
archivePrefix = {arXiv},
eprint = {1512.03480},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2016A&A...590A..59G},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2015Selig,
author = {{Selig}, Marco and {Vacca}, Valentina and {Oppermann}, Niels and {En{\ss}lin}, Torsten A.},
title = "{The denoised, deconvolved, and decomposed Fermi {\ensuremath{\gamma}}-ray sky. An application of the D$^{3}$PO algorithm}",
journal = {\aap},
keywords = {methods: data analysis, methods: statistical, techniques: image processing, gamma rays: general, catalogs gamma rays: diffuse background, Astrophysics - High Energy Astrophysical Phenomena},
year = 2015,
month = sep,
volume = {581},
eid = {A126},
pages = {A126},
doi = {10.1051/0004-6361/201425172},
archivePrefix = {arXiv},
eprint = {1410.4562},
primaryClass = {astro-ph.HE},
adsurl = {https://ui.adsabs.harvard.edu/abs/2015A&A...581A.126S},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2015Oppermann,
author = {{Oppermann}, N. and {Junklewitz}, H. and {Greiner}, M. and {En{\ss}lin}, T.~A. and
{Akahori}, T. and {Carretti}, E. and {Gaensler}, B.~M. and {Goobar}, A. and
{Harvey-Smith}, L. and {Johnston-Hollitt}, M. and {Pratley}, L. and
{Schnitzeler}, D.~H.~F.~M. and {Stil}, J.~M. and {Vacca}, V.
},
title = "{Estimating extragalactic Faraday rotation}",
journal = {\aap},
archivePrefix = "arXiv",
eprint = {1404.3701},
primaryClass = "astro-ph.IM",
keywords = {magnetic fields, methods: data analysis, ISM: magnetic fields},
year = 2015,
month = mar,
volume = 575,
eid = {A118},
pages = {A118},
doi = {10.1051/0004-6361/201423995},
adsurl = {http://adsabs.harvard.edu/abs/2015A%26A...575A.118O},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2015Purcell,
author = {{Purcell}, C.~R. and {Gaensler}, B.~M. and {Sun}, X.~H. and
{Carretti}, E. and {Bernardi}, G. and {Haverkorn}, M. and
{Kesteven}, M.~J. and {Poppi}, S. and {Schnitzeler}, D.~H.~F.~M. and
{Staveley-Smith}, L.},
title = "{A Radio-Polarisation and Rotation Measure Study of the Gum Nebula and Its Environment}",
journal = {\apj},
keywords = {ISM: individual objects: Gum Nebula, magnetic fields, radio continuum: general, radio continuum: ISM, surveys, techniques: polarimetric, Astrophysics - Astrophysics of Galaxies},
year = "2015",
month = "May",
volume = {804},
number = {1},
eid = {22},
pages = {22},
doi = {10.1088/0004-637X/804/1/22},
archivePrefix = {arXiv},
eprint = {1502.06296},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2015ApJ...804...22P},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@INBOOK{2015Haverkorn,
author = {{Haverkorn}, Marijke},
title = "{Magnetic Fields in the Milky Way}",
keywords = {Physics, Astrophysics - Astrophysics of Galaxies},
booktitle = {Magnetic Fields in Diffuse Media},
year = 2015,
editor = {{Lazarian}, Alexander and {de Gouveia Dal Pino}, Elisabete M. and
{Melioli}, Claudio},
volume = {407},
series = {Astrophysics and Space Science Library},
pages = {483},
doi = {10.1007/978-3-662-44625-6_17},
adsurl = {https://ui.adsabs.harvard.edu/abs/2015ASSL..407..483H},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2014Clark,
author = {{Clark}, S.~E. and {Peek}, J.~E.~G. and {Putman}, M.~E.},
title = "{Magnetically Aligned H I Fibers and the Rolling Hough Transform}",
journal = {\apj},
keywords = {ISM: magnetic fields, ISM: structure, local interstellar matter, methods: analytical, polarization, radio lines: ISM, Astrophysics - Astrophysics of Galaxies},
year = 2014,
month = jul,
volume = {789},
number = {1},
eid = {82},
pages = {82},
doi = {10.1088/0004-637X/789/1/82},
archivePrefix = {arXiv},
eprint = {1312.1338},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2014ApJ...789...82C},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2014Xu,
author = {{Xu}, Jun and {Han}, Jin-Lin},
title = "{A compiled catalog of rotation measures of radio point sources}",
journal = {Research in Astronomy and Astrophysics},
keywords = {Astrophysics - Astrophysics of Galaxies},
year = "2014",
month = "Aug",
volume = {14},
number = {8},
eid = {942-958},
pages = {942-958},
doi = {10.1088/1674-4527/14/8/005},
archivePrefix = {arXiv},
eprint = {1405.1920},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2014RAA....14..942X},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@INBOOK{2013Beck,
author = {{Beck}, Rainer and {Wielebinski}, Richard},
title = "{Magnetic Fields in Galaxies}",
keywords = {Physics, Astrophysics - Astrophysics of Galaxies, Astrophysics - Cosmology and Nongalactic Astrophysics, 85-00, J.2},
booktitle = {Planets, Stars and Stellar Systems. Volume 5: Galactic Structure and Stellar Populations},
year = 2013,
volume = {5},
pages = {641},
doi = {10.1007/978-94-007-5612-0_13},
adsurl = {https://ui.adsabs.harvard.edu/abs/2013pss5.book..641B},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2013Hill,
author = {{Hill}, Alex S. and {Mao}, S.~A. and {Benjamin}, Robert A. and {Lockman}, Felix J. and {McClure-Griffiths}, Naomi M.},
title = "{Magnetized Gas in the Smith High Velocity Cloud}",
journal = {\apj},
keywords = {ISM: individual objects: Smith Cloud, ISM: kinematics and dynamics, ISM: magnetic fields, ISM: structure, Astrophysics - Galaxy Astrophysics},
year = 2013,
month = nov,
volume = {777},
number = {1},
eid = {55},
pages = {55},
doi = {10.1088/0004-637X/777/1/55},
archivePrefix = {arXiv},
eprint = {1309.2553},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2013ApJ...777...55H},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2013Selig,
author = {{Selig}, M. and {Bell}, M.~R. and {Junklewitz}, H. and {Oppermann}, N. and
{Reinecke}, M. and {Greiner}, M. and {Pachajoa}, C. and
{En{\ss}lin}, T.~A.},
title = "{NIFTY - Numerical Information Field Theory. A versatile PYTHON library for signal inference}",
journal = {\aap},
keywords = {methods: data analysis, methods: numerical, methods: statistical, techniques: image processing, Astrophysics - Instrumentation and Methods for Astrophysics, Computer Science - Information Theory, Computer Science - Mathematical Software, Mathematical Physics, Physics - Data Analysis, Statistics and Probability, Statistics - Computation},
year = "2013",
month = "Jun",
volume = {554},
eid = {A26},
pages = {A26},
doi = {10.1051/0004-6361/201321236},
archivePrefix = {arXiv},
eprint = {1301.4499},
primaryClass = {astro-ph.IM},
adsurl = {https://ui.adsabs.harvard.edu/\#abs/2013A&A...554A..26S},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{2013WMAP,
author = {{Bennett}, C.~L. and {Larson}, D. and {Weiland}, J.~L. and {Jarosik}, N. and
{Hinshaw}, G. and {Odegard}, N. and {Smith}, K.~M. and {Hill}, R.~S. and
{Gold}, B. and {Halpern}, M. and {Komatsu}, E. and {Nolta}, M.~R. and
{Page}, L. and {Spergel}, D.~N. and {Wollack}, E. and {Dunkley}, J. and
{Kogut}, A. and {Limon}, M. and {Meyer}, S.~S. and {Tucker}, G.~S. and
{Wright}, E.~L.},
title = "{Nine-year Wilkinson Microwave Anisotropy Probe (WMAP) Observations: Final Maps and Results}",
journal = {\apjs},
archivePrefix = "arXiv",
eprint = {1212.5225},
keywords = {cosmic background radiation, cosmology: observations, dark matter, early universe, instrumentation: detectors, space vehicles, space vehicles: instruments, telescopes},
year = 2013,
month = oct,
volume = 208,
eid = {20},
pages = {20},
doi = {10.1088/0067-0049/208/2/20},
adsurl = {http://adsabs.harvard.edu/abs/2013ApJS..208...20B},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@article{2012Verbiest,
doi = {10.1088/0004-637x/755/1/39},
url = {https://doi.org/10.1088/0004-637x/755/1/39},
year = 2012,
month = {jul},
publisher = {American Astronomical Society},
volume = {755},
number = {1},
pages = {39},
author = {J. P. W. Verbiest and J. M. Weisberg and A. A. Chael and K. J. Lee and D. R. Lorimer},
title = {{ON} {PULSAR} {DISTANCE} {MEASUREMENTS} {AND} {THEIR} {UNCERTAINTIES}},
journal = {The Astrophysical Journal},
abstract = {Accurate distances to pulsars can be used for a variety of studies of the Galaxy and its electron content. However, most distance measures to pulsars have been derived from the absorption (or lack thereof) of pulsar emission by Galactic H i gas, which typically implies that only upper or lower limits on the pulsar distance are available. We present a critical analysis of all measured H i distance limits to pulsars and other neutron stars, and translate these limits into actual distance estimates through a likelihood analysis that simultaneously corrects for statistical biases. We also apply this analysis to parallax measurements of pulsars in order to obtain accurate distance estimates and find that the parallax and H i distance measurements are biased in different ways, because of differences in the sampled populations. Parallax measurements typically underestimate a pulsar's distance because of the limited distance to which this technique works and the consequential strong effect of the Galactic pulsar distribution (i.e., the original Lutz–Kelker bias), in H i distance limits, however, the luminosity bias dominates the Lutz–Kelker effect, leading to overestimated distances because the bright pulsars on which this technique is applicable are more likely to be nearby given their brightness.}
}
@ARTICLE{2012Oppermann,
author = {{Oppermann}, N. and {Junklewitz}, H. and {Robbers}, G. and {Bell}, M.~R. and
{En{\ss}lin}, T.~A. and {Bonafede}, A. and {Braun}, R. and {Brown}, J.~C. and
{Clarke}, T.~E. and {Feain}, I.~J. and {Gaensler}, B.~M. and
{Hammond}, A. and {Harvey-Smith}, L. and {Heald}, G. and {Johnston-Hollitt}, M. and
{Klein}, U. and {Kronberg}, P.~P. and {Mao}, S.~A. and {McClure-Griffiths}, N.~M. and
{O'Sullivan}, S.~P. and {Pratley}, L. and {Robishaw}, T. and
{Roy}, S. and {Schnitzeler}, D.~H.~F.~M. and {Sotomayor-Beltran}, C. and
{Stevens}, J. and {Stil}, J.~M. and {Sunstrum}, C. and {Tanna}, A. and
{Taylor}, A.~R. and {Van Eck}, C.~L.},
title = "{An improved map of the Galactic Faraday sky}",
journal = {\aap},
archivePrefix = "arXiv",
eprint = {1111.6186},
primaryClass = "astro-ph.GA",
keywords = {galaxies: magnetic fields, Galaxy: structure, ISM: magnetic fields, radio continuum: ISM, methods: data analysis, techniques: polarimetric},
year = 2012,
month = jun,
volume = 542,
eid = {A93},
pages = {A93},
doi = {10.1051/0004-6361/201118526},
adsurl = {http://adsabs.harvard.edu/abs/2012A%26A...542A..93O},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}