forked from nasa-lambda/cmb_footprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footprint.cfg
1386 lines (1277 loc) · 39.2 KB
/
footprint.cfg
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
[PLANCK-DUSTPOL]
handler : hpx_file
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/Planck_DustPol_Amp_256.fits.gz
description : "Polarized dust emission map from Planck commander component separation. sqrt(Q^2 + U^2)"
citation : http://irsa.ipac.caltech.edu/data/Planck/release_2/all-sky-maps/maps/component-maps/foregrounds/COM_CompMap_DustPol-commander_1024_R2.00.fits
coord : G
checksum : 292fd142a9603c152fd580d1110c7542
survey_type : background
instrument : Planck
hips : yes
[PLANCK-DUST]
handler : hpx_file
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/Planck_Dust_256.fits.gz
description : "Planck commander thermal dust map"
citation : http://irsa.ipac.caltech.edu/data/Planck/release_2/all-sky-maps/maps/component-maps/foregrounds/COM_CompMap_dust-commander_0256_R2.00.fits
coord : G
checksum : fda17e17e204b36a43963da2beb02841
survey_type : background
instrument : Planck
hips : yes
[PLANCK-SYNCH]
handler : hpx_file
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/Planck_Synch_256.fits.gz
description : "Planck commander synchrotron map"
citation : http://irsa.ipac.caltech.edu/data/Planck/release_2/all-sky-maps/maps/component-maps/foregrounds/COM_CompMap_Synchrotron-commander_0256_R2.00.fits
coord : G
checksum : aab6353ec249d331c8617740990334c7
survey_type : background
instrument : Planck
hips : yes
[PLANCK-SYNCHPOL]
handler : hpx_file
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/Planck_SynchPol_Amp_256.fits.gz
description : "Planck commander synchrotron polarization map. sqrt(Q^2 + U^2)"
citation : http://irsa.ipac.caltech.edu/data/Planck/release_2/all-sky-maps/maps/component-maps/foregrounds/COM_CompMap_SynchrotronPol-commander_0256_R2.00.fits
coord : G
checksum : 130922876dd310d6e8b31d88f27cc6e6
survey_type : background
instrument : Planck
hips : yes
[PLANCK-UT78]
handler : hpx_file
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/Planck_MaskInt_UT78_256.fits.gz
description : "Planck UT78 Mask"
citation : http://irsa.ipac.caltech.edu/data/Planck/release_2/all-sky-maps/maps/component-maps/cmb/COM_CMB_IQU-common-field-MaskInt_2048_R2.01.fits
coord : G
checksum : a6641fc8370b7a9806e0d716450ea6e6
survey_type : cmb
instrument : Planck
hips : yes
[PLANCK-UP78]
handler : hpx_file
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/Planck_MaskPol_UP78_256.fits.gz
description : "Planck UP78 Mask"
citation : http://irsa.ipac.caltech.edu/data/Planck/release_2/all-sky-maps/maps/component-maps/cmb/COM_CMB_IQU-common-field-MaskPol_1024_R2.01.fits
coord : G
checksum : 8ea6ef1c01cacdce09188946873ee2c6
survey_type : cmbpol
instrument : Planck
hips : yes
[WMAP-TEMP-MASK]
handler : hpx_file
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/wmap_temperature_kq85_analysis_mask_r9_9yr_v5.fits.gz
description : "Temperature data analysis mask"
citation : http://lambda.gsfc.nasa.gov/data/map/dr5/ancillary/masks/wmap_temperature_kq85_analysis_mask_r9_9yr_v5.fits
coord : G
checksum : 3cd367f7534969a294a17880570e2f6b
survey_type : cmb
instrument : WMAP
hips : yes
[WMAP-POL-MASK]
handler : hpx_file
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/wmap_polarization_analysis_mask_r9_9yr_v5.fits.gz
description : "Polarization data analysis mask"
citation : http://lambda.gsfc.nasa.gov/data/map/dr5/ancillary/masks/wmap_polarization_analysis_mask_r9_9yr_v5.fits
coord : G
checksum : 97908bde9831a7363ec1d78ab7b4816a
survey_type : cmbpol
instrument : WMAP
hips : yes
[ACT]
handler : combination
description : "All ACT survey regions"
citation : http://lambda.gsfc.nasa.gov/product/act/act_weights2013_get.cfm
components : ACT-EQU,ACT-SOUTH
survey_type : cmb
instrument : ACT
[ACT-EQU]
handler : hpx_file
description : "Observations of the EQU region of the ACT experiment at 148 GHz in Seasons 3 and 4. Healpix mapping of the released WCS hitmaps."
citation : http://lambda.gsfc.nasa.gov/product/act/act_weights2013_get.cfm
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/ACT_148_equ_hits_hpx.fits.gz
coord : C
checksum : aa7ddf649a139e354b223463ca33811c
survey_type : cmb
instrument : ACT
hips : yes
[ACT-SOUTH]
handler : hpx_file
description : "Observations of the South region of the ACT experiment at 148 GHz in Seasons 2, 3, and 4. Healpix mapping of the released WCS hitmaps."
citation : http://lambda.gsfc.nasa.gov/product/act/act_weights2013_get.cfm
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/ACT_148_south_hits_hpx.fits.gz
coord : C
checksum : d1262550026a9abca8842b1b60bdd21c
survey_type : cmb
instrument : ACT
hips : yes
[ACTPOL]
handler : combination
description : "ACTPol regions from 2013-2014 observations"
citation : https://arxiv.org/abs/1610.02360
components : ACTPOL-D5, ACTPOL-D6, ACTPOL-D56-PA1, ACTPOL-D56-PA2
survey_type : cmbpol
instrument : ACTPol
[ACTPOL-D5]
handler : hpx_file
description : "ACTPol Region D5 in 2013-2014 observations"
citation : https://arxiv.org/abs/1610.02360
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/ACTPol_148_D5_PA1_S1_1way_hits_hpx.fits.gz
coord : C
checksum : d1ec62092cbb3cbef9aaee11bd7a4ca2
survey_type : cmbpol
instrument : ACTPol
hips : yes
[ACTPOL-D6]
handler : hpx_file
description : "ACTPol Region D6 in 2014-2014 observations"
citation : https://arxiv.org/abs/1610.02360
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/ACTPol_148_D6_PA1_S1_1way_hits_hpx.fits.gz
coord : C
checksum : c16a8734bc99b39ef02ec5369f21fb7f
survey_type : cmbpol
instrument : ACTPol
hips : yes
[ACTPOL-D56-PA1]
handler : hpx_file
description : "ACTPol Region D56 PA1 in 2013-2014 observations"
citation : https://arxiv.org/abs/1610.02360
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/ACTPol_148_D56_PA1_S2_1way_hits_hpx.fits.gz
coord : C
checksum : c45d56cb6830e5658be992a10fdc3ca2
survey_type : cmbpol
instrument : ACTPol
hips : yes
[ACTPOL-D56-PA2]
handler : hpx_file
description : "ACTPol Region D56 PA2 in 2013-2014 observations"
citation : https://arxiv.org/abs/1610.02360
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/ACTPol_148_D56_PA2_S2_1way_hits_hpx.fits.gz
coord : C
checksum : 729e4deec9bc759d9c7e80c69caa1627
survey_type : cmbpol
instrument : ACTPol
hips : yes
[SPT-release1]
handler : hpx_file
description : "The SPT observations from their data release 1. Healpix mapping of their released 150 GHz ZEA hitmap."
citation : http://lambda.gsfc.nasa.gov/product/spt/dr1/wgts_get.cfm
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/SPT_150_hits_hpx.fits.gz
coord : C
checksum : 2e25d17d333973e3c40a8c9dfa4517ba
survey_type : cmb
instrument : SPT
hips : yes
[SPT-SZ-5H30-55]
handler : rectangle
description : "SPT-SZ patch centered at RA 5h30 and Dec -55"
citation : http://arxiv.org/abs/1210.7231
center : 82.7d,-55.0d
size : 15d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-23H30-55]
handler : rectangle
description : "SPT-SZ patch centered at RA 23h30 and Dec -55"
citation : http://arxiv.org/abs/1210.7231
center : 352.5d,-55.0d
size : 15d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-21H-60]
handler : rectangle
description : "SPT-SZ patch centered at RA 21h30 and Dec -60"
citation : http://arxiv.org/abs/1210.7231
center : 315.0d,-60.0d
size : 30d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-3H30-60]
handler : rectangle
description : "SPT-SZ patch centered at RA 3h30 and Dec -60"
citation : http://arxiv.org/abs/1210.7231
center : 52.5d,-60.0d
size : 45d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-21H-50]
handler : rectangle
description : "SPT-SZ patch centered at RA 21h and Dec -50"
citation : http://arxiv.org/abs/1210.7231
center : 315.0d,-50.0d
size : 30d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-4H10-50]
handler : rectangle
description : "SPT-SZ patch centered at RA 4h10 and Dec -50"
citation : http://arxiv.org/abs/1210.7231
center : 62.5d,-50.0d
size : 25d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-0H50-50]
handler : rectangle
description : "SPT-SZ patch centered at RA 0h50 and Dec -50"
citation : http://arxiv.org/abs/1210.7231
center : 12.5d,-50.0d
size : 25d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-2H30-50]
handler : rectangle
description : "SPT-SZ patch centered at RA 2h30 and Dec -50"
citation : http://arxiv.org/abs/1210.7231
center : 37.5d,-50.0d
size : 25d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-1H-60]
handler : rectangle
description : "SPT-SZ patch centered at RA 1h and Dec -60"
citation : http://arxiv.org/abs/1210.7231
center : 15.0d,-60.0d
size : 30d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-5H30-45]
handler : rectangle
description : "SPT-SZ patch centered at RA 5h30 and Dec -45"
citation : http://arxiv.org/abs/1210.7231
center : 82.5d,-45.0d
size : 15d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-6H30-55]
handler : rectangle
description : "SPT-SZ patch centered at RA 6h30 and Dec -55"
citation : http://arxiv.org/abs/1210.7231
center : 97.5d,-55.0d
size : 15d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-23H-62.5]
handler : rectangle
description : "SPT-SZ patch centered at RA 23h and Dec -62.5"
citation : http://arxiv.org/abs/1210.7231
center : 345.0d,-62.5d
size : 30d,5d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-21H-42.5]
handler : rectangle
description : "SPT-SZ patch centered at RA 21h and Dec -42.5"
citation : http://arxiv.org/abs/1210.7231
center :315.0d,-42.5d
size : 30d,5d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-22H30-55]
handler : rectangle
description : "SPT-SZ patch centered at RA 22h30 and Dec -55"
citation : http://arxiv.org/abs/1210.7231
center : 337.5d,-55.0d
size : 15d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-23H-45]
handler : rectangle
description : "SPT-SZ patch centered at RA 23h and Dec -45"
citation : http://arxiv.org/abs/1210.7231
center : 345.0d,-45.0d
size : 30d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-6H-62.5]
handler : rectangle
description : "SPT-SZ patch centered at RA 6h and Dec -62.5"
citation : http://arxiv.org/abs/1210.7231
center : 90.0d,-62.5d
size : 30d,5d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-3H30-42.5]
handler : rectangle
description : "SPT-SZ patch centered at RA 3h30 and Dec -42.5"
citation : http://arxiv.org/abs/1210.7231
center : 52.5d,-42.5d
size : 45d,5d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-1H-42.5]
handler : rectangle
description : "SPT-SZ patch centered at RA 1h and Dec -42.5"
citation : http://arxiv.org/abs/1210.7231
center : 15.0d,-42.5d
size : 30d,5d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ-6H30-45]
handler : rectangle
description : "SPT-SZ patch centered at RA 6h30 and Dec -45"
citation : http://arxiv.org/abs/1210.7231
center : 97.5d,-45.0d
size : 15d,10d
coord : C
survey_type : cmb
instrument : SPT
[SPT-SZ]
handler : combination
description : "SPT-SZ full survey footprint consisting of 19 contiguous rectangular patches"
citation : http://arxiv.org/abs/1210.7231
components : SPT-SZ-5H30-55,SPT-SZ-23H30-55,SPT-SZ-21H-60,SPT-SZ-3H30-60,SPT-SZ-21H-50,SPT-SZ-4H10-50,SPT-SZ-0H50-50,SPT-SZ-2H30-50,SPT-SZ-1H-60,SPT-SZ-5H30-45,SPT-SZ-6H30-55,SPT-SZ-23H-62.5,SPT-SZ-21H-42.5,SPT-SZ-22H30-55,SPT-SZ-23H-45,SPT-SZ-6H-62.5,SPT-SZ-3H30-42.5,SPT-SZ-1H-42.5,SPT-SZ-6H30-45
survey_type : cmb
instrument : SPT
[QUIET-Q-CMB-1]
handler : hpx_file
description : "Plot of the CMB-1 field for QUIET's Q band."
citation : "Private communication"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Qband_CMB-1_hitmap.fits.gz
coord : G
checksum : e253fd262c10edfb4aaf7364c677832c
survey_type : cmbpol
instrument : QUIET
hips : yes
[QUIET-Q-CMB-2]
handler : hpx_file
description : "Plot of the CMB-2 field for QUIET's Q band."
citation : "Private communication"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Qband_CMB-2_hitmap.fits.gz
coord : G
checksum : 15d565e3ff368aa93ac908f74b17436d
survey_type : cmbpol
instrument : QUIET
hips : yes
[QUIET-Q-CMB-3]
handler : hpx_file
description : "Plot of the CMB-3 field for QUIET's Q band."
citation : "Private communication"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Qband_CMB-3_hitmap.fits.gz
coord : G
checksum : 15b4cea5198112e7225ef6d677fdd1d0
survey_type : cmbpol
instrument : QUIET
hips : yes
[QUIET-Q-CMB-4]
handler : hpx_file
description : "Plot of the CMB-4 field for QUIET's Q band."
citation : "Private communication"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Qband_CMB-4_hitmap.fits.gz
coord : G
checksum : 0d174f26c59aa3f94606ad18a47c6f6d
survey_type : cmbpol
instrument : QUIET
hips : yes
[QUIET-W-CMB-1]
handler : hpx_file
description : "Plot of the CMB-1 field for QUIET's W band."
citation : "Private communication"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Wband_CMB-1_hitmap.fits.gz
coord : G
checksum : 8cac0eb6663d8d0b2a045770076a581d
survey_type : cmbpol
instrument : QUIET
[QUIET-W-CMB-2]
handler : hpx_file
description : "Plot of the CMB-2 field for QUIET's W band."
citation : "Private communication"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Wband_CMB-2_hitmap.fits.gz
coord : G
checksum : c7589d62b2f0eca1504f5ecb619b2b0e
survey_type : cmbpol
instrument : QUIET
[QUIET-W-CMB-3]
handler : hpx_file
description : "Plot of the CMB-3 field for QUIET's W band."
citation : "Private communication"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Wband_CMB-3_hitmap.fits.gz
coord : G
checksum : d6a4c8704734dfbd087b51552d41fcac
survey_type : cmbpol
instrument : QUIET
[QUIET-W-CMB-4]
handler : hpx_file
description : "Plot of the CMB-4 field for QUIET's W band."
citation : "Private communication"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Wband_CMB-4_hitmap.fits.gz
coord : G
checksum : 640a5e649e0b761536203bba619c1ff7
survey_type : cmbpol
instrument : QUIET
[QUIET-Q-CMB]
handler : combination
description : "Plot of all the CMB patches for QUIET Q band."
citation : http://lambda.gsfc.nasa.gov
components : QUIET-Q-CMB-1,QUIET-Q-CMB-2,QUIET-Q-CMB-3,QUIET-Q-CMB-4
survey_type : cmbpol
instrument : QUIET
[QUIET-W-CMB]
handler : combination
description : "Plot of all the CMB patches for QUIET W band."
citation : http://lambda.gsfc.nasa.gov
components : QUIET-W-CMB-1,QUIET-W-CMB-2,QUIET-W-CMB-3,QUIET-W-CMB-4
survey_type : cmbpol
instrument : QUIET
[QUIET-Q-GAL]
handler : combination
description : "Plot of all the galaxy patches for QUIET Q band."
citation : http://lambda.gsfc.nasa.gov
components : QUIET-Q-G-1,QUIET-Q-G-2
survey_type : cmbpol
instrument : QUIET
[QUIET-W-GAL]
handler : combination
description : "Plot of all the galaxy patches for QUIET W band."
citation : http://lambda.gsfc.nasa.gov
components : QUIET-W-G-1,QUIET-W-G-2
survey_type : cmbpol
instrument : QUIET
[QUIET-Q]
handler : combination
description : "Plot of all the fields for QUIET (CMB+galaxy) Q band."
citation : http://arxiv.org/abs/1012.3191
components : QUIET-Q-CMB,QUIET-Q-GAL
survey_type : cmbpol
instrument : QUIET
[QUIET-W]
handler : combination
description : "Plot of all the fields for QUIET (CMB+galaxy) W band."
citation : http://arxiv.org/abs/1012.3191
components : QUIET-W-CMB,QUIET-W-GAL
survey_type : cmbpol
instrument : QUIET
[QUIET-Q-G-1]
handler : hpx_file
description : "Plot of the G-1 galaxy field for QUIET's Q band."
citation : http://lambda.gsfc.nasa.gov/data/suborbital/QUIET/quiet_qband_G-1_Ncov_v1.hdf
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Qband_G-1_hitmap.fits.gz
coord : G
checksum : 618f61ac58bed9741fd52345085e4c5a
survey_type : cmbpol
instrument : QUIET
hips : yes
[QUIET-Q-G-2]
handler : hpx_file
description : "Plot of the G-2 galaxy field for QUIET's Q band."
citation : http://lambda.gsfc.nasa.gov/data/suborbital/QUIET/quiet_qband_G-2_Ncov_v1.hdf
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Qband_G-2_hitmap.fits.gz
coord : G
checksum : d37db8a1c1edfbbfa003c83fa42be46a
survey_type : cmbpol
instrument : QUIET
hips : yes
[QUIET-W-G-1]
handler : hpx_file
description : "Plot of the G-1 galaxy field for QUIET's W band."
citation : http://lambda.gsfc.nasa.gov/data/suborbital/QUIET/quiet_wband_G-1_Ncov_v1.hdf
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Wband_G-1_hitmap.fits.gz
coord : G
checksum : 9f09a4e6841306c6c0cc968085221349
survey_type : cmbpol
instrument : QUIET
[QUIET-W-G-2]
handler : hpx_file
description : "Plot of the G-2 galaxy field for QUIET's W band."
citation : http://lambda.gsfc.nasa.gov/data/suborbital/QUIET/quiet_wband_G-2_Ncov_v1.hdf
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/QUIET_Wband_G-2_hitmap.fits.gz
coord : G
checksum : 78fa88b679e6a9598dadc304eabf536d
survey_type : cmbpol
instrument : QUIET
[BICEP2-CONVEX]
handler : polygon
description : "Plot of the CMB patch for BICEP2. Based off of their released field outline, but modified so that the polygon is convex and healpy.query_polygon() works"
citation : http://bicepkeck.org/bicep2_2014_release.html
vertex1 : -17.53d,-50.88d
vertex2 : -27.73d,-53.2d
vertex3 : -27.73d,-61.56d
vertex4 : -17.53d,-63.88d
vertex5 : 17.53d,-63.88d
vertex6 : 27.73d,-61.56d
vertex7 : 27.73d,-53.2d
vertex8 : 17.53d,-50.88d
coord : C
survey_type : cmbpol
instrument : BICEP2
aladin : no
[BICEP2]
handler : polygon_file
description : "Plot of the actual CMB patch for BICEP2."
citation : http://bicepkeck.org/bicep2_2014_release.html
url : http://bicepkeck.org/B2_3yr_373sqdeg_field_20140509.txt
checksum : dc36ed808763f0b8a2bb25ebdce0859b
coord : C
survey_type : cmbpol
instrument : BICEP2
[POLARBEAR]
handler : combination
description : "Plots of the all the patches for the first season of PB observations. Positions and sizes are taken from table in paper."
citation : http://arxiv.org/abs/1403.2369
components : POLARBEAR-RA23,POLARBEAR-RA12,POLARBEAR-RA4p5
survey_type : cmbpol
instrument : POLARBEAR
[POLARBEAR-RA23]
handler : rectangle
description : "Plots of the RA23 patch for PB. Position is taken from table in paper and size is chosen so that fraction of sky is consistent with paper."
citation : http://arxiv.org/abs/1403.2369
center : 23h1m48s,-32d48m
size : 3.5d,3.5d
coord : C
survey_type : cmbpol
instrument : POLARBEAR
[POLARBEAR-RA12]
handler : rectangle
description : "Plots of the RA12 patch for PB. Position is taken from table in paper and size is chosen so that fraction of sky is consistent with paper."
citation : http://arxiv.org/abs/1403.2369
center : 11h53m0s,-0d30m
size : 3.5d,3.5d
coord : C
survey_type : cmbpol
instrument : POLARBEAR
[POLARBEAR-RA4p5]
handler : rectangle
description : "Plots of the RA4p5 patch for PB. Position is taken from table in paper and size is chosen so that fraction of sky is consistent with paper."
citation : http://arxiv.org/abs/1403.2369
center : 4h40m12s,-45d
size : 3.5d,3.5d
coord : C
survey_type : cmbpol
instrument : POLARBEAR
[B03]
handler : combination
description : "Plot of the shallow and deep regions for B03. Generated from vertices read off from figure in paper."
citation : http://arxiv.org/abs/astro-ph/0507494
components : B03-SHALLOW,B03-DEEP
survey_type : cmbpol
instrument : BOOMERANG
[B03-SHALLOW]
handler : polygon
description : "Plot of the shallow region for B03. Generated from vertices read off from figure in paper."
citation : http://arxiv.org/abs/astro-ph/0507494
vertex1 : 61d,-31d
vertex2 : 104d,-31d
vertex3 : 104d,-58d
vertex4 : 61d,-58d
coord : C
survey_type : cmbpol
instrument : BOOMERANG
[B03-DEEP]
handler : polygon
description : "Plot of the deep region for B03. Generated from vertices read off from figure in paper."
citation : http://arxiv.org/abs/astro-ph/0507494
vertex1 : 76d,-40d
vertex2 : 89d,-40d
vertex3 : 89d,-50d
vertex4 : 76d,-50d
coord : C
survey_type : cmbpol
instrument : BOOMERANG
[SPIDER-90]
handler : hpx_file
description : "Preliminary hits map for the 90 GHz detectors on SPIDER"
citation : "From SPIDER collaboration"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/SPIDER_hits_90ghz.fits.gz
checksum : 2c0be243466bc555ed86f881e9437b80
coord : C
survey_type : cmbpol
instrument : SPIDER
[SPIDER-150]
handler : hpx_file
description : "Preliminary hits map for the 150 GHz detectors on SPIDER"
citation : "From SPIDER collaboration"
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/SPIDER_hits_150ghz.fits.gz
checksum : d98b29c1073dbcbc2bbcd578f73db243
coord : C
survey_type : cmbpol
instrument : SPIDER
hips : yes
;------------------------------------------------------------------------------
; LSS
;------------------------------------------------------------------------------
[BOSS-LSS]
handler : hpx_file
description : "A binned map from the LSS DR10 source catalog."
citation : http://data.sdss3.org/sas/dr10/boss/lss/
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/BOSS_dr10_lss.fits.gz
coord : C
checksum : a86167fc2223f03ddf0fe758a039ce20
survey_type : lss
instrument : BOSS
hips : yes
[BOSS-LSS-RANDOM2]
handler : hpx_file
description : "A binned map from the LSS-RANDOM2 DR10 source catalog."
citation : http://data.sdss3.org/sas/dr10/boss/lss/
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/BOSS_dr10_lss_random2.fits.gz
coord : C
checksum : b8adac7f74cb07cd33fefd88dae71068
survey_type : lss
instrument : BOSS
[BOSS-QSO]
handler : hpx_file
description : "A binned map from the BOSS QSO DR12 source catalog."
citation : http://data.sdss3.org/sas/dr12/boss/qso/DR12Q/
url : http://lambda.gsfc.nasa.gov/data/footprint-maps/BOSS_dr12_qso.fits.gz
coord : C
checksum : 6f927dbbd9c4f226b9f2d7e5b2b8354a
survey_type : lss
instrument : BOSS
hips : yes
[DES-polygon]
handler : polygon
description : "Planned five-year DES survey footprint in polygon form"
citation : http://www.darkenergysurvey.org/survey/des-description.pdf
vertex1 : 23.00d,-7.00d
vertex2 : 0.00d,-7.00d
vertex3 : 0.00d,-2.00d
vertex4 : -43.00d,-2.00d
vertex5 : -43.00d,2.00d
vertex6 : 0.00d,2.00d
vertex7 : 0.00d,5.00d
vertex8 : 45.00d,5.00d
vertex9 : 45.00d,-9.00d
vertex10 : 45.84d,-9.07d
vertex11 : 46.37d,-9.15d
vertex12 : 46.90d,-9.23d
vertex13 : 47.42d,-9.32d
vertex14 : 47.95d,-9.41d
vertex15 : 48.47d,-9.51d
vertex16 : 48.99d,-9.62d
vertex17 : 49.51d,-9.74d
vertex18 : 50.02d,-9.86d
vertex19 : 50.54d,-9.98d
vertex20 : 51.04d,-10.11d
vertex21 : 51.55d,-10.25d
vertex22 : 52.05d,-10.40d
vertex23 : 52.55d,-10.55d
vertex24 : 53.05d,-10.71d
vertex25 : 53.54d,-10.87d
vertex26 : 54.03d,-11.05d
vertex27 : 54.51d,-11.22d
vertex28 : 55.00d,-11.41d
vertex29 : 55.47d,-11.60d
vertex30 : 55.95d,-11.80d
vertex31 : 56.42d,-12.00d
vertex32 : 56.89d,-12.22d
vertex33 : 57.35d,-12.44d
vertex34 : 57.81d,-12.66d
vertex35 : 58.26d,-12.89d
vertex36 : 58.72d,-13.13d
vertex37 : 59.16d,-13.38d
vertex38 : 59.61d,-13.63d
vertex39 : 60.05d,-13.89d
vertex40 : 60.48d,-14.16d
vertex41 : 60.92d,-14.43d
vertex42 : 61.34d,-14.71d
vertex43 : 61.77d,-15.00d
vertex44 : 62.19d,-15.29d
vertex45 : 62.60d,-15.59d
vertex46 : 63.02d,-15.90d
vertex47 : 63.42d,-16.21d
vertex48 : 63.83d,-16.53d
vertex49 : 64.23d,-16.85d
vertex50 : 66.00d,-18.00d
vertex51 : 86.00d,-18.00d
vertex52 : 86.67d,-19.00d
vertex53 : 87.33d,-20.00d
vertex54 : 88.00d,-21.00d
vertex55 : 88.67d,-22.00d
vertex56 : 89.42d,-23.13d
vertex57 : 89.68d,-24.37d
vertex58 : 89.96d,-25.59d
vertex59 : 90.25d,-26.81d
vertex60 : 90.55d,-28.02d
vertex61 : 90.86d,-29.21d
vertex62 : 91.18d,-30.40d
vertex63 : 91.50d,-31.58d
vertex64 : 91.84d,-32.75d
vertex65 : 92.19d,-33.91d
vertex66 : 92.54d,-35.05d
vertex67 : 92.89d,-36.19d
vertex68 : 93.26d,-37.31d
vertex69 : 93.62d,-38.42d
vertex70 : 93.99d,-39.52d
vertex71 : 94.36d,-40.61d
vertex72 : 94.73d,-41.68d
vertex73 : 95.09d,-42.74d
vertex74 : 95.46d,-43.78d
vertex75 : 95.82d,-44.81d
vertex76 : 96.17d,-45.83d
vertex77 : 96.51d,-46.83d
vertex78 : 96.85d,-47.81d
vertex79 : 97.17d,-48.78d
vertex80 : 97.47d,-49.74d
vertex81 : 97.75d,-50.68d
vertex82 : 98.02d,-51.60d
vertex83 : 98.26d,-52.51d
vertex84 : 98.47d,-53.40d
vertex85 : 98.66d,-54.27d
vertex86 : 98.80d,-55.12d
vertex87 : 98.91d,-55.96d
vertex88 : 98.98d,-56.78d
vertex89 : 99.00d,-57.59d
vertex90 : 98.97d,-58.37d
vertex91 : 98.88d,-59.14d
vertex92 : 98.74d,-59.89d
vertex93 : 98.52d,-60.62d
vertex94 : 98.23d,-61.33d
vertex95 : 98.00d,-61.50d
vertex96 : 84.00d,-61.50d
vertex97 : 83.00d,-62.00d
vertex98 : 78.67d,-63.00d
vertex99 : 74.33d,-64.00d
vertex100 : 69.19d,-65.63d
vertex101 : 68.29d,-65.99d
vertex102 : 67.35d,-66.35d
vertex103 : 66.37d,-66.69d
vertex104 : 65.34d,-67.02d
vertex105 : 64.28d,-67.34d
vertex106 : 63.16d,-67.65d
vertex107 : 62.01d,-67.95d
vertex108 : 60.81d,-68.23d
vertex109 : 59.57d,-68.49d
vertex110 : 58.29d,-68.75d
vertex111 : 56.97d,-68.98d
vertex112 : 55.61d,-69.20d
vertex113 : 54.22d,-69.41d
vertex114 : 52.78d,-69.59d
vertex115 : 51.32d,-69.76d
vertex116 : 49.82d,-69.91d
vertex117 : 48.30d,-70.04d
vertex118 : 46.76d,-70.15d
vertex119 : 45.19d,-70.25d
vertex120 : 43.61d,-70.32d
vertex121 : 42.01d,-70.37d
vertex122 : 40.41d,-70.40d
vertex123 : 38.80d,-70.41d
vertex124 : 37.19d,-70.40d
vertex125 : 35.59d,-70.37d
vertex126 : 33.99d,-70.32d
vertex127 : 32.41d,-70.25d
vertex128 : 30.84d,-70.15d
vertex129 : 29.30d,-70.04d
vertex130 : 27.78d,-69.91d
vertex131 : 26.28d,-69.76d
vertex132 : 24.82d,-69.59d
vertex133 : 23.38d,-69.41d
vertex134 : 21.99d,-69.20d
vertex135 : 20.63d,-68.98d
vertex136 : 19.31d,-68.75d
vertex137 : 18.03d,-68.49d
vertex138 : 16.79d,-68.23d
vertex139 : 15.59d,-67.95d
vertex140 : 14.44d,-67.65d
vertex141 : 13.32d,-67.34d
vertex142 : 12.26d,-67.02d
vertex143 : 11.23d,-66.69d
vertex144 : 10.25d,-66.35d
vertex145 : 9.31d,-65.99d
vertex146 : 8.41d,-65.63d
vertex147 : 7.55d,-65.25d
vertex148 : 4.00d,-65.00d
vertex149 : -57.00d,-65.00d
vertex150 : -56.80d,-64.00d
vertex151 : -56.60d,-63.00d
vertex152 : -56.40d,-62.00d
vertex153 : -56.20d,-61.00d
vertex154 : -56.00d,-60.00d
vertex155 : -55.90d,-59.00d
vertex156 : -55.80d,-58.00d
vertex157 : -55.70d,-57.00d
vertex158 : -55.60d,-56.00d
vertex159 : -55.50d,-55.00d
vertex160 : -55.40d,-54.00d
vertex161 : -55.30d,-53.00d
vertex162 : -55.20d,-52.00d
vertex163 : -55.10d,-51.00d
vertex164 : -55.00d,-50.00d
vertex165 : -54.90d,-49.00d
vertex166 : -54.80d,-48.00d
vertex167 : -54.70d,-47.00d
vertex168 : -54.60d,-46.00d
vertex169 : -54.50d,-45.00d
vertex170 : -54.40d,-44.00d
vertex171 : -54.30d,-43.00d
vertex172 : -54.20d,-42.00d
vertex173 : -54.10d,-41.00d
vertex174 : -54.00d,-40.00d
vertex175 : -3.00d,-40.00d
vertex176 : -1.47d,-38.64d
vertex177 : -1.28d,-38.13d
vertex178 : -1.07d,-37.62d
vertex179 : -0.86d,-37.11d
vertex180 : -0.65d,-36.60d
vertex181 : -0.43d,-36.09d
vertex182 : -0.21d,-35.58d
vertex183 : 0.02d,-35.08d
vertex184 : 0.26d,-34.57d
vertex185 : 0.50d,-34.07d
vertex186 : 0.74d,-33.57d
vertex187 : 0.99d,-33.08d
vertex188 : 1.24d,-32.58d
vertex189 : 1.50d,-32.09d
vertex190 : 1.76d,-31.59d
vertex191 : 2.03d,-31.11d
vertex192 : 2.30d,-30.62d
vertex193 : 2.58d,-30.14d
vertex194 : 2.85d,-29.66d
vertex195 : 3.14d,-29.18d
vertex196 : 3.42d,-28.70d
vertex197 : 3.71d,-28.23d
vertex198 : 4.01d,-27.77d
vertex199 : 4.31d,-27.30d
vertex200 : 4.61d,-26.84d
vertex201 : 4.91d,-26.38d
vertex202 : 5.22d,-25.93d
vertex203 : 5.54d,-25.48d
vertex204 : 5.85d,-25.04d
vertex205 : 6.17d,-24.60d
vertex206 : 6.50d,-24.16d
vertex207 : 6.83d,-23.73d
vertex208 : 7.16d,-23.30d
vertex209 : 7.49d,-22.88d
vertex210 : 7.83d,-22.46d
vertex211 : 8.17d,-22.05d
vertex212 : 8.52d,-21.64d
vertex213 : 8.87d,-21.24d
vertex214 : 9.23d,-20.84d
vertex215 : 9.58d,-20.45d
vertex216 : 9.95d,-20.06d
vertex217 : 10.31d,-19.68d
vertex218 : 10.68d,-19.31d
vertex219 : 11.05d,-18.94d
vertex220 : 11.43d,-18.58d
vertex221 : 11.81d,-18.22d
vertex222 : 12.19d,-17.87d
vertex223 : 12.58d,-17.52d
vertex224 : 12.98d,-17.19d
vertex225 : 13.37d,-16.85d
vertex226 : 13.77d,-16.53d
vertex227 : 14.18d,-16.21d
vertex228 : 14.58d,-15.90d
vertex229 : 15.00d,-15.59d
vertex230 : 15.41d,-15.29d
vertex231 : 15.83d,-15.00d
vertex232 : 16.26d,-14.71d
vertex233 : 16.68d,-14.43d
vertex234 : 17.12d,-14.16d
vertex235 : 17.55d,-13.89d
vertex236 : 17.99d,-13.63d
vertex237 : 18.44d,-13.38d
vertex238 : 18.88d,-13.13d
vertex239 : 19.34d,-12.89d
vertex240 : 19.79d,-12.66d
vertex241 : 20.25d,-12.44d
vertex242 : 20.71d,-12.22d
vertex243 : 21.18d,-12.00d
vertex244 : 21.65d,-11.80d
vertex245 : 22.13d,-11.60d
vertex246 : 22.60d,-11.41d
vertex247 : 23.09d,-11.22d
vertex248 : 23.00d,-10.00d
vertex249 : 23.00d,-8.00d
coord : C
survey_type : lss
instrument : DECam
[HSC-FALL1-EQ]
handler : rectangle_bounds
description : "Subaru Hyper Suprime-Cam Fall-1 equatorial survey."
citation : https://science.nrao.edu/science/surveys/vlass/Wang_WP_rev0.pdf
ra_range : 22h0m,2h40m
dec_range : -1d,7d
coord : C
survey_type : lss
instrument : HSC
[HSC-FALL2-EQ]
handler : rectangle_bounds
description : "Subaru Hyper Suprime-Cam Fall-2 equatorial survey."
citation : https://science.nrao.edu/science/surveys/vlass/Wang_WP_rev0.pdf
ra_range : 1h50m,2h40m
dec_range : -7d,-1d
coord : C
survey_type : lss
instrument : HSC
[HSC-SPRING-EQ]
handler : rectangle_bounds
description : "Subaru Hyper Suprime-Cam Spring equatorial survey."
citation : https://science.nrao.edu/science/surveys/vlass/Wang_WP_rev0.pdf
ra_range : 8h30m,15h0m
dec_range : -2d,5d
coord : C
survey_type : lss
instrument : HSC
[HSC-NORTH]
handler : rectangle_bounds
description : "Subaru Hyper Suprime-Cam North survey."
citation : https://science.nrao.edu/science/surveys/vlass/Wang_WP_rev0.pdf
ra_range : 13h20m,16h40m
dec_range : +42.5d,+44d
coord : C