-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex_hdf.txt
1326 lines (1300 loc) · 124 KB
/
index_hdf.txt
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
filename: NGC4047.2d_smo7.hdf5
path: ELINES_sm
<Table length=1849>
name dtype unit format description n_bad
---------------- ------- ------------------- ------ -------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
Havel_sm float32 km / s Halpha velocity 1386
Vdisp_sm float32 Angstrom Velocity dispersion plus instrumenta one 1386
[OII]3727_sm float32 1e-16 erg / (s cm2) [OII]3727 emission line 1386
[OIII]5007_sm float32 1e-16 erg / (s cm2) [OIII]5007 emission line 1386
[OIII]4959_sm float32 1e-16 erg / (s cm2) [OIII]4959 emission line 1386
Hbeta_sm float32 1e-16 erg / (s cm2) Hbeta emission line 1386
Halpha_sm float32 1e-16 erg / (s cm2) Halpha emission line 1386
[NII]6583_sm float32 1e-16 erg / (s cm2) [NII]6583 emission line 1386
[NII]6548_sm float32 1e-16 erg / (s cm2) [NII]6548 emission line 1386
[SII]6731_sm float32 1e-16 erg / (s cm2) [SII]6731 emission line 1386
[SII]6717_sm float32 1e-16 erg / (s cm2) [SII]6717 emission line 1386
e_[OII]3727_sm float32 1e-16 erg / (s cm2) [OII]3727 emission line 1386
e_[OIII]5007_sm float32 1e-16 erg / (s cm2) [OIII]5007 emission line 1386
e_[OIII]4959_sm float32 1e-16 erg / (s cm2) [OIII]4959 emission line 1386
e_Hbeta_sm float32 1e-16 erg / (s cm2) Hbeta emission line 1386
e_Halpha_sm float32 1e-16 erg / (s cm2) Halpha emission line 1386
e_[NII]6583_sm float32 1e-16 erg / (s cm2) [NII]6583 emission line 1386
e_[NII]6548_sm float32 1e-16 erg / (s cm2) [NII]6548 emission line 1386
e_[SII]6731_sm float32 1e-16 erg / (s cm2) [SII]6731 emission line 1386
e_[SII]6717_sm float32 1e-16 erg / (s cm2) [SII]6717 emission line 1386
Hbeta_sm3_sm float32 1e-16 erg / (s cm2) Hbeta after 3 pix smooth 1386
Halpha_sm3_sm float32 1e-16 erg / (s cm2) Halpha after 3 pix smooth 1386
sigsfr0_sm float32 solMass / (Gyr pc2) SFR surface density no extinction 1386
e_sigsfr0_sm float32 solMass / (Gyr pc2) error of uncorrected SFR surface density 1386
sigsfr_corr_sm float32 solMass / (Gyr pc2) BD corrected SFR surface density 1389
e_sigsfr_corr_sm float32 solMass / (Gyr pc2) error of BD corrected SFR surface density 1389
AHa_corr_sm float32 mag Ha extinction from BD 1386
e_AHa_corr_sm float32 mag error of Ha extinction from BD 1386
AHa_smooth3_sm float32 mag Ha extinction after 3 pix smooth 1386
sigsfr_adopt_sm float32 solMass / (Gyr pc2) smooth+clip BD corrected SFR surface density 1386
filename: NGC4047.2d_smo7.hdf5
path: SFH_sm
<Table length=1849>
name dtype unit format description n_bad
------------------------ ------- -------- ------ -------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
lumfrac_age_0.0010_sm float32 fraction Luminosity Fraction for age 0.0010 SSP 1395
lumfrac_age_0.0030_sm float32 fraction Luminosity Fraction for age 0.0030 SSP 1395
lumfrac_age_0.0040_sm float32 fraction Luminosity Fraction for age 0.0040 SSP 1395
lumfrac_age_0.0056_sm float32 fraction Luminosity Fraction for age 0.0056 SSP 1395
lumfrac_age_0.0089_sm float32 fraction Luminosity Fraction for age 0.0089 SSP 1395
lumfrac_age_0.0100_sm float32 fraction Luminosity Fraction for age 0.0100 SSP 1395
lumfrac_age_0.0126_sm float32 fraction Luminosity Fraction for age 0.0126 SSP 1395
lumfrac_age_0.0141_sm float32 fraction Luminosity Fraction for age 0.0141 SSP 1395
lumfrac_age_0.0178_sm float32 fraction Luminosity Fraction for age 0.0178 SSP 1395
lumfrac_age_0.0199_sm float32 fraction Luminosity Fraction for age 0.0199 SSP 1395
lumfrac_age_0.0251_sm float32 fraction Luminosity Fraction for age 0.0251 SSP 1395
lumfrac_age_0.0316_sm float32 fraction Luminosity Fraction for age 0.0316 SSP 1395
lumfrac_age_0.0398_sm float32 fraction Luminosity Fraction for age 0.0398 SSP 1395
lumfrac_age_0.0562_sm float32 fraction Luminosity Fraction for age 0.0562 SSP 1395
lumfrac_age_0.0630_sm float32 fraction Luminosity Fraction for age 0.0630 SSP 1395
lumfrac_age_0.0631_sm float32 fraction Luminosity Fraction for age 0.0631 SSP 1395
lumfrac_age_0.0708_sm float32 fraction Luminosity Fraction for age 0.0708 SSP 1395
lumfrac_age_0.1000_sm float32 fraction Luminosity Fraction for age 0.1000 SSP 1395
lumfrac_age_0.1122_sm float32 fraction Luminosity Fraction for age 0.1122 SSP 1395
lumfrac_age_0.1259_sm float32 fraction Luminosity Fraction for age 0.1259 SSP 1395
lumfrac_age_0.1585_sm float32 fraction Luminosity Fraction for age 0.1585 SSP 1395
lumfrac_age_0.1995_sm float32 fraction Luminosity Fraction for age 0.1995 SSP 1395
lumfrac_age_0.2818_sm float32 fraction Luminosity Fraction for age 0.2818 SSP 1395
lumfrac_age_0.3548_sm float32 fraction Luminosity Fraction for age 0.3548 SSP 1395
lumfrac_age_0.5012_sm float32 fraction Luminosity Fraction for age 0.5012 SSP 1395
lumfrac_age_0.7079_sm float32 fraction Luminosity Fraction for age 0.7079 SSP 1395
lumfrac_age_0.8913_sm float32 fraction Luminosity Fraction for age 0.8913 SSP 1395
lumfrac_age_1.1220_sm float32 fraction Luminosity Fraction for age 01.1220 SSP 1395
lumfrac_age_1.2589_sm float32 fraction Luminosity Fraction for age 01.2589 SSP 1395
lumfrac_age_1.4125_sm float32 fraction Luminosity Fraction for age 01.4125 SSP 1395
lumfrac_age_1.9953_sm float32 fraction Luminosity Fraction for age 01.9953 SSP 1395
lumfrac_age_2.5119_sm float32 fraction Luminosity Fraction for age 02.5119 SSP 1395
lumfrac_age_3.5481_sm float32 fraction Luminosity Fraction for age 03.5481 SSP 1395
lumfrac_age_4.4668_sm float32 fraction Luminosity Fraction for age 04.4668 SSP 1395
lumfrac_age_6.3096_sm float32 fraction Luminosity Fraction for age 06.3096 SSP 1395
lumfrac_age_7.9433_sm float32 fraction Luminosity Fraction for age 07.9433 SSP 1395
lumfrac_age_10.0000_sm float32 fraction Luminosity Fraction for age 10.000 SSP 1395
lumfrac_age_12.5893_sm float32 fraction Luminosity Fraction for age 12.5893 SSP 1395
lumfrac_age_14.1254_sm float32 fraction Luminosity Fraction for age 14.1254 SSP 1395
lumfrac_met_0.0037_sm float32 fraction Luminosity Fraction for met 0.0037 SSP 1395
lumfrac_met_0.0076_sm float32 fraction Luminosity Fraction for met 0.0076 SSP 1395
lumfrac_met_0.0190_sm float32 fraction Luminosity Fraction for met 0.0190 SSP 1395
lumfrac_met_0.0315_sm float32 fraction Luminosity Fraction for met 0.0315 SSP 1395
e_lumfrac_age_0.0010_sm float32 fraction Error in the Lum. Fract. for age 0.0010 SSP 1395
e_lumfrac_age_0.0030_sm float32 fraction Error in the Lum. Fract. for age 0.0030 SSP 1395
e_lumfrac_age_0.0040_sm float32 fraction Error in the Lum. Fract. for age 0.0040 SSP 1395
e_lumfrac_age_0.0056_sm float32 fraction Error in the Lum. Fract. for age 0.0056 SSP 1395
e_lumfrac_age_0.0089_sm float32 fraction Error in the Lum. Fract. for age 0.0089 SSP 1395
e_lumfrac_age_0.0100_sm float32 fraction Error in the Lum. Fract. for age 0.0100 SSP 1395
e_lumfrac_age_0.0126_sm float32 fraction Error in the Lum. Fract. for age 0.0126 SSP 1395
e_lumfrac_age_0.0141_sm float32 fraction Error in the Lum. Fract. for age 0.0141 SSP 1395
e_lumfrac_age_0.0178_sm float32 fraction Error in the Lum. Fract. for age 0.0178 SSP 1395
e_lumfrac_age_0.0199_sm float32 fraction Error in the Lum. Fract. for age 0.0199 SSP 1395
e_lumfrac_age_0.0251_sm float32 fraction Error in the Lum. Fract. for age 0.0251 SSP 1395
e_lumfrac_age_0.0316_sm float32 fraction Error in the Lum. Fract. for age 0.0316 SSP 1395
e_lumfrac_age_0.0398_sm float32 fraction Error in the Lum. Fract. for age 0.0398 SSP 1395
e_lumfrac_age_0.0562_sm float32 fraction Error in the Lum. Fract. for age 0.0562 SSP 1395
e_lumfrac_age_0.0630_sm float32 fraction Error in the Lum. Fract. for age 0.0630 SSP 1395
e_lumfrac_age_0.0631_sm float32 fraction Error in the Lum. Fract. for age 0.0631 SSP 1395
e_lumfrac_age_0.0708_sm float32 fraction Error in the Lum. Fract. for age 0.0708 SSP 1395
e_lumfrac_age_0.1000_sm float32 fraction Error in the Lum. Fract. for age 0.1000 SSP 1395
e_lumfrac_age_0.1122_sm float32 fraction Error in the Lum. Fract. for age 0.1122 SSP 1395
e_lumfrac_age_0.1259_sm float32 fraction Error in the Lum. Fract. for age 0.1259 SSP 1395
e_lumfrac_age_0.1585_sm float32 fraction Error in the Lum. Fract. for age 0.1585 SSP 1395
e_lumfrac_age_0.1995_sm float32 fraction Error in the Lum. Fract. for age 0.1995 SSP 1395
e_lumfrac_age_0.2818_sm float32 fraction Error in the Lum. Fract. for age 0.2818 SSP 1395
e_lumfrac_age_0.3548_sm float32 fraction Error in the Lum. Fract. for age 0.3548 SSP 1395
e_lumfrac_age_0.5012_sm float32 fraction Error in the Lum. Fract. for age 0.5012 SSP 1395
e_lumfrac_age_0.7079_sm float32 fraction Error in the Lum. Fract. for age 0.7079 SSP 1395
e_lumfrac_age_0.8913_sm float32 fraction Error in the Lum. Fract. for age 0.8913 SSP 1395
e_lumfrac_age_1.1220_sm float32 fraction Error in the Lum. Fract. for age 01.1220 SSP 1395
e_lumfrac_age_1.2589_sm float32 fraction Error in the Lum. Fract. for age 01.2589 SSP 1395
e_lumfrac_age_1.4125_sm float32 fraction Error in the Lum. Fract. for age 01.4125 SSP 1395
e_lumfrac_age_1.9953_sm float32 fraction Error in the Lum. Fract. for age 01.9953 SSP 1395
e_lumfrac_age_2.5119_sm float32 fraction Error in the Lum. Fract. for age 02.5119 SSP 1395
e_lumfrac_age_3.5481_sm float32 fraction Error in the Lum. Fract. for age 03.5481 SSP 1395
e_lumfrac_age_4.4668_sm float32 fraction Error in the Lum. Fract. for age 04.4668 SSP 1395
e_lumfrac_age_6.3096_sm float32 fraction Error in the Lum. Fract. for age 06.3096 SSP 1395
e_lumfrac_age_7.9433_sm float32 fraction Error in the Lum. Fract. for age 07.9433 SSP 1395
e_lumfrac_age_10.0000_sm float32 fraction Error in the Lum. Fract. for age 10.000 SSP 1395
e_lumfrac_age_12.5893_sm float32 fraction Error in the Lum. Fract. for age 12.5893 SSP 1395
e_lumfrac_age_14.1254_sm float32 fraction Error in the Lum. Fract. for age 14.1254 SSP 1395
e_lumfrac_met_0.0037_sm float32 fraction Error in the Lum. Fract. for met 0.0037 SSP 1395
e_lumfrac_met_0.0076_sm float32 fraction Error in the Lum. Fract. for met 0.0076 SSP 1395
e_lumfrac_met_0.0190_sm float32 fraction Error in the Lum. Fract. for met 0.0190 SSP 1395
e_lumfrac_met_0.0315_sm float32 fraction Error in the Lum. Fract. for met 0.0315 SSP 1395
massfrac_age_0.0010_sm float32 fraction Mass Fraction for age 0.0010 SSP 1395
massfrac_age_0.0030_sm float32 fraction Mass Fraction for age 0.0030 SSP 1395
massfrac_age_0.0040_sm float32 fraction Mass Fraction for age 0.0040 SSP 1395
massfrac_age_0.0056_sm float32 fraction Mass Fraction for age 0.0056 SSP 1395
massfrac_age_0.0089_sm float32 fraction Mass Fraction for age 0.0089 SSP 1395
massfrac_age_0.0100_sm float32 fraction Mass Fraction for age 0.0100 SSP 1395
massfrac_age_0.0126_sm float32 fraction Mass Fraction for age 0.0126 SSP 1395
massfrac_age_0.0141_sm float32 fraction Mass Fraction for age 0.0141 SSP 1395
massfrac_age_0.0178_sm float32 fraction Mass Fraction for age 0.0178 SSP 1395
massfrac_age_0.0199_sm float32 fraction Mass Fraction for age 0.0199 SSP 1395
massfrac_age_0.0251_sm float32 fraction Mass Fraction for age 0.0251 SSP 1395
massfrac_age_0.0316_sm float32 fraction Mass Fraction for age 0.0316 SSP 1395
massfrac_age_0.0398_sm float32 fraction Mass Fraction for age 0.0398 SSP 1395
massfrac_age_0.0562_sm float32 fraction Mass Fraction for age 0.0562 SSP 1395
massfrac_age_0.0630_sm float32 fraction Mass Fraction for age 0.0630 SSP 1395
massfrac_age_0.0631_sm float32 fraction Mass Fraction for age 0.0631 SSP 1395
massfrac_age_0.0708_sm float32 fraction Mass Fraction for age 0.0708 SSP 1395
massfrac_age_0.1000_sm float32 fraction Mass Fraction for age 0.1000 SSP 1395
massfrac_age_0.1122_sm float32 fraction Mass Fraction for age 0.1122 SSP 1395
massfrac_age_0.1259_sm float32 fraction Mass Fraction for age 0.1259 SSP 1395
massfrac_age_0.1585_sm float32 fraction Mass Fraction for age 0.1585 SSP 1395
massfrac_age_0.1995_sm float32 fraction Mass Fraction for age 0.1995 SSP 1395
massfrac_age_0.2818_sm float32 fraction Mass Fraction for age 0.2818 SSP 1395
massfrac_age_0.3548_sm float32 fraction Mass Fraction for age 0.3548 SSP 1395
massfrac_age_0.5012_sm float32 fraction Mass Fraction for age 0.5012 SSP 1395
massfrac_age_0.7079_sm float32 fraction Mass Fraction for age 0.7079 SSP 1395
massfrac_age_0.8913_sm float32 fraction Mass Fraction for age 0.8913 SSP 1395
massfrac_age_1.1220_sm float32 fraction Mass Fraction for age 01.1220 SSP 1395
massfrac_age_1.2589_sm float32 fraction Mass Fraction for age 01.2589 SSP 1395
massfrac_age_1.4125_sm float32 fraction Mass Fraction for age 01.4125 SSP 1395
massfrac_age_1.9953_sm float32 fraction Mass Fraction for age 01.9953 SSP 1395
massfrac_age_2.5119_sm float32 fraction Mass Fraction for age 02.5119 SSP 1395
massfrac_age_3.5481_sm float32 fraction Mass Fraction for age 03.5481 SSP 1395
massfrac_age_4.4668_sm float32 fraction Mass Fraction for age 04.4668 SSP 1395
massfrac_age_6.3096_sm float32 fraction Mass Fraction for age 06.3096 SSP 1395
massfrac_age_7.9433_sm float32 fraction Mass Fraction for age 07.9433 SSP 1395
massfrac_age_10.0000_sm float32 fraction Mass Fraction for age 10.000 SSP 1395
massfrac_age_12.5893_sm float32 fraction Mass Fraction for age 12.5893 SSP 1395
massfrac_age_14.1254_sm float32 fraction Mass Fraction for age 14.1254 SSP 1395
massfrac_met_0.0037_sm float32 fraction Mass Fraction for met 0.0037 SSP 1395
massfrac_met_0.0076_sm float32 fraction Mass Fraction for met 0.0076 SSP 1395
massfrac_met_0.0190_sm float32 fraction Mass Fraction for met 0.0190 SSP 1395
massfrac_met_0.0315_sm float32 fraction Mass Fraction for met 0.0315 SSP 1395
f_young float32 total mass fraction < 32 Myr 1395
filename: NGC4047.2d_smo7.hdf5
path: SSP_sm
<Table length=1849>
name dtype unit format description n_bad
------------------- ------- ---------------------------- ------ -------------------------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
Vcont_ssp_sm float32 1e-16 erg / (Angstrom s cm2) pseudo V-band map 1395
cont_segm_sm float32 none continuum segmentation file 1395
cont_dezon_sm float32 none continuum dezonification file 1395
medflx_ssp_sm float32 1e-16 erg / (Angstrom s cm2) median intensity flux within the wavelength range 1395
e_medflx_ssp_sm float32 1e-16 erg / (Angstrom s cm2) StdDev median intensity flux within the wavelength range 1395
age_lwt_sm float32 dex(yr) luminosity weighted age of the stellar population 1395
age_mwt_sm float32 dex(yr) mass weighted age of the stellar population 1395
e_age_lwt_sm float32 fraction error of the age of the stellar population 1395
ZH_lwt_sm float32 dex luminosity weighted metallicity of the stellar population 1395
ZH_mwt_sm float32 dex mass weighted metallicity of the stellar population 1395
e_ZH_lwt_sm float32 fraction error metallicity of the stellar population 1395
Av_ssp_sm float32 mag average dust attnuation of the stellar population 1395
e_Av_ssp_sm float32 mag error of the average dust attnuation of the stellar population 1395
vel_ssp_sm float32 km / s velocity of the stellar population 1395
e_vel_ssp_sm float32 km / s error in the velocity of the stellar population 1395
vdisp_ssp_sm float32 km / s velocity dispersion of the stellar population 1395
e_vdisp_ssp_sm float32 km / s error in velocity dispersion of the stellar population 1395
ML_ssp_sm float32 solMass / solLum average mass-to-light ratio of the stellar population 1395
mass_ssp_sm float32 dex(solMass / arcsec2) stellar mass density 1395
mass_Avcor_ssp_sm float32 dex(solMass / arcsec2) stellar mass density dust corrected 1395
sigstar_sm float32 solMass / pc2 stellar mass surface density 1395
sigstar_Avcor_sm float32 solMass / pc2 stellar mass surface density dust corrected 1395
fe_medflx_sm float32 fraction fractional error in continuum flux 1395
sigsfr_ssp_sm float32 solMass / (Gyr pc2) Sigma_SFR from < 32 Myr SSP 1395
sigsfr_Avcor_ssp_sm float32 solMass / (Gyr pc2) Sigma_SFR Av-corrected from < 32 Myr SSP 1395
filename: NGC4047.2d_smo7.hdf5
path: comom_dil
<Table length=1849>
name dtype unit format description n_bad
--------- ------- ------------- ------ ------------------------------------------------ -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
snrpk_12 float32 co peak signal to noise ratio 705
mom0_12 float32 K km / s co integrated intensity using dil mask 1657
e_mom0_12 float32 K km / s co error in mom0 assuming dil mask 1657
mom1_12 float32 km / s co intensity wgtd mean velocity using dil mask 1670
e_mom1_12 float32 km / s co error in mom1 assuming dil mask 1670
mom2_12 float32 km / s co intensity wgtd vel disp using dil mask 1694
e_mom2_12 float32 km / s co error in mom2 assuming dil mask 1694
sigmol float32 solMass / pc2 apparent H2+He surf density not deprojected 1657
e_sigmol float32 solMass / pc2 error in sigmol not deprojected 1657
cosi float32 factor to deproject to face-on using ledaAxIncl 0
snrpk_13 float32 13co peak signal to noise ratio 648
mom0_13 float32 K km / s 13co integrated intensity using dil mask 1657
e_mom0_13 float32 K km / s 13co error in mom0 assuming dil mask 1657
mom1_13 float32 km / s 13co intensity wgtd mean velocity using dil mask 1673
e_mom1_13 float32 km / s 13co error in mom1 assuming dil mask 1670
mom2_13 float32 km / s 13co intensity wgtd vel disp using dil mask 1731
e_mom2_13 float32 km / s 13co error in mom2 assuming dil mask 1731
filename: NGC4047.2d_smo7.hdf5
path: comom_smo
<Table length=1849>
name dtype unit format description n_bad
--------- ------- ------------- ------ ------------------------------------------------ -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
snrpk_12 float32 co peak signal to noise ratio 705
mom0_12 float32 K km / s co integrated intensity using smo mask 1563
e_mom0_12 float32 K km / s co error in mom0 assuming smo mask 1563
mom1_12 float32 km / s co intensity wgtd mean velocity using smo mask 1591
e_mom1_12 float32 km / s co error in mom1 assuming smo mask 1583
mom2_12 float32 km / s co intensity wgtd vel disp using smo mask 1749
e_mom2_12 float32 km / s co error in mom2 assuming smo mask 1749
sigmol float32 solMass / pc2 apparent H2+He surf density not deprojected 1563
e_sigmol float32 solMass / pc2 error in sigmol not deprojected 1563
cosi float32 factor to deproject to face-on using ledaAxIncl 0
snrpk_13 float32 13co peak signal to noise ratio 1849
mom0_13 float32 K km / s 13co integrated intensity using smo mask 1563
e_mom0_13 float32 K km / s 13co error in mom0 assuming smo mask 1563
mom1_13 float32 km / s 13co intensity wgtd mean velocity using smo mask 1595
e_mom1_13 float32 km / s 13co error in mom1 assuming smo mask 1583
mom2_13 float32 km / s 13co intensity wgtd vel disp using smo mask 1737
e_mom2_13 float32 km / s 13co error in mom2 assuming smo mask 1737
filename: NGC4047.2d_smo7.hdf5
path: comom_str
<Table length=1849>
name dtype unit format description n_bad
--------- ------- ------------- ------ ----------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
mom0_12 float32 K km / s co integrated intensity using str mask 705
e_mom0_12 float32 K km / s co error in mom0 assuming str mask 705
sigmol float32 solMass / pc2 apparent H2+He surf density not deprojected 705
e_sigmol float32 solMass / pc2 error in sigmol not deprojected 705
cosi float32 factor to deproject to face-on using ledaAxIncl 0
mom0_13 float32 K km / s 13co integrated intensity using str mask 648
e_mom0_13 float32 K km / s 13co error in mom0 assuming str mask 648
filename: NGC4047.2d_smo7.hdf5
path: flux_elines_sm
<Table length=1849>
name dtype unit format description n_bad
--------------------- ------- ------------------- ------ --------------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
flux_[OII]3727_sm float32 1e-16 erg / (s cm2) [OII]3727 intensity 1386
flux_[OIII]5007_sm float32 1e-16 erg / (s cm2) [OIII]5007 intensity 1386
flux_[OIII]4959_sm float32 1e-16 erg / (s cm2) [OIII]4959 intensity 1386
flux_Hbeta_sm float32 1e-16 erg / (s cm2) Hbeta intensity 1386
flux_[OI]6300_sm float32 1e-16 erg / (s cm2) [OI]6300 intensity 1386
flux_Halpha_sm float32 1e-16 erg / (s cm2) Halpha intensity 1386
flux_[NII]6583_sm float32 1e-16 erg / (s cm2) [NII]6583 intensity 1386
flux_[NII]6548_sm float32 1e-16 erg / (s cm2) [NII]6548 intensity 1386
flux_[SII]6717_sm float32 1e-16 erg / (s cm2) [SII]6717 intensity 1386
flux_[SII]6731_sm float32 1e-16 erg / (s cm2) [SII]6731 intensity 1386
vel_[OII]3727_sm float32 km / s [OII]3727 velocity 1386
vel_[OIII]5007_sm float32 km / s [OIII]5007 velocity 1386
vel_[OIII]4959_sm float32 km / s [OIII]4959 velocity 1386
vel_Hbeta_sm float32 km / s Hbeta velocity 1386
vel_[OI]6300_sm float32 km / s [OI]6300 velocity 1386
vel_Halpha_sm float32 km / s Halpha velocity 1386
vel_[NII]6583_sm float32 km / s [NII]6583 velocity 1386
vel_[NII]6548_sm float32 km / s [NII]6548 velocity 1386
vel_[SII]6717_sm float32 km / s [SII]6717 velocity 1386
vel_[SII]6731_sm float32 km / s [SII]6731 velocity 1386
disp_[OII]3727_sm float32 Angstrom [OII]3727 velocity dispersion 1386
disp_[OIII]5007_sm float32 Angstrom [OIII]5007 velocity dispersion 1386
disp_[OIII]4959_sm float32 Angstrom [OIII]4959 velocity dispersion 1386
disp_Hbeta_sm float32 Angstrom Hbeta velocity dispersion 1386
disp_[OI]6300_sm float32 Angstrom [OI]6300 velocity dispersion 1386
disp_Halpha_sm float32 Angstrom Halpha velocity dispersion 1386
disp_[NII]6583_sm float32 Angstrom [NII]6583 velocity dispersion 1386
disp_[NII]6548_sm float32 Angstrom [NII]6548 velocity dispersion 1386
disp_[SII]6717_sm float32 Angstrom [SII]6717 velocity dispersion 1386
disp_[SII]6731_sm float32 Angstrom [SII]6731 velocity dispersion 1386
EW_[OII]3727_sm float32 Angstrom [OII]3727 equivalent width 1386
EW_[OIII]5007_sm float32 Angstrom [OIII]5007 equivalent width 1386
EW_[OIII]4959_sm float32 Angstrom [OIII]4959 equivalent width 1386
EW_Hbeta_sm float32 Angstrom Hbeta equivalent width 1386
EW_[OI]6300_sm float32 Angstrom [OI]6300 equivalent width 1386
EW_Halpha_sm float32 Angstrom Halpha equivalent width 1386
EW_[NII]6583_sm float32 Angstrom [NII]6583 equivalent width 1386
EW_[NII]6548_sm float32 Angstrom [NII]6548 equivalent width 1386
EW_[SII]6717_sm float32 Angstrom [SII]6717 equivalent width 1386
EW_[SII]6731_sm float32 Angstrom [SII]6731 equivalent width 1386
e_flux_[OII]3727_sm float32 1e-16 erg / (s cm2) error in [OII]3727 intensity 1386
e_flux_[OIII]5007_sm float32 1e-16 erg / (s cm2) error in [OIII]5007 intensity 1386
e_flux_[OIII]4959_sm float32 1e-16 erg / (s cm2) error in [OIII]4959 intensity 1386
e_flux_Hbeta_sm float32 1e-16 erg / (s cm2) error in Hbeta intensity 1386
e_flux_[OI]6300_sm float32 1e-16 erg / (s cm2) error in [OI]6300 intensity 1386
e_flux_Halpha_sm float32 1e-16 erg / (s cm2) error in Halpha intensity 1386
e_flux_[NII]6583_sm float32 1e-16 erg / (s cm2) error in [NII]6583 intensity 1386
e_flux_[NII]6548_sm float32 1e-16 erg / (s cm2) error in [NII]6548 intensity 1386
e_flux_[SII]6717_sm float32 1e-16 erg / (s cm2) error in [SII]6717 intensity 1386
e_flux_[SII]6731_sm float32 1e-16 erg / (s cm2) error in [SII]6731 intensity 1386
e_vel_[OII]3727_sm float32 km / s error in [OII]3727 velocity 1386
e_vel_[OIII]5007_sm float32 km / s error in [OIII]5007 velocity 1386
e_vel_[OIII]4959_sm float32 km / s error in [OIII]4959 velocity 1386
e_vel_Hbeta_sm float32 km / s error in Hbeta velocity 1386
e_vel_[OI]6300_sm float32 km / s error in [OI]6300 velocity 1386
e_vel_Halpha_sm float32 km / s error in Halpha velocity 1386
e_vel_[NII]6583_sm float32 km / s error in [NII]6583 velocity 1386
e_vel_[NII]6548_sm float32 km / s error in [NII]6548 velocity 1386
e_vel_[SII]6717_sm float32 km / s error in [SII]6717 velocity 1386
e_vel_[SII]6731_sm float32 km / s error in [SII]6731 velocity 1386
e_disp_[OII]3727_sm float32 Angstrom error in [OII]3727 velocity dispersion 1386
e_disp_[OIII]5007_sm float32 Angstrom error in [OIII]5007 velocity dispersion 1386
e_disp_[OIII]4959_sm float32 Angstrom error in [OIII]4959 velocity dispersion 1386
e_disp_Hbeta_sm float32 Angstrom error in Hbeta velocity dispersion 1386
e_disp_[OI]6300_sm float32 Angstrom error in [OI]6300 velocity dispersion 1386
e_disp_Halpha_sm float32 Angstrom error in Halpha velocity dispersion 1386
e_disp_[NII]6583_sm float32 Angstrom error in [NII]6583 velocity dispersion 1386
e_disp_[NII]6548_sm float32 Angstrom error in [NII]6548 velocity dispersion 1386
e_disp_[SII]6717_sm float32 Angstrom error in [SII]6717 velocity dispersion 1386
e_disp_[SII]6731_sm float32 Angstrom error in [SII]6731 velocity dispersion 1386
e_EW_[OII]3727_sm float32 Angstrom error in [OII]3727 equivalent width 1386
e_EW_[OIII]5007_sm float32 Angstrom error in [OIII]5007 equivalent width 1386
e_EW_[OIII]4959_sm float32 Angstrom error in [OIII]4959 equivalent width 1386
e_EW_Hbeta_sm float32 Angstrom error in Hbeta equivalent width 1386
e_EW_[OI]6300_sm float32 Angstrom error in [OI]6300 equivalent width 1386
e_EW_Halpha_sm float32 Angstrom error in Halpha equivalent width 1386
e_EW_[NII]6583_sm float32 Angstrom error in [NII]6583 equivalent width 1386
e_EW_[NII]6548_sm float32 Angstrom error in [NII]6548 equivalent width 1386
e_EW_[SII]6717_sm float32 Angstrom error in [SII]6717 equivalent width 1386
e_EW_[SII]6731_sm float32 Angstrom error in [SII]6731 equivalent width 1386
flux_Hbeta_sm3_sm float32 1e-16 erg / (s cm2) Hbeta intensity after 3 pix smooth 1386
flux_Halpha_sm3_sm float32 1e-16 erg / (s cm2) Halpha intensity after 3 pix smooth 1386
flux_sigsfr0_sm float32 solMass / (Gyr pc2) SFR surface density no extinction 1386
e_flux_sigsfr0_sm float32 solMass / (Gyr pc2) error of uncorrected SFR surface density 1386
flux_sigsfr_corr_sm float32 solMass / (Gyr pc2) BD corrected SFR surface density 1387
e_flux_sigsfr_corr_sm float32 solMass / (Gyr pc2) error of BD corrected SFR surface density 1387
flux_AHa_corr_sm float32 mag Ha extinction from BD 1387
e_flux_AHa_corr_sm float32 mag error of Ha extinction from BD 1387
flux_AHa_smooth3_sm float32 mag Ha extinction after 3 pix smooth 1386
flux_sigsfr_adopt_sm float32 solMass / (Gyr pc2) smooth+clip BD corrected SFR surface density 1386
BPT_sm float32 .1f BPT type (-1=SF 0=inter 1=LINER 2=Sy) 1397
p_BPT_sm float32 BPT probability 1397
SF_BPT_sm bool True if star forming (BPT=-1 and EW_Ha>6) 0
ZOH_sm float32 dex 12+log(O/H) using o3n2 method in Marino+13 1489
e_ZOH_sm float32 dex error in 12+log(O/H) using o3n2 method in Marino+13 1489
ZOH_N2_sm float32 dex 12+log(O/H) using n2 method in Marino+13 1489
e_ZOH_N2_sm float32 dex error in 12+log(O/H) using n2 method in Marino+13 1489
filename: NGC4047.2d_smo7.hdf5
path: indices_sm
<Table length=1849>
name dtype unit format description n_bad
--------------- ------- -------- ------ ---------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
Hdel_idx_sm float32 Angstrom 1386
Hbet_idx_sm float32 Angstrom 1386
Mgb_idx_sm float32 Angstrom 1386
Fe5270_idx_sm float32 Angstrom 1386
Fe5335_idx_sm float32 Angstrom 1386
D4000_idx_sm float32 Angstrom 1386
Hdmod_idx_sm float32 Angstrom 1386
Hgam_idx_sm float32 Angstrom 1386
SN_idx_sm float32 Angstrom 1386
e_Hdel_idx_sm float32 Angstrom 1386
e_Hbet_idx_sm float32 Angstrom 1386
e_Mgb_idx_sm float32 Angstrom 1386
e_Fe5270_idx_sm float32 Angstrom 1386
e_Fe5335_idx_sm float32 Angstrom 1386
e_D4000_idx_sm float32 Angstrom 1386
e_Hdmod_idx_sm float32 Angstrom 1386
e_Hgam_idx_sm float32 Angstrom 1386
e_SN_idx_sm float32 Angstrom 1386
filename: NGC4047.cocube_smo7.hdf5
path: data
<Table length=81356>
name dtype unit format description n_bad
----------- ------- ------ ------ -------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
iz int32 0-based pixel index in z direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
vel float32 km / s velocity in LSRK frame using radio def 0
data3d_12 float32 K co brightness temperature in cube 31128
rms3d_12 float32 K co estimated 1-sigma channel noise 31128
dilmsk3d_12 float32 co mask value for dilated mask 0
smomsk3d_12 float32 co mask value for smoothed mask 0
data3d_13 float32 K 13co brightness temperature in cube 28523
rms3d_13 float32 K 13co estimated 1-sigma channel noise 28523
dilmsk3d_13 float32 13co mask value for dilated mask 0
smomsk3d_13 float32 13co mask value for smoothed mask 0
filename: NGC4047_allpix.pipe3d.hdf5
path: ELINES
<Table length=5544>
name dtype unit format description n_bad
------------- ------- ------------------- ------ -------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
Havel float32 km / s Halpha velocity 1198
Vdisp float32 Angstrom Velocity dispersion plus instrumenta one 1198
[OII]3727 float32 1e-16 erg / (s cm2) [OII]3727 emission line 1198
[OIII]5007 float32 1e-16 erg / (s cm2) [OIII]5007 emission line 1198
[OIII]4959 float32 1e-16 erg / (s cm2) [OIII]4959 emission line 1198
Hbeta float32 1e-16 erg / (s cm2) Hbeta emission line 1198
Halpha float32 1e-16 erg / (s cm2) Halpha emission line 1198
[NII]6583 float32 1e-16 erg / (s cm2) [NII]6583 emission line 1198
[NII]6548 float32 1e-16 erg / (s cm2) [NII]6548 emission line 1198
[SII]6731 float32 1e-16 erg / (s cm2) [SII]6731 emission line 1198
[SII]6717 float32 1e-16 erg / (s cm2) [SII]6717 emission line 1198
e_[OII]3727 float32 1e-16 erg / (s cm2) [OII]3727 emission line 1198
e_[OIII]5007 float32 1e-16 erg / (s cm2) [OIII]5007 emission line 1198
e_[OIII]4959 float32 1e-16 erg / (s cm2) [OIII]4959 emission line 1198
e_Hbeta float32 1e-16 erg / (s cm2) Hbeta emission line 1198
e_Halpha float32 1e-16 erg / (s cm2) Halpha emission line 1198
e_[NII]6583 float32 1e-16 erg / (s cm2) [NII]6583 emission line 1198
e_[NII]6548 float32 1e-16 erg / (s cm2) [NII]6548 emission line 1198
e_[SII]6731 float32 1e-16 erg / (s cm2) [SII]6731 emission line 1198
e_[SII]6717 float32 1e-16 erg / (s cm2) [SII]6717 emission line 1198
Hbeta_sm2 float32 1e-16 erg / (s cm2) Hbeta after 2 pix smooth 1198
Halpha_sm2 float32 1e-16 erg / (s cm2) Halpha after 2 pix smooth 1198
sigsfr0 float32 solMass / (Gyr pc2) SFR surface density no extinction 1198
e_sigsfr0 float32 solMass / (Gyr pc2) error of uncorrected SFR surface density 1198
sigsfr_corr float32 solMass / (Gyr pc2) BD corrected SFR surface density 1309
e_sigsfr_corr float32 solMass / (Gyr pc2) error of BD corrected SFR surface density 1309
AHa_corr float32 mag Ha extinction from BD 1199
e_AHa_corr float32 mag error of Ha extinction from BD 1199
AHa_smooth2 float32 mag Ha extinction after 2 pix smooth 1198
sigsfr_adopt float32 solMass / (Gyr pc2) smooth+clip BD corrected SFR surface density 1198
filename: NGC4047_allpix.pipe3d.hdf5
path: SFH
<Table length=5544>
name dtype unit format description n_bad
--------------------- ------- -------- ------ -------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
lumfrac_age_0.0010 float32 fraction Luminosity Fraction for age 0.0010 SSP 1262
lumfrac_age_0.0030 float32 fraction Luminosity Fraction for age 0.0030 SSP 1262
lumfrac_age_0.0040 float32 fraction Luminosity Fraction for age 0.0040 SSP 1262
lumfrac_age_0.0056 float32 fraction Luminosity Fraction for age 0.0056 SSP 1262
lumfrac_age_0.0089 float32 fraction Luminosity Fraction for age 0.0089 SSP 1262
lumfrac_age_0.0100 float32 fraction Luminosity Fraction for age 0.0100 SSP 1262
lumfrac_age_0.0126 float32 fraction Luminosity Fraction for age 0.0126 SSP 1262
lumfrac_age_0.0141 float32 fraction Luminosity Fraction for age 0.0141 SSP 1262
lumfrac_age_0.0178 float32 fraction Luminosity Fraction for age 0.0178 SSP 1262
lumfrac_age_0.0199 float32 fraction Luminosity Fraction for age 0.0199 SSP 1262
lumfrac_age_0.0251 float32 fraction Luminosity Fraction for age 0.0251 SSP 1262
lumfrac_age_0.0316 float32 fraction Luminosity Fraction for age 0.0316 SSP 1262
lumfrac_age_0.0398 float32 fraction Luminosity Fraction for age 0.0398 SSP 1262
lumfrac_age_0.0562 float32 fraction Luminosity Fraction for age 0.0562 SSP 1262
lumfrac_age_0.0630 float32 fraction Luminosity Fraction for age 0.0630 SSP 1262
lumfrac_age_0.0631 float32 fraction Luminosity Fraction for age 0.0631 SSP 1262
lumfrac_age_0.0708 float32 fraction Luminosity Fraction for age 0.0708 SSP 1262
lumfrac_age_0.1000 float32 fraction Luminosity Fraction for age 0.1000 SSP 1262
lumfrac_age_0.1122 float32 fraction Luminosity Fraction for age 0.1122 SSP 1262
lumfrac_age_0.1259 float32 fraction Luminosity Fraction for age 0.1259 SSP 1262
lumfrac_age_0.1585 float32 fraction Luminosity Fraction for age 0.1585 SSP 1262
lumfrac_age_0.1995 float32 fraction Luminosity Fraction for age 0.1995 SSP 1262
lumfrac_age_0.2818 float32 fraction Luminosity Fraction for age 0.2818 SSP 1262
lumfrac_age_0.3548 float32 fraction Luminosity Fraction for age 0.3548 SSP 1262
lumfrac_age_0.5012 float32 fraction Luminosity Fraction for age 0.5012 SSP 1262
lumfrac_age_0.7079 float32 fraction Luminosity Fraction for age 0.7079 SSP 1262
lumfrac_age_0.8913 float32 fraction Luminosity Fraction for age 0.8913 SSP 1262
lumfrac_age_1.1220 float32 fraction Luminosity Fraction for age 01.1220 SSP 1262
lumfrac_age_1.2589 float32 fraction Luminosity Fraction for age 01.2589 SSP 1262
lumfrac_age_1.4125 float32 fraction Luminosity Fraction for age 01.4125 SSP 1262
lumfrac_age_1.9953 float32 fraction Luminosity Fraction for age 01.9953 SSP 1262
lumfrac_age_2.5119 float32 fraction Luminosity Fraction for age 02.5119 SSP 1262
lumfrac_age_3.5481 float32 fraction Luminosity Fraction for age 03.5481 SSP 1262
lumfrac_age_4.4668 float32 fraction Luminosity Fraction for age 04.4668 SSP 1262
lumfrac_age_6.3096 float32 fraction Luminosity Fraction for age 06.3096 SSP 1262
lumfrac_age_7.9433 float32 fraction Luminosity Fraction for age 07.9433 SSP 1262
lumfrac_age_10.0000 float32 fraction Luminosity Fraction for age 10.000 SSP 1262
lumfrac_age_12.5893 float32 fraction Luminosity Fraction for age 12.5893 SSP 1262
lumfrac_age_14.1254 float32 fraction Luminosity Fraction for age 14.1254 SSP 1262
lumfrac_met_0.0037 float32 fraction Luminosity Fraction for met 0.0037 SSP 1262
lumfrac_met_0.0076 float32 fraction Luminosity Fraction for met 0.0076 SSP 1262
lumfrac_met_0.0190 float32 fraction Luminosity Fraction for met 0.0190 SSP 1262
lumfrac_met_0.0315 float32 fraction Luminosity Fraction for met 0.0315 SSP 1262
e_lumfrac_age_0.0010 float32 fraction Error in the Lum. Fract. for age 0.0010 SSP 1262
e_lumfrac_age_0.0030 float32 fraction Error in the Lum. Fract. for age 0.0030 SSP 1262
e_lumfrac_age_0.0040 float32 fraction Error in the Lum. Fract. for age 0.0040 SSP 1262
e_lumfrac_age_0.0056 float32 fraction Error in the Lum. Fract. for age 0.0056 SSP 1262
e_lumfrac_age_0.0089 float32 fraction Error in the Lum. Fract. for age 0.0089 SSP 1262
e_lumfrac_age_0.0100 float32 fraction Error in the Lum. Fract. for age 0.0100 SSP 1262
e_lumfrac_age_0.0126 float32 fraction Error in the Lum. Fract. for age 0.0126 SSP 1262
e_lumfrac_age_0.0141 float32 fraction Error in the Lum. Fract. for age 0.0141 SSP 1262
e_lumfrac_age_0.0178 float32 fraction Error in the Lum. Fract. for age 0.0178 SSP 1262
e_lumfrac_age_0.0199 float32 fraction Error in the Lum. Fract. for age 0.0199 SSP 1262
e_lumfrac_age_0.0251 float32 fraction Error in the Lum. Fract. for age 0.0251 SSP 1262
e_lumfrac_age_0.0316 float32 fraction Error in the Lum. Fract. for age 0.0316 SSP 1262
e_lumfrac_age_0.0398 float32 fraction Error in the Lum. Fract. for age 0.0398 SSP 1262
e_lumfrac_age_0.0562 float32 fraction Error in the Lum. Fract. for age 0.0562 SSP 1262
e_lumfrac_age_0.0630 float32 fraction Error in the Lum. Fract. for age 0.0630 SSP 1262
e_lumfrac_age_0.0631 float32 fraction Error in the Lum. Fract. for age 0.0631 SSP 1262
e_lumfrac_age_0.0708 float32 fraction Error in the Lum. Fract. for age 0.0708 SSP 1262
e_lumfrac_age_0.1000 float32 fraction Error in the Lum. Fract. for age 0.1000 SSP 1262
e_lumfrac_age_0.1122 float32 fraction Error in the Lum. Fract. for age 0.1122 SSP 1262
e_lumfrac_age_0.1259 float32 fraction Error in the Lum. Fract. for age 0.1259 SSP 1262
e_lumfrac_age_0.1585 float32 fraction Error in the Lum. Fract. for age 0.1585 SSP 1262
e_lumfrac_age_0.1995 float32 fraction Error in the Lum. Fract. for age 0.1995 SSP 1262
e_lumfrac_age_0.2818 float32 fraction Error in the Lum. Fract. for age 0.2818 SSP 1262
e_lumfrac_age_0.3548 float32 fraction Error in the Lum. Fract. for age 0.3548 SSP 1262
e_lumfrac_age_0.5012 float32 fraction Error in the Lum. Fract. for age 0.5012 SSP 1262
e_lumfrac_age_0.7079 float32 fraction Error in the Lum. Fract. for age 0.7079 SSP 1262
e_lumfrac_age_0.8913 float32 fraction Error in the Lum. Fract. for age 0.8913 SSP 1262
e_lumfrac_age_1.1220 float32 fraction Error in the Lum. Fract. for age 01.1220 SSP 1262
e_lumfrac_age_1.2589 float32 fraction Error in the Lum. Fract. for age 01.2589 SSP 1262
e_lumfrac_age_1.4125 float32 fraction Error in the Lum. Fract. for age 01.4125 SSP 1262
e_lumfrac_age_1.9953 float32 fraction Error in the Lum. Fract. for age 01.9953 SSP 1262
e_lumfrac_age_2.5119 float32 fraction Error in the Lum. Fract. for age 02.5119 SSP 1262
e_lumfrac_age_3.5481 float32 fraction Error in the Lum. Fract. for age 03.5481 SSP 1262
e_lumfrac_age_4.4668 float32 fraction Error in the Lum. Fract. for age 04.4668 SSP 1262
e_lumfrac_age_6.3096 float32 fraction Error in the Lum. Fract. for age 06.3096 SSP 1262
e_lumfrac_age_7.9433 float32 fraction Error in the Lum. Fract. for age 07.9433 SSP 1262
e_lumfrac_age_10.0000 float32 fraction Error in the Lum. Fract. for age 10.000 SSP 1262
e_lumfrac_age_12.5893 float32 fraction Error in the Lum. Fract. for age 12.5893 SSP 1262
e_lumfrac_age_14.1254 float32 fraction Error in the Lum. Fract. for age 14.1254 SSP 1262
e_lumfrac_met_0.0037 float32 fraction Error in the Lum. Fract. for met 0.0037 SSP 1262
e_lumfrac_met_0.0076 float32 fraction Error in the Lum. Fract. for met 0.0076 SSP 1262
e_lumfrac_met_0.0190 float32 fraction Error in the Lum. Fract. for met 0.0190 SSP 1262
e_lumfrac_met_0.0315 float32 fraction Error in the Lum. Fract. for met 0.0315 SSP 1262
massfrac_age_0.0010 float32 fraction Mass Fraction for age 0.0010 SSP 1262
massfrac_age_0.0030 float32 fraction Mass Fraction for age 0.0030 SSP 1262
massfrac_age_0.0040 float32 fraction Mass Fraction for age 0.0040 SSP 1262
massfrac_age_0.0056 float32 fraction Mass Fraction for age 0.0056 SSP 1262
massfrac_age_0.0089 float32 fraction Mass Fraction for age 0.0089 SSP 1262
massfrac_age_0.0100 float32 fraction Mass Fraction for age 0.0100 SSP 1262
massfrac_age_0.0126 float32 fraction Mass Fraction for age 0.0126 SSP 1262
massfrac_age_0.0141 float32 fraction Mass Fraction for age 0.0141 SSP 1262
massfrac_age_0.0178 float32 fraction Mass Fraction for age 0.0178 SSP 1262
massfrac_age_0.0199 float32 fraction Mass Fraction for age 0.0199 SSP 1262
massfrac_age_0.0251 float32 fraction Mass Fraction for age 0.0251 SSP 1262
massfrac_age_0.0316 float32 fraction Mass Fraction for age 0.0316 SSP 1262
massfrac_age_0.0398 float32 fraction Mass Fraction for age 0.0398 SSP 1262
massfrac_age_0.0562 float32 fraction Mass Fraction for age 0.0562 SSP 1262
massfrac_age_0.0630 float32 fraction Mass Fraction for age 0.0630 SSP 1262
massfrac_age_0.0631 float32 fraction Mass Fraction for age 0.0631 SSP 1262
massfrac_age_0.0708 float32 fraction Mass Fraction for age 0.0708 SSP 1262
massfrac_age_0.1000 float32 fraction Mass Fraction for age 0.1000 SSP 1262
massfrac_age_0.1122 float32 fraction Mass Fraction for age 0.1122 SSP 1262
massfrac_age_0.1259 float32 fraction Mass Fraction for age 0.1259 SSP 1262
massfrac_age_0.1585 float32 fraction Mass Fraction for age 0.1585 SSP 1262
massfrac_age_0.1995 float32 fraction Mass Fraction for age 0.1995 SSP 1262
massfrac_age_0.2818 float32 fraction Mass Fraction for age 0.2818 SSP 1262
massfrac_age_0.3548 float32 fraction Mass Fraction for age 0.3548 SSP 1262
massfrac_age_0.5012 float32 fraction Mass Fraction for age 0.5012 SSP 1262
massfrac_age_0.7079 float32 fraction Mass Fraction for age 0.7079 SSP 1262
massfrac_age_0.8913 float32 fraction Mass Fraction for age 0.8913 SSP 1262
massfrac_age_1.1220 float32 fraction Mass Fraction for age 01.1220 SSP 1262
massfrac_age_1.2589 float32 fraction Mass Fraction for age 01.2589 SSP 1262
massfrac_age_1.4125 float32 fraction Mass Fraction for age 01.4125 SSP 1262
massfrac_age_1.9953 float32 fraction Mass Fraction for age 01.9953 SSP 1262
massfrac_age_2.5119 float32 fraction Mass Fraction for age 02.5119 SSP 1262
massfrac_age_3.5481 float32 fraction Mass Fraction for age 03.5481 SSP 1262
massfrac_age_4.4668 float32 fraction Mass Fraction for age 04.4668 SSP 1262
massfrac_age_6.3096 float32 fraction Mass Fraction for age 06.3096 SSP 1262
massfrac_age_7.9433 float32 fraction Mass Fraction for age 07.9433 SSP 1262
massfrac_age_10.0000 float32 fraction Mass Fraction for age 10.000 SSP 1262
massfrac_age_12.5893 float32 fraction Mass Fraction for age 12.5893 SSP 1262
massfrac_age_14.1254 float32 fraction Mass Fraction for age 14.1254 SSP 1262
massfrac_met_0.0037 float32 fraction Mass Fraction for met 0.0037 SSP 1262
massfrac_met_0.0076 float32 fraction Mass Fraction for met 0.0076 SSP 1262
massfrac_met_0.0190 float32 fraction Mass Fraction for met 0.0190 SSP 1262
massfrac_met_0.0315 float32 fraction Mass Fraction for met 0.0315 SSP 1262
f_young float32 total mass fraction < 32 Myr 1262
filename: NGC4047_allpix.pipe3d.hdf5
path: SSP
<Table length=5544>
name dtype unit format description n_bad
---------------- ------- ---------------------------- ------ -------------------------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
Vcont_ssp float32 1e-16 erg / (Angstrom s cm2) pseudo V-band map 1262
cont_segm float32 none continuum segmentation file 1262
cont_dezon float32 none continuum dezonification file 1262
medflx_ssp float32 1e-16 erg / (Angstrom s cm2) median intensity flux within the wavelength range 1262
e_medflx_ssp float32 1e-16 erg / (Angstrom s cm2) StdDev median intensity flux within the wavelength range 1262
age_lwt float32 dex(yr) luminosity weighted age of the stellar population 1262
age_mwt float32 dex(yr) mass weighted age of the stellar population 1262
e_age_lwt float32 fraction error of the age of the stellar population 1262
ZH_lwt float32 dex luminosity weighted metallicity of the stellar population 1262
ZH_mwt float32 dex mass weighted metallicity of the stellar population 1262
e_ZH_lwt float32 fraction error metallicity of the stellar population 1262
Av_ssp float32 mag average dust attnuation of the stellar population 1262
e_Av_ssp float32 mag error of the average dust attnuation of the stellar population 1262
vel_ssp float32 km / s velocity of the stellar population 1262
e_vel_ssp float32 km / s error in the velocity of the stellar population 1262
vdisp_ssp float32 km / s velocity dispersion of the stellar population 1262
e_vdisp_ssp float32 km / s error in velocity dispersion of the stellar population 1262
ML_ssp float32 solMass / solLum average mass-to-light ratio of the stellar population 1262
mass_ssp float32 dex(solMass / arcsec2) stellar mass density 1262
mass_Avcor_ssp float32 dex(solMass / arcsec2) stellar mass density dust corrected 1262
sigstar float32 solMass / pc2 stellar mass surface density 1262
sigstar_Avcor float32 solMass / pc2 stellar mass surface density dust corrected 1262
fe_medflx float32 fraction fractional error in continuum flux 1262
sigsfr_ssp float32 solMass / (Gyr pc2) Sigma_SFR from < 32 Myr SSP 1262
sigsfr_Avcor_ssp float32 solMass / (Gyr pc2) Sigma_SFR Av-corrected from < 32 Myr SSP 1262
filename: NGC4047_allpix.pipe3d.hdf5
path: flux_elines
<Table length=5544>
name dtype unit format description n_bad
------------------ ------- ------------------- ------ --------------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
flux_[OII]3727 float32 1e-16 erg / (s cm2) [OII]3727 intensity 1198
flux_[OIII]5007 float32 1e-16 erg / (s cm2) [OIII]5007 intensity 1198
flux_[OIII]4959 float32 1e-16 erg / (s cm2) [OIII]4959 intensity 1198
flux_Hbeta float32 1e-16 erg / (s cm2) Hbeta intensity 1198
flux_[OI]6300 float32 1e-16 erg / (s cm2) [OI]6300 intensity 1198
flux_Halpha float32 1e-16 erg / (s cm2) Halpha intensity 1198
flux_[NII]6583 float32 1e-16 erg / (s cm2) [NII]6583 intensity 1198
flux_[NII]6548 float32 1e-16 erg / (s cm2) [NII]6548 intensity 1198
flux_[SII]6717 float32 1e-16 erg / (s cm2) [SII]6717 intensity 1198
flux_[SII]6731 float32 1e-16 erg / (s cm2) [SII]6731 intensity 1198
vel_[OII]3727 float32 km / s [OII]3727 velocity 1198
vel_[OIII]5007 float32 km / s [OIII]5007 velocity 1198
vel_[OIII]4959 float32 km / s [OIII]4959 velocity 1198
vel_Hbeta float32 km / s Hbeta velocity 1198
vel_[OI]6300 float32 km / s [OI]6300 velocity 1198
vel_Halpha float32 km / s Halpha velocity 1198
vel_[NII]6583 float32 km / s [NII]6583 velocity 1198
vel_[NII]6548 float32 km / s [NII]6548 velocity 1198
vel_[SII]6717 float32 km / s [SII]6717 velocity 1198
vel_[SII]6731 float32 km / s [SII]6731 velocity 1198
disp_[OII]3727 float32 Angstrom [OII]3727 velocity dispersion 1198
disp_[OIII]5007 float32 Angstrom [OIII]5007 velocity dispersion 1198
disp_[OIII]4959 float32 Angstrom [OIII]4959 velocity dispersion 1198
disp_Hbeta float32 Angstrom Hbeta velocity dispersion 1198
disp_[OI]6300 float32 Angstrom [OI]6300 velocity dispersion 1198
disp_Halpha float32 Angstrom Halpha velocity dispersion 1198
disp_[NII]6583 float32 Angstrom [NII]6583 velocity dispersion 1198
disp_[NII]6548 float32 Angstrom [NII]6548 velocity dispersion 1198
disp_[SII]6717 float32 Angstrom [SII]6717 velocity dispersion 1198
disp_[SII]6731 float32 Angstrom [SII]6731 velocity dispersion 1198
EW_[OII]3727 float32 Angstrom [OII]3727 equivalent width 1199
EW_[OIII]5007 float32 Angstrom [OIII]5007 equivalent width 1199
EW_[OIII]4959 float32 Angstrom [OIII]4959 equivalent width 1199
EW_Hbeta float32 Angstrom Hbeta equivalent width 1199
EW_[OI]6300 float32 Angstrom [OI]6300 equivalent width 1199
EW_Halpha float32 Angstrom Halpha equivalent width 1199
EW_[NII]6583 float32 Angstrom [NII]6583 equivalent width 1199
EW_[NII]6548 float32 Angstrom [NII]6548 equivalent width 1199
EW_[SII]6717 float32 Angstrom [SII]6717 equivalent width 1199
EW_[SII]6731 float32 Angstrom [SII]6731 equivalent width 1199
e_flux_[OII]3727 float32 1e-16 erg / (s cm2) error in [OII]3727 intensity 1198
e_flux_[OIII]5007 float32 1e-16 erg / (s cm2) error in [OIII]5007 intensity 1198
e_flux_[OIII]4959 float32 1e-16 erg / (s cm2) error in [OIII]4959 intensity 1198
e_flux_Hbeta float32 1e-16 erg / (s cm2) error in Hbeta intensity 1198
e_flux_[OI]6300 float32 1e-16 erg / (s cm2) error in [OI]6300 intensity 1198
e_flux_Halpha float32 1e-16 erg / (s cm2) error in Halpha intensity 1198
e_flux_[NII]6583 float32 1e-16 erg / (s cm2) error in [NII]6583 intensity 1198
e_flux_[NII]6548 float32 1e-16 erg / (s cm2) error in [NII]6548 intensity 1198
e_flux_[SII]6717 float32 1e-16 erg / (s cm2) error in [SII]6717 intensity 1198
e_flux_[SII]6731 float32 1e-16 erg / (s cm2) error in [SII]6731 intensity 1198
e_vel_[OII]3727 float32 km / s error in [OII]3727 velocity 1198
e_vel_[OIII]5007 float32 km / s error in [OIII]5007 velocity 1198
e_vel_[OIII]4959 float32 km / s error in [OIII]4959 velocity 1198
e_vel_Hbeta float32 km / s error in Hbeta velocity 1198
e_vel_[OI]6300 float32 km / s error in [OI]6300 velocity 1198
e_vel_Halpha float32 km / s error in Halpha velocity 1198
e_vel_[NII]6583 float32 km / s error in [NII]6583 velocity 1198
e_vel_[NII]6548 float32 km / s error in [NII]6548 velocity 1198
e_vel_[SII]6717 float32 km / s error in [SII]6717 velocity 1198
e_vel_[SII]6731 float32 km / s error in [SII]6731 velocity 1198
e_disp_[OII]3727 float32 Angstrom error in [OII]3727 velocity dispersion 1198
e_disp_[OIII]5007 float32 Angstrom error in [OIII]5007 velocity dispersion 1198
e_disp_[OIII]4959 float32 Angstrom error in [OIII]4959 velocity dispersion 1198
e_disp_Hbeta float32 Angstrom error in Hbeta velocity dispersion 1198
e_disp_[OI]6300 float32 Angstrom error in [OI]6300 velocity dispersion 1198
e_disp_Halpha float32 Angstrom error in Halpha velocity dispersion 1198
e_disp_[NII]6583 float32 Angstrom error in [NII]6583 velocity dispersion 1198
e_disp_[NII]6548 float32 Angstrom error in [NII]6548 velocity dispersion 1198
e_disp_[SII]6717 float32 Angstrom error in [SII]6717 velocity dispersion 1198
e_disp_[SII]6731 float32 Angstrom error in [SII]6731 velocity dispersion 1198
e_EW_[OII]3727 float32 Angstrom error in [OII]3727 equivalent width 1199
e_EW_[OIII]5007 float32 Angstrom error in [OIII]5007 equivalent width 1199
e_EW_[OIII]4959 float32 Angstrom error in [OIII]4959 equivalent width 1199
e_EW_Hbeta float32 Angstrom error in Hbeta equivalent width 1199
e_EW_[OI]6300 float32 Angstrom error in [OI]6300 equivalent width 1199
e_EW_Halpha float32 Angstrom error in Halpha equivalent width 1199
e_EW_[NII]6583 float32 Angstrom error in [NII]6583 equivalent width 1199
e_EW_[NII]6548 float32 Angstrom error in [NII]6548 equivalent width 1199
e_EW_[SII]6717 float32 Angstrom error in [SII]6717 equivalent width 1199
e_EW_[SII]6731 float32 Angstrom error in [SII]6731 equivalent width 1199
flux_Hbeta_sm2 float32 1e-16 erg / (s cm2) Hbeta intensity after 2 pix smooth 1198
flux_Halpha_sm2 float32 1e-16 erg / (s cm2) Halpha intensity after 2 pix smooth 1198
flux_sigsfr0 float32 solMass / (Gyr pc2) SFR surface density no extinction 1198
e_flux_sigsfr0 float32 solMass / (Gyr pc2) error of uncorrected SFR surface density 1198
flux_sigsfr_corr float32 solMass / (Gyr pc2) BD corrected SFR surface density 1452
e_flux_sigsfr_corr float32 solMass / (Gyr pc2) error of BD corrected SFR surface density 1452
flux_AHa_corr float32 mag Ha extinction from BD 1428
e_flux_AHa_corr float32 mag error of Ha extinction from BD 1428
flux_AHa_smooth2 float32 mag Ha extinction after 2 pix smooth 1229
flux_sigsfr_adopt float32 solMass / (Gyr pc2) smooth+clip BD corrected SFR surface density 1244
BPT float32 .1f BPT type (-1=SF 0=inter 1=LINER 2=Sy) 1832
p_BPT float32 BPT probability 1832
SF_BPT bool True if star forming (BPT=-1 and EW_Ha>6) 0
ZOH float32 dex 12+log(O/H) using o3n2 method in Marino+13 2764
e_ZOH float32 dex error in 12+log(O/H) using o3n2 method in Marino+13 2764
ZOH_N2 float32 dex 12+log(O/H) using n2 method in Marino+13 2764
e_ZOH_N2 float32 dex error in 12+log(O/H) using n2 method in Marino+13 2764
filename: NGC4047_allpix.pipe3d.hdf5
path: indices
<Table length=5544>
name dtype unit format description n_bad
------------ ------- -------- ------ ---------------------------------- -----
Name bytes7 Galaxy Name 0
ix int32 0-based pixel index in x direction 0
iy int32 0-based pixel index in y direction 0
ra_abs float32 deg .6f sample ra coord 0
dec_abs float32 deg .6f sample dec coord 0
ra_off float32 deg .6f ra offset from ref pixel 0
dec_off float32 deg .6f dec offset from ref pixel 0
rad_arc float32 arcsec .3f radius based on LEDA 0
azi_ang float32 deg .3f azang based on LEDA 0
Hdel_idx float32 Angstrom 1197
Hbet_idx float32 Angstrom 1197
Mgb_idx float32 Angstrom 1197
Fe5270_idx float32 Angstrom 1197
Fe5335_idx float32 Angstrom 1197
D4000_idx float32 Angstrom 1197
Hdmod_idx float32 Angstrom 1197
Hgam_idx float32 Angstrom 1197
SN_idx float32 Angstrom 1197
e_Hdel_idx float32 Angstrom 1197
e_Hbet_idx float32 Angstrom 1197
e_Mgb_idx float32 Angstrom 1197
e_Fe5270_idx float32 Angstrom 1197
e_Fe5335_idx float32 Angstrom 1197
e_D4000_idx float32 Angstrom 1197
e_Hdmod_idx float32 Angstrom 1197
e_Hgam_idx float32 Angstrom 1197
e_SN_idx float32 Angstrom 1197
filename: NGC4047_hex.2d_smo7.hdf5
path: ELINES_sm
<Table length=1533>
name dtype unit description n_bad
---------------- ------- ------------------- -------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix float32 0-based pixel index in x direction 0
iy float32 0-based pixel index in y direction 0
ra_abs float32 deg sample ra coord 0
dec_abs float32 deg sample dec coord 0
ra_off float32 deg ra offset from ref pixel 0
dec_off float32 deg dec offset from ref pixel 0
rad_arc float32 radius based on LEDA 0
azi_ang float32 azang based on LEDA 0
Havel_sm float32 km / s Halpha velocity 1150
Vdisp_sm float32 Angstrom Velocity dispersion plus instrumenta one 1150
[OII]3727_sm float32 1e-16 erg / (s cm2) [OII]3727 emission line 1150
[OIII]5007_sm float32 1e-16 erg / (s cm2) [OIII]5007 emission line 1150
[OIII]4959_sm float32 1e-16 erg / (s cm2) [OIII]4959 emission line 1150
Hbeta_sm float32 1e-16 erg / (s cm2) Hbeta emission line 1150
Halpha_sm float32 1e-16 erg / (s cm2) Halpha emission line 1150
[NII]6583_sm float32 1e-16 erg / (s cm2) [NII]6583 emission line 1150
[NII]6548_sm float32 1e-16 erg / (s cm2) [NII]6548 emission line 1150
[SII]6731_sm float32 1e-16 erg / (s cm2) [SII]6731 emission line 1150
[SII]6717_sm float32 1e-16 erg / (s cm2) [SII]6717 emission line 1150
e_[OII]3727_sm float32 1e-16 erg / (s cm2) [OII]3727 emission line 1150
e_[OIII]5007_sm float32 1e-16 erg / (s cm2) [OIII]5007 emission line 1150
e_[OIII]4959_sm float32 1e-16 erg / (s cm2) [OIII]4959 emission line 1150
e_Hbeta_sm float32 1e-16 erg / (s cm2) Hbeta emission line 1150
e_Halpha_sm float32 1e-16 erg / (s cm2) Halpha emission line 1150
e_[NII]6583_sm float32 1e-16 erg / (s cm2) [NII]6583 emission line 1150
e_[NII]6548_sm float32 1e-16 erg / (s cm2) [NII]6548 emission line 1150
e_[SII]6731_sm float32 1e-16 erg / (s cm2) [SII]6731 emission line 1150
e_[SII]6717_sm float32 1e-16 erg / (s cm2) [SII]6717 emission line 1150
Hbeta_sm3_sm float32 1e-16 erg / (s cm2) Hbeta after 3 pix smooth 1150
Halpha_sm3_sm float32 1e-16 erg / (s cm2) Halpha after 3 pix smooth 1150
sigsfr0_sm float32 solMass / (Gyr pc2) SFR surface density no extinction 1150
e_sigsfr0_sm float32 solMass / (Gyr pc2) error of uncorrected SFR surface density 1150
sigsfr_corr_sm float32 solMass / (Gyr pc2) BD corrected SFR surface density 1150
e_sigsfr_corr_sm float32 solMass / (Gyr pc2) error of BD corrected SFR surface density 1150
AHa_corr_sm float32 mag Ha extinction from BD 1150
e_AHa_corr_sm float32 mag error of Ha extinction from BD 1150
AHa_smooth3_sm float32 mag Ha extinction after 3 pix smooth 1150
sigsfr_adopt_sm float32 solMass / (Gyr pc2) smooth+clip BD corrected SFR surface density 1150
filename: NGC4047_hex.2d_smo7.hdf5
path: SFH_sm
<Table length=1533>
name dtype unit description n_bad
------------------------ ------- -------- -------------------------------------------- -----
Name bytes7 Galaxy Name 0
ix float32 0-based pixel index in x direction 0
iy float32 0-based pixel index in y direction 0
ra_abs float32 deg sample ra coord 0
dec_abs float32 deg sample dec coord 0
ra_off float32 deg ra offset from ref pixel 0
dec_off float32 deg dec offset from ref pixel 0
rad_arc float32 radius based on LEDA 0
azi_ang float32 azang based on LEDA 0
lumfrac_age_0.0010_sm float32 fraction Luminosity Fraction for age 0.0010 SSP 1154
lumfrac_age_0.0030_sm float32 fraction Luminosity Fraction for age 0.0030 SSP 1154
lumfrac_age_0.0040_sm float32 fraction Luminosity Fraction for age 0.0040 SSP 1154
lumfrac_age_0.0056_sm float32 fraction Luminosity Fraction for age 0.0056 SSP 1154
lumfrac_age_0.0089_sm float32 fraction Luminosity Fraction for age 0.0089 SSP 1154
lumfrac_age_0.0100_sm float32 fraction Luminosity Fraction for age 0.0100 SSP 1154
lumfrac_age_0.0126_sm float32 fraction Luminosity Fraction for age 0.0126 SSP 1154
lumfrac_age_0.0141_sm float32 fraction Luminosity Fraction for age 0.0141 SSP 1154
lumfrac_age_0.0178_sm float32 fraction Luminosity Fraction for age 0.0178 SSP 1154
lumfrac_age_0.0199_sm float32 fraction Luminosity Fraction for age 0.0199 SSP 1154
lumfrac_age_0.0251_sm float32 fraction Luminosity Fraction for age 0.0251 SSP 1154
lumfrac_age_0.0316_sm float32 fraction Luminosity Fraction for age 0.0316 SSP 1154
lumfrac_age_0.0398_sm float32 fraction Luminosity Fraction for age 0.0398 SSP 1154
lumfrac_age_0.0562_sm float32 fraction Luminosity Fraction for age 0.0562 SSP 1154
lumfrac_age_0.0630_sm float32 fraction Luminosity Fraction for age 0.0630 SSP 1154
lumfrac_age_0.0631_sm float32 fraction Luminosity Fraction for age 0.0631 SSP 1154
lumfrac_age_0.0708_sm float32 fraction Luminosity Fraction for age 0.0708 SSP 1154
lumfrac_age_0.1000_sm float32 fraction Luminosity Fraction for age 0.1000 SSP 1154
lumfrac_age_0.1122_sm float32 fraction Luminosity Fraction for age 0.1122 SSP 1154
lumfrac_age_0.1259_sm float32 fraction Luminosity Fraction for age 0.1259 SSP 1154
lumfrac_age_0.1585_sm float32 fraction Luminosity Fraction for age 0.1585 SSP 1154
lumfrac_age_0.1995_sm float32 fraction Luminosity Fraction for age 0.1995 SSP 1154
lumfrac_age_0.2818_sm float32 fraction Luminosity Fraction for age 0.2818 SSP 1154
lumfrac_age_0.3548_sm float32 fraction Luminosity Fraction for age 0.3548 SSP 1154
lumfrac_age_0.5012_sm float32 fraction Luminosity Fraction for age 0.5012 SSP 1154
lumfrac_age_0.7079_sm float32 fraction Luminosity Fraction for age 0.7079 SSP 1154
lumfrac_age_0.8913_sm float32 fraction Luminosity Fraction for age 0.8913 SSP 1154
lumfrac_age_1.1220_sm float32 fraction Luminosity Fraction for age 01.1220 SSP 1154
lumfrac_age_1.2589_sm float32 fraction Luminosity Fraction for age 01.2589 SSP 1154
lumfrac_age_1.4125_sm float32 fraction Luminosity Fraction for age 01.4125 SSP 1154
lumfrac_age_1.9953_sm float32 fraction Luminosity Fraction for age 01.9953 SSP 1154
lumfrac_age_2.5119_sm float32 fraction Luminosity Fraction for age 02.5119 SSP 1154
lumfrac_age_3.5481_sm float32 fraction Luminosity Fraction for age 03.5481 SSP 1154
lumfrac_age_4.4668_sm float32 fraction Luminosity Fraction for age 04.4668 SSP 1154
lumfrac_age_6.3096_sm float32 fraction Luminosity Fraction for age 06.3096 SSP 1154
lumfrac_age_7.9433_sm float32 fraction Luminosity Fraction for age 07.9433 SSP 1154
lumfrac_age_10.0000_sm float32 fraction Luminosity Fraction for age 10.000 SSP 1154
lumfrac_age_12.5893_sm float32 fraction Luminosity Fraction for age 12.5893 SSP 1154
lumfrac_age_14.1254_sm float32 fraction Luminosity Fraction for age 14.1254 SSP 1154
lumfrac_met_0.0037_sm float32 fraction Luminosity Fraction for met 0.0037 SSP 1154
lumfrac_met_0.0076_sm float32 fraction Luminosity Fraction for met 0.0076 SSP 1154
lumfrac_met_0.0190_sm float32 fraction Luminosity Fraction for met 0.0190 SSP 1154
lumfrac_met_0.0315_sm float32 fraction Luminosity Fraction for met 0.0315 SSP 1154
e_lumfrac_age_0.0010_sm float32 fraction Error in the Lum. Fract. for age 0.0010 SSP 1154
e_lumfrac_age_0.0030_sm float32 fraction Error in the Lum. Fract. for age 0.0030 SSP 1154
e_lumfrac_age_0.0040_sm float32 fraction Error in the Lum. Fract. for age 0.0040 SSP 1154
e_lumfrac_age_0.0056_sm float32 fraction Error in the Lum. Fract. for age 0.0056 SSP 1154
e_lumfrac_age_0.0089_sm float32 fraction Error in the Lum. Fract. for age 0.0089 SSP 1154
e_lumfrac_age_0.0100_sm float32 fraction Error in the Lum. Fract. for age 0.0100 SSP 1154
e_lumfrac_age_0.0126_sm float32 fraction Error in the Lum. Fract. for age 0.0126 SSP 1154
e_lumfrac_age_0.0141_sm float32 fraction Error in the Lum. Fract. for age 0.0141 SSP 1154
e_lumfrac_age_0.0178_sm float32 fraction Error in the Lum. Fract. for age 0.0178 SSP 1154
e_lumfrac_age_0.0199_sm float32 fraction Error in the Lum. Fract. for age 0.0199 SSP 1154
e_lumfrac_age_0.0251_sm float32 fraction Error in the Lum. Fract. for age 0.0251 SSP 1154
e_lumfrac_age_0.0316_sm float32 fraction Error in the Lum. Fract. for age 0.0316 SSP 1154
e_lumfrac_age_0.0398_sm float32 fraction Error in the Lum. Fract. for age 0.0398 SSP 1154
e_lumfrac_age_0.0562_sm float32 fraction Error in the Lum. Fract. for age 0.0562 SSP 1154
e_lumfrac_age_0.0630_sm float32 fraction Error in the Lum. Fract. for age 0.0630 SSP 1154
e_lumfrac_age_0.0631_sm float32 fraction Error in the Lum. Fract. for age 0.0631 SSP 1154
e_lumfrac_age_0.0708_sm float32 fraction Error in the Lum. Fract. for age 0.0708 SSP 1154
e_lumfrac_age_0.1000_sm float32 fraction Error in the Lum. Fract. for age 0.1000 SSP 1154
e_lumfrac_age_0.1122_sm float32 fraction Error in the Lum. Fract. for age 0.1122 SSP 1154
e_lumfrac_age_0.1259_sm float32 fraction Error in the Lum. Fract. for age 0.1259 SSP 1154
e_lumfrac_age_0.1585_sm float32 fraction Error in the Lum. Fract. for age 0.1585 SSP 1154
e_lumfrac_age_0.1995_sm float32 fraction Error in the Lum. Fract. for age 0.1995 SSP 1154
e_lumfrac_age_0.2818_sm float32 fraction Error in the Lum. Fract. for age 0.2818 SSP 1154
e_lumfrac_age_0.3548_sm float32 fraction Error in the Lum. Fract. for age 0.3548 SSP 1154
e_lumfrac_age_0.5012_sm float32 fraction Error in the Lum. Fract. for age 0.5012 SSP 1154
e_lumfrac_age_0.7079_sm float32 fraction Error in the Lum. Fract. for age 0.7079 SSP 1154
e_lumfrac_age_0.8913_sm float32 fraction Error in the Lum. Fract. for age 0.8913 SSP 1154
e_lumfrac_age_1.1220_sm float32 fraction Error in the Lum. Fract. for age 01.1220 SSP 1154
e_lumfrac_age_1.2589_sm float32 fraction Error in the Lum. Fract. for age 01.2589 SSP 1154
e_lumfrac_age_1.4125_sm float32 fraction Error in the Lum. Fract. for age 01.4125 SSP 1154
e_lumfrac_age_1.9953_sm float32 fraction Error in the Lum. Fract. for age 01.9953 SSP 1154
e_lumfrac_age_2.5119_sm float32 fraction Error in the Lum. Fract. for age 02.5119 SSP 1154
e_lumfrac_age_3.5481_sm float32 fraction Error in the Lum. Fract. for age 03.5481 SSP 1154
e_lumfrac_age_4.4668_sm float32 fraction Error in the Lum. Fract. for age 04.4668 SSP 1154