-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiggma.v1.tex
1013 lines (927 loc) · 68.4 KB
/
siggma.v1.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
%%
%% Beginning of file 'siggma.tex'
%%
%% Created March 17 2017 by LB
%%
%% This is a manuscript for the siggma data release paper using the
%% AASTeX v6.1 LaTeX 2e macros.
%%
\documentclass[manuscript]{aastex61}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\hypersetup{linkcolor=red,citecolor=blue,filecolor=cyan,urlcolor=magenta}
%\received{}
%\revised{}
%\accepted{}
%\submitjournal{}
\shorttitle{SIGGMA. II}
\shortauthors{Liu et al.}
\watermark{DRAFT}
\setwatermarkfontsize{100 pt}
%\usepackage[a4paper, margin=1.7cm]{geometry}
\usepackage[flushleft]{threeparttable}
\usepackage{graphicx}
\usepackage[caption = false]{subfig}
\usepackage{float}
\usepackage{longtable}
\newcommand{\hii}{{\rm H\,}{{\sc ii}}}
\newcommand{\hi}{{\rm H\,}{{\sc i}}}
\newcommand{\kms}{\,km\,s$^{-1}$}
\newcommand{\kpc}{\,kpc}
\newcommand{\ghz}{\,GHz}
\newcommand{\um}{\mu m}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\title{Survey of Ionized Gas of the Galaxy, Made with the Arecibo telescope (SIGGMA): Inner Galaxy Data Release}
\correspondingauthor{Bin Liu}
\email{[email protected]}
\author[0000-0002-1311-8839]{Bin Liu}
\affil{National Astronomical Observatories, Chinese Academy of Sciences, Beijing 100012, China}
\affil{West Virginia University, Morgantown, WV 26506, USA}
\author{L. D. Anderson}
\affil{West Virginia University, Morgantown, WV 26506, USA}
\affil{Adjunct Astronomer at the Green Bank Observatory, P.O. Box 2, Green Bank WV 24944, USA}
\affil{Center for Gravitational Waves and Cosmology, West Virginia University, Chestnut Ridge Research Building, Morgantown, WV 26505,
USA}
\author{Travis Mclntyre}
\affil{University of New Mexico, Albuquerque, NM 87131, USA}
\author{D. Anish Roshi}
\affil{National Radio Astronomy Observatory, Green Bank \& Charlottesville, VA 22903, USA}
\author{Ed Churchwell}
\affil{University of Wisconsin-Madison, Madison, WI 53706, USA}
\author{Robert Minchin}
\affil{Arecibo Observatory, HC03 Box 53995, Arecibo 00612, Puerto Rico}
%\author{M. Lebron}
%\affil{University of Puerto Rico, PO Box 23323, San Juan 00931, Puerto Rico}
\author{Yervant Terzian}
\affil{Cornell University, Ithaca, NY 14853, USA}
\begin{abstract}
The Survey of Ionized Gas of the Galaxy, Made with the Arecibo telescope (SIGGMA) provides a fully-sampled view of the radio recombination line (RRL) emission from the portion of the Galactic plane visible by Arecibo.
Observations use the Arecibo L-band Feed Array (ALFA), with a FWHM beam size of 3.4$\arcmin$ and a spectral resolution of 5.1\kms.
Twelve hydrogen RRLs from H163$\alpha$ to H174$\alpha$ are located within the 300~MHz instantaneous bandpass, which extends from 1225 MHz to 1525 MHz.
The principle data products are cubes of average (``stacked'') RRL emission, which we provide here for the inner Galaxy region $32\degr \le \ell \le 70 \degr$, $|b| \le 1.5\degr$.
The stacked RRL spectral rms per beam at the native 5.1\kms\ velocity resolution is $\sim 0.65$\,mJy\,beam$^{-1}$, making this the most sensitive large-scale fully-sampled RRL survey extant.
SIGGMA is sensitive to discrete \hii\ regions and diffuse ionized gas.
We catalogue 338 RRL detections of RRL emission toward known \hii\ regions from the {\it WISE} catalog of Galactic \hii\ Regions,
as well as toward 84 \hii\ region candidates from this catalog.
We identify 11 Carbon RRL emission regions, all of which are spatially coincident with known \hii\ regions. Carbon RRLs are thought to arise from \hii\ region photo-dissociation regions (PDRs), and these bright regions represent excellent candidates for future study of PDR radiation.
We detect RRL emission from 14 of the 32 supernova remnants (SNRs) found in the survey area.
The velocities derived from these regions give kinematic distances in agreement with those found in the literature. Future RRL observations of SNRs may therefore help in determining their distances.
Finally, we analyze the two bright star-forming complexes, W49 and W51.
We report two diffuse RRL emission components separated by velocities with respect to local standard of rest (LSR) within the W49 region.
The map of W51 shows the RRL emitting gas morphology matches with that of the infrared emission.
Moreover, there is are also diffuse ionized gas emission from where the infrared emission is not obvious, implying that the RRL emission may be due to leaking photons from \hii\ regions.LDA: need to mention data being released, with pixel size
\end{abstract}
\keywords{radio lines: ISM --- \hii\ regions --- catalogs --- surveys}
\section{Introduction} \label{sec_intr}
%1. RRL in general.
Radio recombination lines (RRLs) are ideal tracers of the ionized interstellar medium (ISM).
In contrast to observations at optical and infrared (IR) wavelengths, RRLs are essentially unaffected by interstellar extinction. They therefore provide us with a probe of ionized gas in the Galactic plane, sampling the emission from \hii\ regions, photo-dissociation regions (PDRs), planetary nebulae (PNe), supernova remnants (SNRs), and diffuse ionized gas. From the observed RRL parameters, one can derive the physical properties of the emitting regions, such as the electron temperature, the gas kinematics, and information about thermal and turbulent motions.
%2. Other RRLs surveys.
There have been many pointed RRL surveys of individual Galactic \hii\ regions, beginning in the 1970s \citep[e.g.][]{Reifenstein1970,Wilson1970}.
\citet{Lockman1989} cataloged 462 \hii\ regions in the northern sky by observing RRLs at 3cm wavelength towards Galactic continuum sources.
\citet{Caswell1987} carried out a comprehensive \hii\ survey of 316 \hii\ regions in the southern sky using H109$\alpha$ \& H110$\alpha$.
The Green Bank Telescope (GBT) \hii\ Region Discovery Survey \citep[GBT HRDS;][]{Bania2010,Anderson2011,Anderson2015b} is the most recent RRL survey of targeted sources.
Its sample was selected by examining the IR and radio emission of candidate \hii\ regions.
The HDRS has doubled the number of known \hii\ regions north of $\delta=-45\degr$, which is $340\degr \leq \ell \leq 240\degr$ at $b = 0\degr$.
In addition to emission from discrete \hii\ regions around massive stars, RRLs also trace the emission from low-density diffuse ionized gas (\textless1 cm$^{-3}$), referred to as the warm ($T_e \sim 3000 - 8000$ K) ionized medium (WIM), pervades the Galactic disk.
This component has a scale height of $\sim$1000\,pc and is usually studied using optical recombination lines and pulsar dispersion measures \citep{Taylor1977,Reynolds1990}.
%SIGGMA can study WIM with RRLs, at higher spacial resolution than that of previous studies \citep{Alves2015}.
LDA: Other papers?
% RRL maps
There are few unbiased surveys of mapped RRL emission.
\citet{Alves2010,Alves2012,Alves2015} used RRLs within the bandpass of the \hi\ Parkes All-Sky Survey \citep[HIPASS;][]{Staveley1996}, which covers from $\ell=196\degr$ to $\ell=360\degr$ in the fourth quadrant, and from $\ell = 0\degr$ to $\ell = 52\degr$ in the first quadrant, both within $|b| \leq 5\degr$.
They observed H166$\alpha$, H167$\alpha$, and H168$\alpha$ at L-band with a spatial resolution of $14.4\arcmin$ and a velocity resolution of 20\kms. Their typical rms noise in the stacked spectra is 4.5 mK (6.4 mJy\,beam$^{-1}$).
The HI/OH/RRL survey with the Very Large Array \citep[THOR;][]{Beuther2016} also produced RRL maps, with a smoothed angular resolution of $40\arcsec$ and a velocity resolution of 10\kms. Their rms noise is $\sim$2.3 mJy\,beam$^{-1}$ by stacking 10 RRLs.
Being an interferometric survey, the THOR RRL data are not sensitive to emission from diffuse ionized gas.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Comparison of RMS OF SIGGMA WITH THAT OF THOR
% = STACK_SPEC_RMS * BEAM^2 * CHANNEL_RES^0.5
% BEAM CHANNEL_RES STACK_SPEC_RMS RATIO
%SIGGMA 3'.4 4.2 KM/S 0.65 MJY/BEAM 15
%THOR 40" 10 KM/S 2.3 MJY/BEAM 3
%HIPASS 14'.4 20 KM/S 6.4 MJY/BEAM 5935
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%3. SIGGMA motivation.
We introduced the Survey of Ionized Gas in the Galaxy, made with the Arecibo Telescope (SIGGMA) in \citet[hereafter ``Paper I'']{Liu2013}.
SIGGMA is a radio recombination line (RRL) survey at 1.4 GHz that is fully sampling the entire Galactic plane observable with the 305-m William E. Gordon Telescope at the Arecibo Observatory.
With an rms noise of $\sim$1\,mJy\,beam$^{-1}$, SIGGMA remains the most sensitive fully-sampled RRL survey.
%4. Purpose of this paper.
In this paper, we present SIGGMA data from the inner Galaxy ($32 \degr \leq l \leq 70 \degr$).
These inner-Galaxy data were collected commensally with the Arecibo pulsar survey ``PALFA'' \citep{Cordes2006, Lazarus2015}.
In the outer Galaxy ($175 \degr \leq l \leq 207 \degr $), SIGGMA is observed commensally with the ALFA zone of avoidance (ZOA) survey \citep[][]{McIntyre2015}, which is still ongoing.
The survey data from the outer Galaxy will be discussed in a future paper.
We describe the SIGGMA observations and data reduction in Section~\ref{sec_obs_data}.
Section\,\ref{sec_cata} gives the \hii\ region catalogues as the initial results of the survey.
The distribution of RRL emission and derived free-free emission along the Galactic disk are present in Section\,\ref{sec_gal}
Section~\ref{sec_crrl} and \ref{sec_snr} discuss C-RRL regions and RRL detections from SNRs.
We present details of RRL investigations towards two major star-forming complexes in the survey area, W49 and W51, in Section\,\ref{sec_indi}.
The summary follows in Section~\ref{sec_summ}.
\section{Observations and data reduction} \label{sec_obs_data}
We give the survey properties in Table \ref{tab_survey}.
More details of the observing strategy, back-end configuration and data reduction technique were described in Paper~I.
We use the seven-beam Arecibo L-band Feed Array (ALFA)\footnote{See \url{http://www.naic.edu/alfa} for more information.} receiver.
ALFA's beam pattern consists of six beams surrounding the central beam.
The average full width at half maximum (FWHM) of the seven beams is $\sim3\arcmin.4$.
Three pointings of ALFA's seven beams together form a beam-sampled grid pattern (see Paper~I, their Figure~1).
We use "off" positions that have the same declination, but is separated by five minutes in right ascension from the ON pointing.
We calibrate the bandpass by matching the ON-OFF pointing pairs with $\frac{T_{ON}-T_{OFF}}{T_{OFF}}\times T_{sys}$.
We use a gain calibration factor of 11 K\,Jy$^{-1}$ for the central beam and 8.5 K\,Jy$^{-1}$ for Beams 1-6\footnote{See \url{http://www.naic.edu/alfa/performance/}}.
We cut the corrected bandpass from each pointing into twelve H$n\alpha$ sub-bands.
The frequency resolution is 21\,KHz, giving the velocity resolution of $4.2 - 5.1$\kms\ for the H$n\alpha$ recombination lines within the ALFA bandpass.
The velocity range of each sub-band is $-300$ to 300\kms, which covers the entire velocity of Galactic gas, provides adequate data points for the baseline fitting, and also allows us to detect helium (offset by $-122$\kms\ from hydrogen) and carbon (offset by $-150$\kms) RRLs.
We resample the twelve segments to the common velocity grid with 5.1\kms\ resolution and then average all segments.
After averaging, we grid the individual spectra into datacubes.
Each cube is $5\degr \times 3\degr$ with the pixel size of $1\arcmin \times 1 \arcmin$ and with 5.1\kms\ channel spacing covering $-300 - 300$\kms\ range.
Sections \ref{sec_obs} shows the observation progress and the sky coverage of the survey at current stage.
In Sections \ref{sec_rfi} and \ref{sec_stack}, we explain the details of RFI removal and RRL stacking, as two major steps of the data reduction.
The quality of the data products are also presented in Section \ref{sec_stack}.
Sections \ref{sec_cube} describes the configuration for datacube gridding.
\begin{table}[tbhp]
\centering
\caption{Survey properties \label{tab_survey}}
\begin{threeparttable}
\begin{tabular}{cc}
\hline
\hline
Parameter & Value\\
\hline
$l$ & $32\degr - 70\degr$ \\
$b$ & $-1\degr.5 - +1\degr.5$ \\
FWHM & $3\arcmin.4$ \\
Spectral resolution & 5.1\kms \\
%Channel spacing & 4.2\kms \\
Velocity range & $-300 - +300$\kms\\
Integration time & 270\,s \\
rms noise & 0.65\,mJy beam$^{-1}$ \\
LDA: &spatial resolution
\hline
\end{tabular}
\end{threeparttable}
\end{table}
\subsection{Observational progress} \label{sec_obs}
The inner Galaxy observations ($32\degr \le \ell \le 70 \degr$ and $-1\degr.5 \le b \le +1\degr.5$) shown in Figure~\ref{fig_skycover} are over 96\% complete.
The regions not yet observed are mostly located at Galactic latitudes $|b|>1\degr$. The red dots show the pointings with unusable data. The grid pattern of unusable data in the Galactic longitude range between 38$\degr$ and 43$\degr$ comes from ALFA Beam-6, which was malfunctioning in April 2011.
There are also several vertical red streaks, which follow right ascension tracks and pointings of observing sessions that are unusable.
These were likely caused by strong RFI or high system temperatures.
As is mentioned in Section \ref{sec_intr}, P-ALFA is the primary survey for the inner Galactic plane observations, which are still on-going, and SIGGMA is secondary. This means that SIGGMA does not determine the positions to observe.
The areas not yet not covered as well as those in range of $|1.5|\degr$ to $|2|\degr$ will not be completed soon, nor will the positions with unusable data be re-observed.
Since most of the areas missing data are of less interest (they are not expect to have strong RRL detections), we are releasing the survey data at the current stage.
\begin{figure}[hbtp]
\epsscale{1.}
\plotone{siggma_skycover.eps}
\caption{The sky coverage within the inner galactic plane ($-1\degr.5 \le b \le +1\degr.5$).
Each blue dot stands for a pointing with good spectral quality.
The red dots are the pointings of unusable data that we do not use.
Blank areas are yet to be observed.
}\label{fig_skycover}
\end{figure}
\subsection{Bad data removal} \label{sec_rfi}
Radio frequency interference (RFI) is prevalent in the SIGGMA data, and
RFI removal is the first step of our data reduction process.
We first attempt to excise strong and broad RFI, using a median filter window of 300 channels and a deviation of five times the rms noise.
%By adjusting the filter window and the magnitude of the deviation indicative of RFI, we target the (window size = 300 channels and median deviation = $5\sigma$).
We calculate the rms from the `clear` channels of a spectrum in the velocity range of $-300$ to $-200$\kms\ and $200$ to $300$\kms.
During line stacking (Section \ref{sec_stack}), we apply a second median filter to remove any weak RFI that remains.
Some spectra show strong baseline ripples or abnormal noise not identified by the median filter method.
We set a rms threshold to remove such spectra from further analyses.
Spectra with strong continuum sources also have high rms noise.
So as to not exclude such spectra, which also frequently have true line emission, we examine the difference of the rms from the central portion of the spectra ($-200 \sim 200$\kms) and to that of the edges.
About 7\% of the spectra are so affected.
\subsection{RRL stacking} \label{sec_stack}
In order to achieve a higher signal-to-noise ratio (S/N), we stack the twelve RRL lines (H$174\alpha$ to H$163\alpha$) found within the ALFA bandpass from 1225 to 1525\,MHz after re-sampling to the same velocity resolution.
The stacked spectra frequently have irregular baseline ripples, especially when there is strong continuum emission within the beam.
We fit a 5th order polynomial baseline to all the stacked spectra by masking velocities from $-50$ to 150\kms.
As an example, the final H$n\alpha$ spectrum toward the center of the W49A is shown in Figure \ref{fig_spec}.
\begin{figure}%[htbp]
\begin{minipage}{.48\textwidth}
\centering
\plotone{siggma_spec.eps}
\caption{The stacked H$n\alpha$ spectrum from the W49A region, with Gaussian fits.}\label{fig_spec}
\end{minipage}
\hfill
\begin{minipage}{.48\textwidth}
\centering
\plotone{siggma_rms_hist.eps}
\caption{The rms distribution of the final spectra.
The rms values are calculated from the clean portions of spectra ($-300 - -200$\kms\ and 200 - 300\kms. LDA: would look better of Figs. 2 and 3 had the same size)
}\label{fig_rms}
\end{minipage}
\end{figure}
There are $\sim33,000$ raw stacked spectra in total.
Figure \ref{fig_rms} shows the rms noise distribution of the stacked spectra, which peaks at $\sim0.65$ mJy\, beam$^{-1}$.
This agrees well with the estimated rms of $\sim 0.5$ mJy\,beam$^{-1}$ given by Paper~I.
The high-rms wing is caused by positions with bright continuum emission.
Figure \ref{fig_rms_glat} gives the rms distribution as a function of Galactic longitude and latitude.
Spectra within $|b| \leq 0.5\degr$ are more likely to have high rms due to the higher density of continuum sources there.
We see this same pattern in the plot of rms versus Galactic longitude, as the higher rms values correspond to locations of large massive star formation complexes.
\begin{figure}[htbp]
\epsscale{0.5}
\plotone{siggma_rms_glon.eps}
\plotone{siggma_rms_glat.eps}
\caption{The rms distribution versus Galactic longitude (left) and latitude (right).
The open red box is the median of the 0$\degr$.1 binned rms values and the red bars are their standard deviations.
}\label{fig_rms_glat}
\end{figure}
\subsection{Data cubes} \label{sec_cube}
We use the software package Gridzilla \citep{Barnes2001} to grid the stacked spectra into datacubes with $1\arcmin \times 1\arcmin$ pixel size.
The beam weighting is set to be proportional with the beam FWHM of $3.4\arcmin$.
We apply a Gaussian smoothing with the kernel FWHM of 6 arcmin, $\sim 2$ beam widths.
The spectrum of each pixel is then generated from the weighted median of the stacked spectra within a cut-off radius of $4\arcmin$.
These cubes of stacked RRL emission are the primary data product of SIGGMA, and are the basis for all analysis that follows in this paper.
\section{The catalog of \hii\ regions} \label{sec_cata}
SIGGMA provides an unbiased survey of the Galactic plane, and therefore can discover new discrete \hii\ regions.
Using sources identified in Wide-Field Infrared Survey Explorer (WISE) data, \citet{Anderson2014} created a catalog of over 8000 Galactic \hii\ regions and \hii\ region candidates by searching for their characteristic mid-infrared (MIR) morphology, named the WISE catalog of Galactic \hii\ regions (hereafter the WISE catalog).
The WISE catalog contains four types of objects, labeled as the ``known'', ``group'', ``candidate'', and ``radio quiet'' samples.
``Known'' regions have previously-detected RRL emission, ``group'' regions are associated with the known regions but lack such observations, ``candidate'' regions have radio continuum and mid-infrared emission but no RRL detections, and the ``radio quiet'' regions only have mid-infrared emission with the characteristic \hii\ region morphology.
We extract the spectrum of a WISE catalog \hii\ region from SIGGMA data by averaging SIGGMA spectra over the source's areal extent as defined in the catalog.
Then we perform an automatic Gaussian fitting on the averaged spectrum of each source.
The ranges of fitting parameters are set for H-RRL as $-10$\kms\ $\leq V_{LSR} \leq $120\kms, 12\kms\ $<$ FWHM $<$ 100\kms, and signal-to-noise ratio $\geq 5$.
We use a chi-square test and an F-test to evaluate the fitting of multiple velocity components.
For each spectrum, we perform one-, two-, and three-component Gaussian fits separately, and calculate the reduced chi-square values.
If the one-component Gaussian fit has the smallest reduced chi-square value that is larger than one, we confirm it as the best fitting.
If the multi-components (two or three) Gaussian fits have the smallest larger-than-one reduced chi-square value, we use an F-test to assess if it is significantly better than the fits with fewer components.
If the calculated F-test probability is less than 0.05, we confirm it as the best fitting.
Otherwise, we confirm the fit with one fewer component as the best fitting.
Within the survey zone of SIGGMA, there are 329 ``known'' \hii\ regions.
We detected H-RRLs in the direction of 246 known \hii\ regions; 68 have two velocity components and 12 have three velocity components.
Figure \ref{vlsr_map} shows good agreement between SIGGMA line velocities with respect to local standard of rest (LSR) and those compiled in the WISE catalog.
Table\,\ref{tab_hii_k_sample} lists the first 10 rows of RRLs detected toward ``known'' WISE \hii\ regions.
Columns 1, 2, and 3 give the region names with their Galactic coordinates.
Columns 4, 5, and 6 show the fitted line profile parameters.
Columns 7 and 8 are the R.M.S. and signal-to-noise ratio of the spectrum.
We provide the full catalogue in Table \ref{tab_HII_known} in Appendix\,\ref{appe:cata}).
\begin{figure}[htbp]
\epsscale{0.6}
\plotone{siggma_wise_vlsr.eps}
\caption{Known \hii\ region RRL $V_{LSR}$ values compared with
those derived in SIGGMA data. The dashed line shows a 1:1 relationship.}\label{vlsr_map}
\end{figure}
We also provide line parameters for ``candidate'' \hii\ regions, for which no ionized gas spectroscopic detections exist in the literature.
There are 165 ``candidate'' sources observed by SIGGMA, of which 84 have detected SIGGMA emission.
We give the first 10 sample of SIGGMA detected ``candidate'' \hii\ region RRL properties in Table\,\ref{tab_hii_c_sample} (see Table~\ref{tab_HII_candidate} in Appendix\,\ref{appe:cata} for the full ``canditate'' catalogue).
It is possible that RRL detections toward a source come from nearby regions within the telescope beam, or from diffuse ionized gas along the line of sight.
We therefore note which SIGGMA detections arise from positions with multiple ``known'' or ``candidate'' \hii\ regions within the ALFA beam. We also note cases where integrating over the entire \hii\ region also includes positions from overlapping ``known'' or ``candidate'' \hii\ regions.
Sources in the ``group'' sample are frequently found toward known regions, which confuses the interpretation of their spectra.
We therefore do not provide line parameters for group \hii\ regions.
Because they are too faint for the present survey, we do not provide line parameters for the radio quiet sample.
\begin{table}[htbp]
\centering
\caption{RRL emission from ``known'' \hii\ regions)}\label{tab_hii_k_sample}
\begin{threeparttable}
\begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}*{8}{c}}
\hline
\hline
Name & $l$ & $b$ & Peak& V$_{LSR}$& FWHM& RMS& S/N\\
&$^\circ$&$^\circ$&mJy\,beam$^{-1}$&km\,s$^{-1}$&km\,s$^{-1}$&mJy\,beam$^{-1}$& \\
\hline
G032.800$+$00.190 &32.800& $+$0.190 &9.16 $\pm$ 1.01 &14.9 $\pm$ 1.2 &22.1 $\pm$ 2.8 &1.65 &8.9 \\
G032.823$+$00.072$^a$ &32.824& $+$0.072 &30.40 $\pm$ 2.89 &106.7 $\pm$ 1.2 &25.3 $\pm$ 2.8 &2.76 &19.0\\
G032.835$+$00.017 &32.835& $+$0.017 &191.52 $\pm$ 22.13 &109.8 $\pm$ 1.8 &33.3 $\pm$ 4.8 &28.51 &13.2\\
G032.982$-$00.338 &32.983& $-$0.338 &17.08 $\pm$ 2.16 &50.8 $\pm$ 1.2 &20.6 $\pm$ 3.3 &2.56 &10.3\\
G033.051$-$00.078 &33.051& $-$0.078 &26.21 $\pm$ 1.76 &103.9 $\pm$ 0.9 &28.0 $\pm$ 2.3 &0.77 &61.2\\
G033.080$+$00.073 &33.080& $+$0.073 &11.65 $\pm$ 0.97 &102.2 $\pm$ 1.1 &27.8 $\pm$ 2.7 &1.22 &17.3\\
G033.142$-$00.088$^a$ &33.142& $-$0.087 &20.93 $\pm$ 1.52 &103.2 $\pm$ 0.9 &26.4 $\pm$ 2.2 &1.19 &30.9\\
G033.176$-$00.016 &33.176& $-$0.015 &27.82 $\pm$ 2.09 &105.1 $\pm$ 1.0 &26.2 $\pm$ 2.3 &1.63 &29.9\\
G033.205$-$00.013 &33.205& $-$0.012 &14.64 $\pm$ 2.52 &106.5 $\pm$ 1.1 &13.1 $\pm$ 2.6 &2.46 &7.4\\
G033.263$+$00.066 &33.263& $+$0.067 &11.51 $\pm$ 1.06 &111.3 $\pm$ 1.9 &42.2 $\pm$ 4.5 &1.40 &18.2\\
\hline
\end{tabular*}
\begin{tablenotes}
\small
\item a. Detections arise from positions with multiple ``known'' or ``candidate'' \hii\ regions within the ALFA beam.
\end{tablenotes}
\end{threeparttable}
\end{table}
\begin{table}[htbp]
\centering
\caption{RRL emission from ``candidate'' \hii\ regions }\label{tab_hii_c_sample}
\begin{threeparttable}
\begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}*{8}{c}}
\hline
\hline
Name & $l$ & $b$ & Peak& V$_{LSR}$& FWHM& RMS& S/N\\
&$^\circ$&$^\circ$&mJy\,beam$^{-1}$&km\,s$^{-1}$&km\,s$^{-1}$&mJy\,beam$^{-1}$& \\
\hline
G033.024$-$00.366 &33.025&$-$0.366&26.15 $\pm$2.02&50.8 $\pm$1.2 &28.2 $\pm$3.0 &2.61 &18.2\\
&33.025&$-$0.366&11.14 $\pm$1.76&104.6 $\pm$3.5 &43.1 $\pm$11.0 &2.61 &9.6\\
G033.306$-$00.150$^a$ &33.307&$-$0.150&8.23 $\pm$0.70&106.8 $\pm$1.2 &28.4 $\pm$2.8 &0.55 &27.5\\
G033.734$-$00.316$^a$ &33.735&$-$0.315&5.34 $\pm$0.68&52.7 $\pm$1.2 &20.3 $\pm$3.3 &0.71 &11.6\\
G034.130$-$00.174$^b$ &34.131&$-$0.173&12.77 $\pm$0.78&50.1 $\pm$0.6 &28.1 $\pm$2.0 &0.71 &32.4\\
&34.131&$-$0.173&3.12 $\pm$0.89&90.7 $\pm$1.8 &15.7 $\pm$5.3 &0.71 &5.9\\
G034.174$-$00.086$^b$ &34.175&$-$0.085&10.50 $\pm$0.99&48.2 $\pm$0.9 &29.1 $\pm$3.2 &0.80 &24.3\\
&34.175&$-$0.085&4.59 $\pm$1.06&92.2 $\pm$1.3 &13.1 $\pm$3.8 &0.80 &7.1\\
G034.190$-$00.063$^b$ &34.191&$-$0.063&10.26 $\pm$0.90&48.9 $\pm$0.8 &30.8 $\pm$2.8 &0.74 &26.4\\
&34.191&$-$0.063&4.32 $\pm$0.92&90.5 $\pm$1.2 &14.3 $\pm$3.6 &0.74 &7.6\\
\hline
\end{tabular*}
\begin{tablenotes}
\small
\item a. Detections arise from positions with multiple ``known'' or ``candidate'' \hii\ regions within the ALFA beam.
\item b. Detections are integrated over the entire \hii\ region also includes positions from overlapping ``known'' or ``candidate'' \hii\ regions.
\end{tablenotes}
\end{threeparttable}
\end{table}
\section{Distributions along the Galactic Plane} \label{sec_gal}
\subsection{RRL intensity} \label{sec_gal_rrl}
Figure \ref{fig_rrl_map} shows the RRL integrated intensity maps in 20\kms\ intervals, smoothed to $5\arcmin \times 5\arcmin$ pixels.
We can see both individual bright sources and extended structure in these maps.
There are few detections from $l=65\degr$ to $70\degr$.
Some bright sources that appear at all velocity ranges are caused by baseline distortions from their strong continuum emission, e.g., the two bright spots centered at G34.8$-$0.3 and G34.6$-$0.6 are introduced by the SNR W44.
\begin{figure}[htbp]
\epsscale{1.2}
\plotone{siggma_rrl_map.eps}
\caption{Integrated RRL intensity maps over various velocity ranges.
}\label{fig_rrl_map}
\end{figure}
Figure \ref{lv_map} shows the longitude-velocity diagram of RRL intensity.
We smooth the SIGGMA datacube to $1\degr$ resolution in Galactic longitude, and integrate over $b = \pm 0.5 \degr$.
The vertical stripes are due to bright massive star formation regions. Since RRLs are $\sim 25$\kms\ wide, they have a large vertical extent in this figure.
For comparison with the molecular gas, we overlap the CO $1-0$ emission \citep{Dame2001} integrated over the same Galactic latitude range.
The RRL and CO emission are both bright around massive star formation region complexes, but on the whole there is a poor correlation between the CO and RRL gas.
The strong feature at Galactic longitude of 34$\degr$ is caused by the SNR W44 and some features in the negative velocity range are from carbon and helium RRLs.
\begin{figure}[htbp]
\centering
\epsscale{1.2}
\plotone{siggma_lv_map.eps}
\caption{Longitude-velocity map of SIGGMA data (image) with CO contours by \citep{Dame2001}. The contour levels are 0.01, 1.0, 7.5, 15.0, 22.5, 30.0, 37.5, 45.0, 52.5, and 60.0 K.}\label{lv_map}
\end{figure}
\subsection{Free-free emission} \label{sec_gal_free}
Although radio continuum data of the Galactic plane at 1.4\,\ghz\ have contributions from both thermal and non-thermal sources, RRL emission reveals only the thermal component.
\citet{Alves2012} described the derivation of the Galactic free-free emission using their RRL observations.
Similarly, one can also calculate the continuum temperature of thermal emission by assuming a electron temperature, which is expressed as \citep{Mezger1967a, Lockman1978, Quireza2006a}:
\begin{equation}
T_C=
\frac{(1+0.08)}{6985}\cdot a(T_e) \cdot T_e^{1.15} \cdot \nu _{GHz}^{-1.1} \cdot \int T_L dV,
\label{equ_temp}
\end{equation}
where $V$ is in \kms, $a(T_e) \simeq 0.97$ at 1.4\,GHz, and $\nu_{GHz}$ equals to 1.4 in our case. This equation assumes a helium to hydrogen ionic abundance of 0.08.
Using Equation~\ref{equ_temp} we compute the radio continuum temperature from thermal free-free emission alone using the SIGGMA integrated intensity (moment 0) maps, and assuming a constant electron temperature of 8000\,K.
Figure\,\ref{fig_gal_free} shows the result of the thermal emission along the Galactic plane.
The figure is smoothed to $0.5\degr \times 0.5\degr$ resolution.
Correlations can be seen from the \hii\ regions and some of the SNRs.
To examine the general trend of the thermal emission along the Galactic longitude, we present the mean and median value over the $b=\pm1\degr$ range (see Figure\,\ref{fig_gal_plot}).
\begin{figure}[htbp]
\centering
\includegraphics[width = 7in]{temperature_thermal_map.eps}
\caption{Free-Free continuum intensity. $T_{C}$ is calculated following Equation \ref{equ_temp}, using the SIGGMA H-RRL 0$^{th}$ moment map (integrated over $-20 - 120$\kms) and assuming $T_e = 8000 K$. The unit for the map is in Kelvin. The white circles are ``known'' HII regions from the WISE catalog and the blue circles are SNRs from the Green catalog (see Section \ref{sec_snr}). The bright spots between $l=55\degr-57\degr$ are likely artificial effects due to missing data (see Figure \ref{fig_skycover}).}
\label{fig_gal_free}
\end{figure}
\begin{figure}[bhpt]
\centering
\includegraphics[width = 6in]{temperature_thermal_plot.eps}
\caption{Free-Free Continuum Intensity as a function of Galactic longitude. The red line is the mean temperature over $|b|\le 1\degr$. The blue line is the median value over the same range.}
\label{fig_gal_plot}
\end{figure}
\section{Carbon RRL emission regions} \label{sec_crrl}
C-RRLs are offset by $\sim-150$\kms\ from H-RRLs for the same principle quantum numbers.
SIGGMA detects H-RRL emission from the velocity range of $\sim -50$ to $150$\kms\ (cf.~Figure~\ref{lv_map}).
To identify C-RRL emission regions, we modify the SIGGMA datacubes by shifting the velocity to center at the C-RRL rest frequency.
We create C-RRL moment maps from the shifted cubes by integrating over the same velocity range as we did for H-RRLs.
Table\,\ref{tab_crrl} contains information about the C-RRL regions. % EXPLAIN COLUMNS OF TABLE, SAME FOR OTHER TABLES
In this table, we list the region name,
the Galactic coordinate centroid, the angular size, the WISE catalog \hii\ region that is spatially coincident, the integrated C-RRL intensity, the H- to C-RRL integrated intensity ratio, and a qualitative assessment of the C-RRL data quality (A=highest quality, C=low quality).
Since the line widths for C-RRLs are $\lesssim$ 10\kms, the SIGGMA velocity resolution likely broadens the C-RRLs and decreases their intensities.
Instead of fitting Gaussian profiles, therefore compute the integrated intensity.
Carbon RRL emission is thought to arise from PDRs, and can be used to investigate PDR properties \citep[][etc.]{Pankonin1977,Natta1994,Roshi2007}.
Polycyclic aromatic hydrocarbon (PAH) molecules in PDRs emit at 8.0$\um$ \citep{Watson2008,Watson2009}, and we therefore expect a good agreement between C-RRL and 8.0$\um$ emission.
We compare the C-RRL emission distribution with the {\it Spitzer} 8.0\,\micron\ infrared data from the Galactic Legacy Infrared Midplane Survey Extraordinaire (GLIMPSE) Legacy Program \citep{Benjamin2003,Churchwell2009}.
%Since the dust within the \hii\ regions is heated by the central star and re-emits in mid-infrared (MIR), there is a strong correlation between \hii\ regions and their MIR images \citep{Wood1989,Kurtz1994,Anderson2011}.
Figure\,\ref{fig_crrl-g342} gives an example of those C-RRL regions.
We also include in this figure 24$\um$ {\it Spitzer} data from the MIPSGAL survey \citep{Carey2009, Gutermuth2015}.
This figure shows the spectral grid overlying the integrated C-RRL intensity map, and contours of the integrated C-RRL emission over the {\it Spitzer} three-color map (red: 24\,$\um$, green: 8\,$\um$, blue: 4.5\,$\um$).
For the source G34.2$+$0.2, the integrated C-RRL emission peaks on the corresponding \hii\ region as defined by the infrared emission.
%We also show the integrated H-RRL emission.
We find an extended C-RRL structure to the north, but the 8.0$\um$ emission is weak there, making the PDR origin of this emission doubtful.
More figures of detected C-RRL regions are given in Appendix\,\ref{appe:crrl}.
For G34.7$-$0.6 and G35.1$-$0.7 (see Figures \ref{fig_crrl-g347} and \ref{fig_crrl-g351}), we see the C-RRL emission regions are offset relative to the \hii\ regions.
The background of spectral grid maps of some C-RRL regions show that the C-RRL emission regions have an annular structure, with stronger emission regions surrounding weaker emission regions (see Figures \ref{fig_crrl-g389}, \ref{fig_crrl-g536}, \ref{fig_crrl-g609}, \ref{fig_crrl-g614}, and \ref{fig_crrl-g631} in Appendix\,\ref{appe:crrl}).
This may imply the emission feature from PDRs, although the morphologies do not agree that seen at 8.0\,\micron.
\begin{table}[htbp]
\caption{C-RRL emission regions}\label{tab_crrl}
\begin{threeparttable}
\begin{tabular*}{\textwidth}{cccclclc}
\hline
\hline
Name& $l$& $b$&Radius&\hii\ Region&$\int I_{CRRL}dV$& C/H$^a$& Quality$^b$\\
°.°.°.&&Jy\kms&&\\
\hline
G34.2$+$0.2& 34.24& $+$0.15& 0.05&G034.256$+$00.136 (NRAO584) &0.07& 0.03 & B\\
G34.7$-$0.6& 34.73& $-$0.58& 0.05&G034.757$-$00.669 &0.15& 0.03 & C\\
G35.1$-$0.7& 35.12& $-$0.71& 0.03&G035.126$-$00.755 &0.12& 0.38 & B\\
G38.9$-$0.4& 38.93& $-$0.42& 0.05&G038.926$-$00.389 &0.03& \nodata$^c$& B\\
G43.2$-$0.0& 43.16& $-$0.00& 0.05&G043.170$-$00.004 (W49A) &0.58& 0.08 & A\\
G45.5$+$0.0& 45.46& $+$0.07& 0.05&G045.453$+$00.044 (K47) &0.10& 0.08 & B\\
G49.5$-$0.4& 49.49& $-$0.40& 0.05&G049.484$-$00.391 (W51A) &0.83& 0.07 & A\\
G53.6$+$0.0& 53.57& $+$0.02& 0.03&G053.541$-$00.011 &0.05& 0.50 & B\\
G60.9$-$0.1& 60.88& $-$0.11& 0.05&G060.881$-$00.135 (S87) &0.03& 0.30 & A\\
G61.4$+$0.1& 61.44& $+$0.13& 0.05&G061.473$+$00.094 (S88) &0.24& 0.24 & B\\
G63.1$+$0.4& 63.14& $+$0.38& 0.05&G063.164$+$00.449 (S90) &0.10& 0.06 & C\\
\hline
\end{tabular*}
\begin{tablenotes}
\small
\item a. Integrated intensity ratio of H-RRL and C-RRLs.
\item b. Qualitative metric of data quality (A=high quality, C=low quality)
\item c. There is no valid H-RRL detection since a H-RRL signal is in the off position.
\end{tablenotes}
\end{threeparttable}
\end{table}
\begin{figure}[htbp]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 3.3in]{crrl_eps/G34.2+0.2_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 3.3in]{crrl_eps/G34.2+0.2_rgb_contour.eps}}\\
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 3.3in]{crrl_eps/G34.2+0.2_ha_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 3.3in]{crrl_eps/G34.2+0.2_ha_rgb_contour.eps}}\\
\caption{The C-RRL region G34.2+0.2.
(a) The C-RRL grid with velocity from $-50$ to $150$\kms.
The background is the integrated C-RRL intensity over 30 to 70\kms.
(b) The infrared RGB map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid with integrated C-RRL contours.
The contour levels are 2, 4, 6, 8, 10, 12, 14, 16 mJy\,beam$^{-1}$\kms.
(c) The H-RRL grid with velocity from $-50$ to $150$\kms.
The background is the integrated C-RRL intensity over 0 to 100\kms.
(d) The infrared RGB map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated H-RRL contours.
The levels are 0.2, 0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6 Jy\,beam$^{-1}$\kms.
}
\label{fig_crrl-g342}
\end{figure}
\section{RRLs from Galactic supernova remnants} \label{sec_snr}
SNRs are strong non-thermal radio sources.
Early studies have however reported RRL detections toward Galactic SNRs \citep{Downes1974,Pankonin1976}.
These authors concluded that the RRLs likely originated in low-brightness \hii\ regions along the line of sight.
\cite{Onic2012} investigated the possibility of significant production of thermal bremsstrahlung radiation from Galactic SNRs, from which the radio continuum has a flattening at higher frequencies and thermal absorption at lower frequencies. They suggested that for the source 3C396 there could be a thermal contamination.
However, \citep{Cruciani2016}, with their multi-frequency radio continuum and polarization observations, confirmed that 3C 396 emission is dominated by synchrotron emission.
We examine the SIGGMA RRL emission in the direction of Galactic SNRs.
The morphology provided by the RRL maps may also help to infer whether the RRLs come from SNRs or not.
\cite{Green2014} updated their comprehensive Galactic SNR catalog (hereafter the Green catalog).
The SIGGMA survey contains 32 SNRs that are listed in this catalog.
Some SNRs with large radi are faint and some are overlapped with one or more \hii\ regions; these are not ideal candidates for SIGGMA RRL detections.
By examining the continuum emission at 1.4\,GHz from the VLA Galactic Plane Survey \citep[VGPS,][]{Stil2006} and the location of nearby \hii\ regions, we extract the spectra of 14 SNRs (see Table\,\ref{tab_snr}).
In this table, we list the names of the SNRs, the Galactic coordinate of the central region and its radius,
the integrated intensity of H-RRL emission averaged over the region,
the LSR velocity of the peak H-RRL emission, and the calculated near and far kinematic distances using the \citet{Reid2014} rotation curve. For all regions, one of the two kinematic distances agrees well with the distance from the literature, indicating that the H-RRLs do indeed come from the SNRs themselves.
The line widths of the detected H-RRLs from SNRs are broad.
This implies that the temperature and/or turbulent motions of the plasmas are higher than that of \hii\ regions.
However, the broad line width makes the spectrum more likely to be affected by baseline fitting.
The high continuum intensity of the SNRs may also introduce uncertainties due to baseline issues.
Uncertainties in derived RRL parameters from SNRs are therefore larger than those of \hii\ regions.
In this case, the formal fitting errors of the line profiles are relatively small compared to the larger uncertainties due to baseline structure; we do not attempt to quantify the parameter uncertainties in Table\,\ref{tab_snr}.
Most detected SNRs show a similar broad line profile.
The agreement between SNR profiles implies that despite the baseline uncertainties, these detections are real.
Figure\,\ref{fig_snr-g347} shows the SIGGMA RRL detection toward SNR G34.7$-$0.4 with the SIGGMA spectral grid overlaid on the integrated H-RRL intensity map (left) and VGPS continuum with integrated RRL contours overlaid (right).
The RRL emission intensity is correlated with the continuum intensity, indicating significant thermal continuum emission.
The spectral profiles vary over the source.
Within the central region, the lines are broad with strongly varying peak intensities.
At the northeast and southeast edge there are \hii\ regions (blue circles in Figure\,\ref{fig_snr-g347} (b)), the spectra are combinations of broad and narrow Gaussian features. The excellent agreement between H-RRL and continuum morphologies again indicates that the H-RRLs arise from the SNR and not \hii\ regions along the line of sight.
Figures for other SNRs listed in Table\,\ref{tab_snr} are given in Appendix\,\ref{appe:snr}.
\begin{table}[htbp]
\renewcommand{\arraystretch}{0.8}
\caption{ H-RRL detections from SNRs}\label{tab_snr}
\begin{threeparttable}
\begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}*{12}{c}}
\hline
\hline
GName$^a$&Other Name& $l$& $b$& Radius&V$_{LSR}$&FWHM&D$_{N}$&D$_{F}$&D& Quality$^c$\\
&& deg.°.& deg.& \kms&\kms&kpc&kpc&kpc&\\
\hline
G33.6$+$0.1&Kes 79 & 33.67& $+$0.03& 0.11 &106.3&26.1 &6.4 &7.5 &7.1$^{[1]}$ &C\\
G34.7$-$0.4&W44 & 34.67& $-$0.42& 0.32 &47.7 &114.3& 2.9 &10.8 &2.9$^{[2]}$ &B\\
& & & & &49.4 &11.6 &3.0 &10.7 &&\\
& & & & &138.0&80.0 & 6.8 & 6.8 &&\\
G35.6$-$0.4& & 35.60& $-$0.43& 0.13 &53.7 &23.5 &3.2 &10.3 &3.6$^{[3]}$ &A\\
G36.6$-$0.7& & 36.59& $-$0.69& 0.28 &40.6 &64.4 &2.5 &10.8 &\nodata &B\\
& & & & &57.5 &20.2 & 3.4 & 9.9 &&\\
& & & & &146.0&71.5 &6.7 &6.7 &&\\
G39.2$-$0.3&3C 396 & 39.23& $-$0.32& 0.08 &12.8 &34.0 &0.8 &9.2 &$\leq11.3^{[4]}$&A\\
& & & & &61.2 &24.5 &3.7 &9.2 &&\\
G40.5$-$0.5& & 40.51& $-$0.51& 0.23 &45.3 &36.1 &2.8 &9.8 &\nodata &C\\
G41.1$-$0.3&3C 397 & 41.12& $-$0.31& 0.05 &62.1 &24.5 &3.8 &8.7 &10.3$^{[5]}$ &A\\
G41.5$+$0.4& & 41.46& $+$0.39& 0.12 &19.2 &18.2 &1.3 &11.2 &10.3$^{[6]}$ &A\\
G43.3$-$0.2&W49B & 43.27& $-$0.19& 0.07 &9.1 &42.5 &0.6 &11.5 &7.5$^{[1]}$,10$^{[7]}$ &A\\
& & & & &62.7 &24.7 &4.1 &8.0 &&\\
G45.7$-$0.4& & 45.56& $-$0.35& 0.21 &65.1 &18.6 &4.8 &6.8 &\nodata &B\\
& & & & &86.5 &100.4 &5.8 &5.8 &&\\
G46.8$-$0.3&HC 30 & 46.77& $-$0.27& 0.16 &60.2 &25.3 &4.4 &7.0 &6.4$^{[1]}$ &C\\
G49.2$-$0.7&W51C & 49.14& $-$0.61& 0.22 &62.3 &41.2 &5.4 &5.4 &6$^{[1]}$ &A\\
& & & & &122.8&51.8 &5.4 &5.4 &&\\
G54.4$-$0.3&HC 40 & 54.47& $-$0.29& 0.38 &43.6 &15.5 &4.1 &5.6 &3.3$^{[1]}$,6.6$^{[8]}$ &B\\
G57.2$+$0.8&4C21.53& 57.24& $+$0.82& 0.10 &106.1&39.8 &4.5 &4.5 &\nodata &B\\
\hline
\end{tabular*}
\begin{tablenotes}
\small
\item a. Names are defined using the Galactic coordinates given by \cite{Green2014}.
\item b. Integrated intensity over the velocity range of 0 to 150\kms.
\item c. Qualitative metric of data quality (A=high quality, C=low quality)
\item REFERENCES: [1] \citet{Case1998};[2] \citet{Seta1998};[3] \citet{Zhu2013};[4] \citet{Caswell1975}; [5] \citet{Safi-Harb2005}; [6] \citet{Pavlovic2014}; [7] \citet{Zhu2014}; [8] \citet{Ranasinghe2017};
\end{tablenotes}
\end{threeparttable}
\end{table}
\begin{figure}[htbp]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 3.5in]{snr_eps/G34.7-0.4_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 3.5in]{snr_eps/G34.7-0.4_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G34.7-0.4.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.5, 1, 2, 3, 4, 5, 6, 7 Jy\,beam$^{-1}$\kms.
The blue circles are location of \hii\ regions.
}
\label{fig_snr-g347}
\end{figure}
\section{Individual RRL emission regions}\label{sec_indi}
SIGGMA maps of \hii\ regions can reveal information not apparent in single-pointing RRL observations. To illustrate this, we present the RRL analysis of two large star-forming regions, W49 and W51.
\subsection{W49}
The W49 star-forming complex can be separated into sub-regions W49A and W49B.
W49A is among the most luminous star formation complexes in the Galaxy and is located at a distance of 11.11$^{+0.79}_{-0.69}$\,\kpc\ reported by \citet{Zhang2013} from trigonometric parallax measurements of H$_{2}$O masers.
W49B is a SNR whose centroid is $\sim$ 12$\arcmin$ from that of W49A \citep{Lacey2001}.
In the W49A region, there are compact radio sources with RRL emission that are embedded in diffuse ionized gas \citep{Depree1997,Depree2003}.
Although W49A has many embedded ultra-compact \hii\ regions, due to beam dilution the RRL emission observed by SIGGMA likely arises mostly from diffuse gas.
Also, at L-band, compact \hii\ regions may be optically thick and therefore may not contribute as much to the observed RRL emission as they would at higher frequencies.
Figure~\ref{w49_spec_map} (a) shows the SIGGMA RRL spectral grid for the W49 complex.
RRL emission is detected over the entire region.
In addition to the known velocity of W49A, $\sim$10\kms, there is a second velocity component around $\sim$60\kms\ found toward both W49A and W49B (Figure \ref{w49_spec_map} (b)).
This 60\kms\ component has been detected previously.
\citet{Downes1974} reported the RRL detection in the direction of W49B with a LSR velocity of 65\kms.
\citet{Pankonin1975} also detected RRL towards W49B at LSR velocity of 60\kms.
\citet{Anantharamaiah1986} detected a RRL velocity of 63\kms\ toward W49A (G43.2-0.1).
Figure \ref{w49_spec_map} panels (c) and (d) show the RRL intensity contours of the two velocity components overlaid on top of VGPS continuum data.
The 60\kms\ RRL component is also found toward W49A, although some of its intensity could arise from the line wing of 10\kms\ component.
Both of the velocity distributions peak at the two sources, although the W49B peaks are offset towards the Galactic east.
The spatial mismatch may imply that the thermal RRL emission region is different from that of the non-thermal synchrotron emission.
The fact that there are two velocity components for the region is confusing. The kinematic distance for W49A from the 10\kms\ component agrees with the known distance for this region, so we can assume that the 10\kms\ component comes from gas 11.4\kpc\ distant. It therefore is possible that the 60\kms\ component comes from W49B, and its distance is quite different from that of W49A.
Previous \hi\ absorption studies suggested W49B at a distance of $\sim$8.0\kpc\ \citep{Moffett1994} or $\sim$11.4\kpc\ \citep{Brogan2001}.
Recent work by \citet{Zhu2014} assigned W49B a velocity of 40\kms\ at distance about $\sim$10\kpc.
To determine if the 60\kms\ component comes from W49B, we analyze VGPS HI data in its direction (Figure \ref{w49_hi}).
Along this sight line there is near and far gas with velocities from 0$-$70\kms.
It seems that essentially all velocities where W49A shows absorption have corresponding absorption for W49B, except for near 10\kms\ and 60\kms.
So the 10\kms\ RRL in the direction of W49B seems not likely from W49B.
While the case of 60\kms\ component is complicated and needs further study.
\begin{figure}[htbp]
\centering
\subfloat[Integrated RRL intensity map overlaid with spectral lines.]{\includegraphics[width = 3.3in]{w49_spec_map.eps}}
\subfloat[H-RRL spectra of W49A and W49B]{\includegraphics[width = 3.3in]{w49_spec_plot.eps}}\\
\subfloat[The 10\kms\ velocity component]{\includegraphics[width = 3.3in]{w49_vgps_siggma_v1.eps}}
\subfloat[The 60\kms\ velocity component]{\includegraphics[width = 3.3in]{w49_vgps_siggma_v2.eps}}\\
\caption{Integrated RRL intensity maps of the W49 region. (a) The RRL spectral grid. The background image is of RRL integrated intensity integrated over the velocity range from 0 to 70\kms.
(b) shows the spectral plots of W49A and W49B. The line intensity of W49B is enlarged by factor of 2 so that its detail can be seen.
(c) and (d) are the SIGGMA integrated intensity RRL contours overlaid on VGPS 1.4\ghz\ continuum data. The SIGGMA data were integrated over $0-20$\kms\ (panel c) and $50-70$\kms\ (panel d).
The SIGGMA contour levels are at values of 0.05, 0.1, 0.2, 0.4, 0.6, 1.0, 1.4, and 1.8 Jy\,beam$^{-1}$\kms\ for (c) and 0.05, 0.1, 0.2, 0.4, and 0.6 Jy\,beam$^{-1}$\kms\ for (d).
}\label{w49_spec_map}
\end{figure}
\begin{figure}[htbp]
\centering
\plotone{w49_hi_plot.eps}
\caption{The \hi\ absorption spectra towards W49A and W49B. For the reason of comparison, we present two spectrum for each source and add 0.5 to separate the W49A2 and W49B2. }\label{w49_hi}
\end{figure}
\subsection{W51}
The W51 region is another enormous first-quadrant star formation complex.
It is located near the tangent point in the Sagittarius Arm at a distance of 5.41$^{+0.31}_{-0.28}$\kpc\ measured by means of trigonometric parallax \citep{Sato2010}, and is grouped into three regions, W51A, W51B, and W51C.
W51A and W51B are massive star-forming regions, whereas W51C is a SNR \citep{Subrahmanyan1995}.
Pointed RRL observations toward W51 have been carried out \citep{Pankonin1979,Anderson2011}, showing that it can be decomposed into multiple discrete \hii\ regions.
Similarly to W49, much of the SIGGMA RRL emission from W51 is likely due to diffuse gas rather than from compact \hii\ regions.
Figure \ref{w51_map} shows the comparison of the integrated RRL contours from SIGGMA, 1.4 GHz continuum map in blue from the VGPS, and the infrared map from {\it Spitzer} (8$\um$ in green and 24 $\um$ in red).
The infrared emission indicates the emission from \hii\ regions.
The contour corresponding with the ``known'' \hii\ region (the red circle in Figure \ref{w51_map}) shows the capability of SIGGMA for detecting weak RRL emission.
It is indicated that the SIGGMA RRL map is sensitive to not only the discrete \hii\ regions but also the diffuse gases in between.
The RRL contours match with the strong infrared emission and also shows some RRL emitting regions where the infrared emission is not obvious.
To the west of W51B in Figure \ref{w51_map} (around G48.5$-$0.2), RRLs are detected from diffuse ionized gas, which shows a bubble-like feature in the infrared.
The lack of infrared emission at locations of strong RRL emission implies that the RRL emission may be due to leaking photons from \hii\ regions.
Figure \ref{fig_crrl-g494} in Appendix \ref{appe:crrl} and Figure \ref{fig_snr-g492} in Appendix \ref {appe:snr} give the spectral grid maps and integrates RRL contours of the W51 region.
As we saw for other SNRs, there is strong RRL emission toward W51C, which is bright in 1.4 GHz continuum but weak in the infrared.
The LSR velocities of SIGGMA-detected RRLs from W51A, W51B, and W51C are 62.8\kms, 66.4\kms, and 62.3\kms, indicating that they are physically related.
This agrees well with the comprehensive studies in the literature \citep{Mufson1979, Mehringer1994, Brogan2013}.
\citet{Koo1997a, Koo1997b} studied the interaction between W51C and a nearby molecular cloud.
From the interface between the SNR and the surrounding molecular cloud, they found high velocity emission line components of CO and HCO$^{+}$ around 100\kms, as well as high velocity \hi\ gas with similar V$_{LSR}$.
Coincidentally, there is also an second velocity RRL component at 122.8\kms\ towards W51C detected by SIGGMA, indicating that RRLs could originate from the shocked gas between SNR and molecular gas.
\begin{figure}[htbp]
\centering
\plotone{w51_rgb_siggma.eps}
\caption{Three-color map of W51
with {\it Spitzer} 24 $\um$ data in red, {\it Spitzer} 8 $\um$ data in green, and VGPS 1.4\ghz\ continuum data in blue.
SIGGMA H-RRL contours are overlaid at levels of 0.05, 0.15, 0.3, 0.45, 0.6, 0.9, 1.2, 1.5, 1.8, and 2.1 Jy\,beam$^{-1}$\kms. The red circle shows the location and radius of a ``known'' \hii\ region from the WISE catalog, illustrating SIGGMA's ability to detect faint RRL emission. The blue circle shows the location of the SNR W51C with the radius from the Green catalog.}\label{w51_map}
\end{figure}
\section{Summary} \label{sec_summ}
SIGGMA is the most sensitive large-scale RRL survey extent.
The average rms level of the SIGGMA spectra is $\sim 0.65$ mJy.
The sky coverage of the released data is $l=32\degr - 70\degr$, $|b|\le 1.5\degr$.
We have produced RRL maps from the SIGGMA data observed with a FWHM of 3.4$\arcmin$ and a spectral resolution of 5.1\kms.
Both discrete \hii\ regions and diffuse ionized gas can be seen in the maps.
By matching with the WISE catalog, we provide RRL profile parameters of the known and candidate \hii\ regions.
We have also examined carbon RRL emission along the inner Galactic plane.
Although C-RRLs are weak and the SIGGMA spectra have baseline ripples, we did detect C-RRLs.
RRL emission from SNRs is another topic allowed by the SIGGMA data.
We have extract all the spectra toward SNRs in the SIGGMA survey area.
More than half of them show emission line features, indicating that RRL emission may be a useful way to determine SNR distances.
To illustrate the utility of SIGGMA data toward star formation complexes, we discussed results toward the two bright star-forming complexes, W49 and W51.
Our analysis of the SNR W49B data indicate that the 10\kms\ RRL component is unlikely associated with the SNR and the origin of the 60\kms\ is not clear.
RRLs from the SNR W51C are with similar LSR velocities to W51A and W51B.
Also a high velocity RRL component toward W51C is detected, which matches with the high velocity component of nearby molecular cloud and \hi\ gases.
The survey data are available online in standard fits files format.\footnote{WE NEED TO DISCUSS WHERE TO PUT AND WHAT TO PUT?}
\acknowledgments
\newpage
\appendix
\section{Catalogues of detected \hii\ regions}\label{appe:cata}
\input{table_cata_k}
\input{table_cata_c}
\newpage
\section{Figures of detected C-RRL emission regions}\label{appe:crrl}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{crrl_eps/G34.7-0.6_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 2.5in]{crrl_eps/G34.7-0.6_rgb_contour.eps}}\\
\caption{The C-RRL emission region: G34.7-0.6.
(a) The SIGGMA spectral grid with the velocity range from $-50$ to 150\kms.
The background is the 0$^{th}$ moment C-RRL map over $30$ to $50$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated RRL contour.
The levels are 4, 8, 12, 16, 18, 22 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g347}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{crrl_eps/G35.1-0.7_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 2.5in]{crrl_eps/G35.1-0.7_rgb_contour.eps}}\\
\caption{The C-RRL emission region: G35.1-0.7.
(a) The SIGGMA spectral grid with the velocity range from $-50$ to $150$\kms.
The background is the 0$^{th}$ moment C-RRL map over $10$ to $40$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated RRL contour.
The levels are 2, 4, 6, 8, 10, 12, 15, 18 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g351}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 3.5in]{crrl_eps/G38.9-0.4_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 3.5in]{crrl_eps/G38.9-0.4_rgb_contour.eps}}\\
\caption{The C-RRL emission region G38.9-0.4.
(a) The SIGGMA spectral grid with the velocity range from $-50$ to $150$\kms.
The background is the 0$^{th}$ moment C-RRL map integrated over $20$ to $50$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid with integrated C-RRL contours.
The contour levels are 2, 4, 6, 7 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g389}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{crrl_eps/G43.2-0.0_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 2.5in]{crrl_eps/G43.2-0.0_rgb_contour.eps}}\\
\caption{The C-RRL emission region: G43.2-0.0.
(a) The SIGGMA spectral grid with the velocity range from $-50$ to $150$\kms.
The background is the 0$^{th}$ moment C-RRL map over $-20$ to $20$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated RRL contour.
The levels are 5, 10, 25, 50, 100, 200 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g432}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{crrl_eps/G45.5+0.0_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 2.5in]{crrl_eps/G45.5+0.0_rgb_contour.eps}}\\
\caption{The C-RRL emission region: G45.5+0.0.
(a) The SIGGMA spectral grid with the velocity range from $-50$ to $150$\kms.
The background is the 0$^{th}$ moment C-RRL map over $30$ to $70$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated RRL contour.
The levels are 5, 10, 15, 20, 25 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g455}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{crrl_eps/G49.5-0.4_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 2.5in]{crrl_eps/G49.5-0.4_rgb_contour.eps}}\\
\caption{The C-RRL emission region: G49.5-0.4
(a) The SIGGMA spectral grid with the velocity range from $-50$ to $150$\kms.
The background is the 0$^{th}$ moment C-RRL map over $30$ to $70$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated RRL contour.
The levels are 5, 10, 25, 50, 100, 200, 250 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g494}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{crrl_eps/G53.6+0.0_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 2.5in]{crrl_eps/G53.6+0.0_rgb_contour.eps}}\\
\caption{The C-RRL emission region: G53.6+0.0
(a) The SIGGMA spectral grid with the velocity range from $-50$ to $150$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $30$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated RRL contour.
The levels are 2, 4, 6, 8 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g536}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{crrl_eps/G60.9-0.1_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 2.5in]{crrl_eps/G60.9-0.1_rgb_contour.eps}}\\
\caption{The C-RRL emission region: G60.9-0.1
(a) The SIGGMA spectral grid with the velocity range from $-50$ to $150$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $30$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated RRL contour.
The levels are 2, 4, 6, 8 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g609}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{crrl_eps/G61.4+0.1_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 2.5in]{crrl_eps/G61.4+0.1_rgb_contour.eps}}\\
\caption{The C-RRL emission region: G61.4+0.1
(a) The SIGGMA spectral grid with the velocity range from $-50$ to $150$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $30$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated RRL contour.
The levels are 5, 10, 20, 40, 80,160, 320 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g614}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{crrl_eps/G63.1+0.4_ca_spec.eps}}
\subfloat[Infrared color map ]{\includegraphics[width = 2.5in]{crrl_eps/G63.1+0.4_rgb_contour.eps}}\\
\caption{The C-RRL emission region: G63.1+0.4
(a) The SIGGMA spectral grid with the velocity range from $-50$ to $150$\kms.
The background is the 0$^{th}$ moment C-RRL map over $-5$ to $30$\kms.
(b) The infrared RGB color map (r: 24\,$\um$, g: 8\,$\um$, b: 4.5\,$\um$) overlaid by integrated RRL contour.
The levels are 5, 10, 15, 20, 25, 30 mJy\,beam$^{-1}$\kms.}
\label{fig_crrl-g631}
\end{figure}
\newpage
\section{Figures of detected H-RRL emission from Galactic Supernova Remnants}\label{appe:snr}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G33.6+0.1_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G33.6+0.1_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G33.6+0.1.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.1, 0.15, 0.2, 0.25, 0.3, 0.35 Jy\,beam$^{-1}$\kms.
The blue circles are location of \hii\ regions.
}
\label{fig_snr-g336}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G35.6-0.4_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G35.6-0.4_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G35.6-0.4.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.05, 0.07, 0.09, 0.11, 0.13, 0.15 Jy\,beam$^{-1}$\kms.
The blue circles are location of \hii\ regions.
}
\label{fig_snr-g356}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G36.6-0.7_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G36.6-0.7_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G36.6-0.7.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.04, 0.07, 0.1, 0.13, 0.16 Jy\,beam$^{-1}$\kms.
There are no \hii\ regions located in the figure covered region.
}
\label{fig_snr-g366}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G39.2-0.3_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G39.2-0.3_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G39.2-0.3.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.1, 0.2, 0.4, 0.6, 0.8, 1.0 Jy\,beam$^{-1}$\kms.
The blue circles are location of \hii\ regions.
}
\label{fig_snr-g392}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G40.5-0.5_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G40.5-0.5_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G40.5-0.5.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.02, 0.04, 0.06, 0.08, 0.1, 0.15, 0.2 Jy\,beam$^{-1}$\kms.
There are no \hii\ regions located in the figure covered region.
}
\label{fig_snr-g405}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G41.1-0.3_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G41.1-0.3_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G41.1-0.3.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.1, 0.2, 0.3, 0.4, 0.5 Jy\,beam$^{-1}$\kms.
The blue circles are location of \hii\ regions.
}
\label{fig_snr-g411}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G41.5+0.4_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G41.5+0.4_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G41.5+0.4.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.05, 0.08, 0.11, 0.14, 0.17 Jy\,beam$^{-1}$\kms.
The blue circles are location of \hii\ regions.
}
\label{fig_snr-g415}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G43.3-0.2_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G43.3-0.2_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G43.3-0.2.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.25, 0.5, 1, 1.5, 2, 2.5, 3 Jy\,beam$^{-1}$\kms.
The blue circles are location of \hii\ regions.
}
\label{fig_snr-g433}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G45.7-0.4_ha_spec.eps}}
\subfloat[VGPS 1.4 GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G45.7-0.4_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G45.7-0.4.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.4 Jy\,beam$^{-1}$\kms.
The blue circles are location of \hii\ regions.
}
\label{fig_snr-g457}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G46.8-0.3_ha_spec.eps}}
\subfloat[VGPS 1.4GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G46.8-0.3_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G46.8-0.3.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.1, 0.15, 0.2, 0.25, 0.3, 0.4 Jy\,beam$^{-1}$\kms.
The blue circle is the location of a \hii\ region.
}
\label{fig_snr-g468}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G49.2-0.7_ha_spec.eps}}
\subfloat[VGPS 1.4GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G49.2-0.7_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G49.2-0.7.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4 Jy\,beam$^{-1}$\kms.
The blue circles are location of a \hii\ regions.
}
\label{fig_snr-g492}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G54.4-0.3_ha_spec.eps}}
\subfloat[VGPS 1.4GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G54.4-0.3_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G54.4-0.3.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.05, 0.15, 0.25, 0.35, 0.45 Jy\,beam$^{-1}$\kms.
The blue circles are location of a \hii\ regions.
}
\label{fig_snr-g544}
\end{figure}
\begin{figure}[H]
\centering
\subfloat[SIGGMA spectral grid]{\includegraphics[width = 2.5in]{snr_eps/G57.2+0.8_ha_spec.eps}}
\subfloat[VGPS 1.4GHz continuum map]{\includegraphics[width = 2.5in]{snr_eps/G57.2+0.8_vgps_contour.eps}}\\
\caption{The H-RRL emission from SNR: G57.2+0.8.
(a) The SIGGMA spectral grid with the velocity range from $-300$ to $300$\kms.
The background is the 0$^{th}$ moment C-RRL map over $0$ to $150$\kms.
The white circle is the central region of the SNR.
(b) The VGPS 1.4 GHz continuum map overlaid by integrated RRL contour.
The levels are 0.03, 0.05, 0.07, 0.09 Jy\,beam$^{-1}$\kms.
There are no \hii\ regions located in the figure covered region.