-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastroData.json
4182 lines (4179 loc) · 188 KB
/
astroData.json
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
{
"astroObject": [
{
"constellations": "Andromeda",
"distance": 1300,
"id": "NGC 752",
"link": "https://en.wikipedia.org/wiki/NGC_752",
"name": "- easily seen through binoculars, although it may approach naked eye visibility under good observing conditions",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/4/4a/NGC_752.png"
},
{
"constellations": "Andromeda",
"distance": 1800,
"id": "NGC 7662",
"link": "https://en.wikipedia.org/wiki/NGC_7662",
"name": "Snowball Nebula",
"type": "Planetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/NGC_7662_%22Blue_Snowball%22.jpg/512px-NGC_7662_%22Blue_Snowball%22.jpg"
},
{
"constellations": "Andromeda",
"distance": 2490000,
"id": "M 32",
"link": "https://en.wikipedia.org/wiki/Messier_32",
"name": "dwarf galaxy satellite of the Andromeda Galaxy",
"type": "Elliptical galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/M32_Francione_inverted.jpg/610px-M32_Francione_inverted.jpg"
},
{
"constellations": "Andromeda",
"distance": 2537000,
"id": "M31",
"link": "https://en.wikipedia.org/wiki/Andromeda_Galaxy",
"name": "Andromeda Galaxy",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Andromeda_Galaxy_560mm_FL.jpg/512px-Andromeda_Galaxy_560mm_FL.jpg"
},
{
"constellations": "Andromeda",
"distance": 2690000,
"id": "M 110",
"link": "https://en.wikipedia.org/wiki/NGC_891",
"name": "dwarf elliptical galaxy that is a satellite of the Andromeda Galaxy",
"type": "Elliptical galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/d/d3/MESSIER_110_2MASS.jpg"
},
{
"constellations": "Andromeda",
"distance": 27400000,
"id": "NGC 891",
"name": "Silver Sliver Galaxy",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/NGC891HunterWilson.jpg/512px-NGC891HunterWilson.jpg"
},
{
"constellations": "Antilia",
"distance": 2300000,
"id": "ESO 376-16",
"link": "https://scitechdaily.com/hubble-telescope-image-of-the-week-galaxy-eso-376-16/",
"name": "late-type spiral or a dwarf irregular galaxy",
"type": "Irregular galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/ESO_376-16.jpg/512px-ESO_376-16.jpg"
},
{
"constellations": "Antilia",
"distance": 3980000,
"id": "NGC 2997",
"link": "https://en.wikipedia.org/wiki/NGC_2997",
"name": "a face-on unbarred spiral galaxy",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/N2997s.jpg/512px-N2997s.jpg"
},
{
"constellations": "Apus",
"distance": 47600,
"id": "NGC 6101",
"link": "https://en.wikipedia.org/wiki/NGC_6101",
"name": "- research revealed this cluster to contain an unexpected large number of black holes",
"type": "Globular cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/NGC_6101.jpg/480px-NGC_6101.jpg"
},
{
"constellations": "Apus",
"distance": 50000,
"id": "IC 4499",
"link": "https://en.wikipedia.org/wiki/IC_4499",
"name": "- located in the medium-far galactic halo",
"type": "Globular cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Potw1431a.jpg/470px-Potw1431a.jpg"
},
{
"constellations": "Aquarius",
"distance": 1400,
"id": "NGC 7009",
"link": "https://en.wikipedia.org/wiki/Saturn_Nebula",
"name": "Saturn Nebula",
"type": "lanetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/MUSE_image_of_the_Saturn_Nebula.jpg/591px-MUSE_image_of_the_Saturn_Nebula.jpg"
},
{
"constellations": "Aquarius",
"distance": 220000000,
"id": "NGC 7252",
"link": "https://en.wikipedia.org/wiki/NGC_7252",
"name": "- Atoms for Peace Galaxy - The galaxy is the result of a collision of two galaxies",
"type": "Peculiar galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b5/Hubble_image_of_NGC_7252.jpg/640px-Hubble_image_of_NGC_7252.jpg"
},
{
"constellations": "Aquarius",
"distance": 54570,
"id": "M 72",
"link": "https://en.wikipedia.org/wiki/Messier_72",
"name": "- visible in a good night sky as a faint nebula in a telescope with a 6 cm",
"type": "Globular cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/71/M72_Hubble_WikiSky.jpg/480px-M72_Hubble_WikiSky.jpg"
},
{
"constellations": "Aquarius",
"distance": 55000,
"id": "M 2",
"link": "https://en.wikipedia.org/wiki/Messier_2",
"name": "- easily seen through binoculars, although it may approach naked eye visibility under good observing conditions",
"type": "Globular cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Messier2_-_HST_-_Potw1913a.jpg/478px-Messier2_-_HST_-_Potw1913a.jpg"
},
{
"constellations": "Aquarius",
"distance": 650,
"id": "NGC 7293",
"link": "https://en.wikipedia.org/wiki/Helix_Nebula",
"name": "Helix Nebula",
"type": "Planetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/NGC7293_%282004%29.jpg/445px-NGC7293_%282004%29.jpg"
},
{
"constellations": "Aquarius",
"distance": 76000000,
"id": "NGC 7727",
"link": "https://en.wikipedia.org/wiki/NGC_7727",
"name": "- In all likelihood, this system is the product of the merger of two previous spiral galaxies that took place 1 billion years ago",
"type": "Peculiar galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fb/Gemini_South_Reveals_Tangled_Spiral_Arms_of_the_Peculiar_Galaxy_NGC_7727_%28noirlab2325xa%29.jpg/496px-Gemini_South_Reveals_Tangled_Spiral_Arms_of_the_Peculiar_Galaxy_NGC_7727_%28noirlab2325xa%29.jpg"
},
{
"constellations": "Aquila",
"distance": 10300,
"id": "NGC 6778",
"link": "https://en.wikipedia.org/wiki/NGC_6778",
"name": "- at the center of the nebula is a close binary star system",
"type": "Planetary nebula",
"url": "https://earimediaprodweb.azurewebsites.net/Api/v1/Multimedia/30a1f89b-bc84-4df5-b1ee-d1dae86a6f8d/Rendition/low-res/Content/Public"
},
{
"constellations": "Aquila",
"distance": 1500,
"id": "NGC 6781",
"link": "https://en.wikipedia.org/wiki/NGC_6781",
"name": "- The bipolar dust shell of this nebula is believed to be barrel-shaped and is being viewed from nearly pole-on",
"type": "Planetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/NGC-6781.jpg/480px-NGC-6781.jpg"
},
{
"constellations": "Aquila",
"distance": 17000,
"id": "W 51",
"link": "https://www.jpl.nasa.gov/images/pia23865-spitzer-image-of-star-factory-w51",
"name": "one of the largest 'star factories' in the Milky Way galaxy",
"type": "Star-forming nebula",
"url": "https://www.spitzer.caltech.edu/system/avm_images/binaries/6830/large/ssc2020-14a.jpg?1603793874"
},
{
"constellations": "Aquila",
"distance": 18000,
"id": "Westerhout 50",
"link": "https://en.wikipedia.org/wiki/Westerhout_50",
"name": "Manatee Nebula",
"type": "Supernova-remnant nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/W50_medium.jpg/640px-W50_medium.jpg"
},
{
"constellations": "Aquila",
"distance": 4200,
"id": "NGC 6804",
"link": "https://www.deepskycorner.ch/ngc6804/ngc6804.en.php",
"name": "- small planetary nebula",
"type": "Planetary nebula",
"url": "https://www.deepskycorner.ch/thumb/f9e446fb56dfab4b1cb58405a0771142_fig.webp"
},
{
"constellations": "Aquila",
"distance": 6500,
"id": "NGC 6751",
"link": "https://en.wikipedia.org/wiki/NGC_6751",
"name": "Glowing Eye Nebula",
"type": "Planetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/c/c0/NGC6751.jpg"
},
{
"constellations": "Aquila",
"distance": 7000,
"id": "NGC 6741",
"link": "https://en.wikipedia.org/wiki/NGC_6741",
"name": "Phantom Streak Nebula",
"type": "Planetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/NGC_6741.tif/lossy-page1-1200px-NGC_6741.tif.jpg"
},
{
"constellations": "Ara",
"distance": 12070,
"id": "https://en.wikipedia.org/wiki/Westerlund_1",
"link": "Westerlund 1",
"name": "- is one of the most massive young star clusters in the Milky Way",
"type": "Super-star cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/ee/Surprise_Cloud_Around_Vast_Star.jpg/640px-Surprise_Cloud_Around_Vast_Star.jpg"
},
{
"constellations": "Ara",
"distance": 3765,
"id": "NGC 6193",
"link": "https://en.wikipedia.org/wiki/NGC_6193",
"name": "- the cluster is associated with (and provides the energizing radiation for) neighboring regions of the nebulosity NGC 6188",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Rgb-ngc6193.jpg/479px-Rgb-ngc6193.jpg"
},
{
"constellations": "Ara",
"distance": 4000,
"id": "NGC 6188",
"link": "https://en.wikipedia.org/wiki/NGC_6200",
"name": "- the bright open cluster NGC 6193, visible to the naked eye, is responsible for a region of reflection nebulosity within NGC 6188",
"type": "Emission nebula",
"url": "https://telescope.live/sites/default/files/styles/fb_1200x630/public/2022-02/DragonsAra-TL.jpg?itok=XnmvonaT"
},
{
"constellations": "Ara",
"distance": 6700,
"id": "NGC 6200",
"link": "https://en.wikipedia.org/wiki/NGC_6200",
"name": "- lying close to the galactic equator",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/9/92/NGC_6200.png"
},
{
"constellations": "Ara",
"distance": 7800,
"id": "NGC 6397",
"link": "https://en.wikipedia.org/wiki/NGC_6193",
"name": "- one of the two nearest globular clusters to Earth (the other one being Messier 4",
"type": "Globular cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/P0321a.jpg/584px-P0321a.jpg"
},
{
"constellations": "Aries",
"distance": 100000000,
"id": "NGC 691 galaxy group",
"link": "https://www.deepskycorner.ch/ngc691/ngc691.en.php",
"name": "- is a collection of nine galaxies consisting of NGC 678, 680, 691, 694, 695 and NGC 695 along with IC 1730 and IC 167",
"type": "Group galaxy",
"url": "https://live.staticflickr.com/7323/15846744323_799fe58b08_b.jpg"
},
{
"constellations": "Aries",
"distance": 120000000,
"id": "NGC 770",
"link": "https://en.wikipedia.org/wiki/NGC_770",
"name": "- gravitationally linked to NGC 772",
"type": "Elliptical galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/d/df/NGC_0770_SDSS.jpg"
},
{
"constellations": "Aries",
"distance": 130000000,
"id": "NGC 772",
"link": "https://en.wikipedia.org/wiki/NGC_772",
"name": "- an unbarred spiral galaxy",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/NGC772_-_Noirlab2209a.jpg/553px-NGC772_-_Noirlab2209a.jpg"
},
{
"constellations": "Aries",
"distance": 424000000,
"id": "UGC 2369",
"link": "https://en.wikipedia.org/wiki/UGC_2369",
"name": "- Interaction between galaxies is not an uncommon event, however, two similarly sized ones merging is rare. The images released by NASA show both the galaxies distorting as they pulled closer. In the images, a thin bridge of gas, dust and stars can also be seen",
"type": "Interacting galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/UGC_2369NS.jpeg/467px-UGC_2369NS.jpeg"
},
{
"constellations": "Auriga",
"distance": 12000,
"id": "IC 410",
"link": "https://www.skyatnightmagazine.com/astrophotography/nebulae/tadpole-nebula-ic-410/",
"name": "Tadpole Nebula",
"type": "Star-forming nebula",
"url": "https://cdn.astrobin.com/thumbs/f0f3ND_ea689_620x0_kWXURFLk.jpg"
},
{
"constellations": "Auriga",
"distance": 1500,
"id": "IC 405",
"link": "https://en.wikipedia.org/wiki/IC_405",
"name": "Flaming Star Nebula (also an reflection nebula)",
"type": "Reflection nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/FlamingStarHunterWilson.jpg/595px-FlamingStarHunterWilson.jpg"
},
{
"constellations": "Auriga",
"distance": 7000,
"id": "NGC 1931",
"link": "https://en.wikipedia.org/wiki/NGC_1931",
"name": "- emission and reflection nebula",
"type": "Reflection nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0c/NGC1931HunterWilson.jpg/533px-NGC1931HunterWilson.jpg"
},
{
"constellations": "Boötes",
"distance": 51900,
"id": "NGC 5466",
"link": "https://en.wikipedia.org/wiki/NGC_5466",
"name": "class XII globular cluster",
"type": "Globular cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/NGC_5466_Hubble_WikiSky.jpg/600px-NGC_5466_Hubble_WikiSky.jpg"
},
{
"constellations": "Caelum",
"distance": 3000000000,
"id": "HE0450-2958",
"link": "https://en.wikipedia.org/wiki/HE0450-2958",
"name": "- been called the 'naked quasar' and the 'quasar without a home' because it appears to lack a host galaxy",
"type": "Quasar galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Quasar_HE0450-2958.jpg/600px-Quasar_HE0450-2958.jpg"
},
{
"constellations": "Caelum",
"distance": 48000000,
"id": "NGC 1679",
"link": "https://www.constellation-guide.com/ngc-1679-in-caelum/",
"name": "The galaxy is faint and pretty difficult to observe",
"type": "Spiral galaxy",
"url": "https://www.constellation-guide.com/wp-content/uploads/2021/07/NGC-1679.webp"
},
{
"constellations": "Camelopardalis",
"distance": 10700000,
"id": "IC 342",
"link": "https://en.wikipedia.org/wiki/IC_342",
"name": "The Hidden Galaxy",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Ic342bp.png/600px-Ic342bp.png"
},
{
"constellations": "Camelopardalis",
"distance": 11000000,
"id": "NGC 1569",
"link": "https://en.wikipedia.org/wiki/NGC_1569",
"name": "- is smaller than the Small Magellanic Cloud, but brighter than the latter or the Large Magellanic Cloud",
"type": "Irregular galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Starburst_in_a_Dwarf_Irregular_Galaxy.jpg/640px-Starburst_in_a_Dwarf_Irregular_Galaxy.jpg"
},
{
"constellations": "Camelopardalis",
"distance": 13300000000,
"id": "MACS0647-JD",
"link": "https://en.wikipedia.org/wiki/MACS0647-JD",
"name": "formed about 427 million years after the Big Bang",
"type": "Distant galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/Hubble_spots_candidate_for_most_distant_known_galaxy.jpg/498px-Hubble_spots_candidate_for_most_distant_known_galaxy.jpg"
},
{
"constellations": "Camelopardalis",
"distance": 2600000000,
"id": "MS 0735.6+7421",
"link": "https://en.wikipedia.org/wiki/MS_0735.6%2B7421#:~:text=MS%200735.6%2B7421%20is%20a,2.6%20billion%20light%2Dyears%20away",
"name": "- Galaxy cluster - the location of one of the largest central galactic black holes in the known universe",
"type": "Cluster galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/ed/MS_0735.jpg/598px-MS_0735.jpg"
},
{
"constellations": "Camelopardalis",
"distance": 291000000,
"id": "UGC 3697",
"link": "https://public.nrao.edu/gallery/warped-disk-of-galaxy-ugc-3697-2/",
"name": "Integral Sign Galaxy",
"type": "Spiral galaxy",
"url": "https://4.bp.blogspot.com/-RnEC4pul3JY/VZYJOBNzrUI/AAAAAAAAAz4/hL3zEQyeC00/s1600/ugc3697fullcolor_med.jpg"
},
{
"constellations": "Camelopardalis",
"distance": 63000000,
"id": "NGC 2655",
"link": "https://en.wikipedia.org/wiki/NGC_2655",
"name": "- the galaxy has asymmetric dust lanes in the centre of the galaxy, tidal arms and extended neutral hydrogen gas and may have recently experienced a merger",
"type": "Lenticular galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/NGC2655_S1_Crop_CB_HVLG_Crop_VBNR_GE_SCR_LHE2_CR505050100_SS2083_Levels.jpg/612px-NGC2655_S1_Crop_CB_HVLG_Crop_VBNR_GE_SCR_LHE2_CR505050100_SS2083_Levels.jpg"
},
{
"constellations": "Camelopardalis",
"distance": 70000000,
"id": "NGC 2146",
"link": "https://en.wikipedia.org/wiki/NGC_2146",
"name": "- galaxy's most conspicuous feature is the dusty lanes",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/NGC_2146_HST.jpg/640px-NGC_2146_HST.jpg"
},
{
"constellations": "Camelopardalis",
"distance": 9650000,
"id": "NGC 2403",
"link": "https://en.wikipedia.org/wiki/NGC_2403",
"name": "- an outlying member of the M81 Group",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/NGC2403-Subaru-HST-L.jpg/608px-NGC2403-Subaru-HST-L.jpg"
},
{
"constellations": "Cancer",
"distance": 2700,
"id": "M 67",
"link": "https://en.wikipedia.org/wiki/Messier_67",
"name": "King Cobra cluster ",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/M67_Mazur.jpg/636px-M67_Mazur.jpg"
},
{
"constellations": "Cancer",
"distance": 610,
"id": "M 44",
"link": "https://en.wikipedia.org/wiki/Beehive_Cluster",
"name": "Beehive Cluster",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/M44_47x300s-10%C2%B0C_O30_G0_PM_RGB_03032022.jpg/640px-M44_47x300s-10%C2%B0C_O30_G0_PM_RGB_03032022.jpg"
},
{
"constellations": "Canes Venatici",
"distance": 18000000,
"id": "NGC 4242",
"link": "https://en.wikipedia.org/wiki/NGC_4242",
"name": "- has an asymmetric center and a small galactic bar",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Dim_and_diffuse.jpg/543px-Dim_and_diffuse.jpg"
},
{
"constellations": "Canes Venatici",
"distance": 22000000,
"id": "NGC 4707",
"link": "https://en.wikipedia.org/wiki/NGC_4707",
"name": "- the blue smudges seen across the frame highlight regions of recent or ongoing star formation",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/NGC_4707_-_HST_-_Potw1651a.tif/lossy-page1-640px-NGC_4707_-_HST_-_Potw1651a.tif.jpg"
},
{
"constellations": "Canes Venatici",
"distance": 25000000,
"id": "M 51b",
"link": "https://en.wikipedia.org/wiki/NGC_5195",
"name": "- a dwarf galaxy (to the right) that is interacting with the Whirlpool Galaxy (to the left)",
"type": "Dwarf galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Messier51_sRGB.jpg/640px-Messier51_sRGB.jpg"
},
{
"constellations": "Canes Venatici",
"distance": 25000000,
"id": "NGC 4248",
"link": "https://esahubble.org/images/potw1730a/",
"name": "- is a member of the same group as the large spiral galaxy M 106 ",
"type": "Irregular galaxy",
"url": "https://cdn.spacetelescope.org/archives/images/screen/potw1730a.jpg"
},
{
"constellations": "Canes Venatici",
"distance": 30000000,
"id": "NGC 4631",
"link": "https://en.wikipedia.org/wiki/NGC_4631",
"name": "Whale Galaxy",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/c/cd/NGC_4631_I_FUV_g2006.jpg"
},
{
"constellations": "Canes Venatici",
"distance": 31000000,
"id": "M 51a",
"link": "https://en.wikipedia.org/wiki/Whirlpool_Galaxy",
"name": "Whirlpool Galaxy to the left and M 51b (a dwarf galaxy) to the right",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Messier51_sRGB.jpg/640px-Messier51_sRGB.jpg"
},
{
"constellations": "Canes Venatici",
"distance": 43000000,
"id": "NGC 4111",
"link": "https://en.wikipedia.org/wiki/NGC_4111",
"name": "- is characterised by a series of dusty filaments running through its centre",
"type": "Lenticular galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/5/52/Elegance_conceals_an_eventful_past.jpg"
},
{
"constellations": "Canis Major",
"distance": 2300,
"id": "NGC 4707",
"link": "https://en.wikipedia.org/wiki/Messier_41",
"name": "Little Beehive Cluster",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/M41-noao.jpg/600px-M41-noao.jpg"
},
{
"constellations": "Canis Major",
"distance": 3700,
"id": "NGC 2360",
"link": "https://en.wikipedia.org/wiki/NGC_2360",
"name": "Caroline's Cluster",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b3/NGC2360_-_SDSS_DR14_%28panorama%29.jpg/600px-NGC2360_-_SDSS_DR14_%28panorama%29.jpg"
},
{
"constellations": "Canis Major",
"distance": 81000000,
"id": "NGC 2207 and IC 2163",
"link": "https://en.wikipedia.org/wiki/NGC_2207_and_IC_2163",
"name": "- NGC 2207 is in the process of colliding and merging with IC 2163",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/NGC2207%2BIC2163.jpg/640px-NGC2207%2BIC2163.jpg"
},
{
"constellations": "Canis Minor",
"distance": 1730,
"id": "Abell 24",
"link": "https://en.wikipedia.org/wiki/NGC_2359",
"name": "- the white dwarf star in the center of the nebula has about 0.7 solar masses",
"type": "Planetary nebula",
"url": "https://www.deepskycorner.ch/pic/eso/a24_eso_vlt.jpg"
},
{
"constellations": "Capricornus",
"distance": 27000,
"id": "M 30",
"link": "https://en.wikipedia.org/wiki/Messier_30",
"name": "- about 93 light-years across",
"type": "Globular cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/M30_NASA.jpg/585px-M30_NASA.jpg"
},
{
"constellations": "Capricornus",
"distance": 400000000,
"id": "HCG 87",
"link": "https://en.wikipedia.org/wiki/HCG_87",
"name": "- distinguishes itself as one of the most compact groups of galaxies, hosting two active galactic nuclei and a starburst among its three members",
"type": "Group galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/aa/HCG_87.png/724px-HCG_87.png"
},
{
"constellations": "Carina",
"distance": 1300,
"id": "NGC 2516",
"link": "https://en.wikipedia.org/wiki/NGC_2516",
"name": "Southern Beehive or Sprinter",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/NGC_2516.jpg/600px-NGC_2516.jpg"
},
{
"constellations": "Carina",
"distance": 13700,
"id": "RCW 49",
"link": "https://en.wikipedia.org/wiki/RCW_49",
"name": "- Whirling Dervish Nebula - a dusty stellar nursery that contains more than 2,200 stars and is about 350 light years across",
"type": "Star-forming nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/ESO-The_Gum_29_Nebula-phot-37-08-fullres.jpg/477px-ESO-The_Gum_29_Nebula-phot-37-08-fullres.jpg"
},
{
"constellations": "Carina",
"distance": 20000,
"id": "Westerhout 2",
"link": "https://en.wikipedia.org/wiki/Westerlund_2",
"name": "- contains some of the hottest, brightest, and most massive stars known. Part of RCW 49",
"type": "Star cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/NASA_Unveils_Celestial_Fireworks_as_Official_Hubble_25th_Anniversary_Image.jpg/640px-NASA_Unveils_Celestial_Fireworks_as_Official_Hubble_25th_Anniversary_Image.jpg"
},
{
"constellations": "Carina",
"distance": 22500,
"id": "NGC 3603",
"link": "https://en.wikipedia.org/wiki/RCW_49",
"name": "- the most massive visible cloud of glowing gas and plasma, known as a H II region, in the Milky Way",
"type": "Star-forming nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Stellar_nursery_NGC_3603.jpg/476px-Stellar_nursery_NGC_3603.jpg"
},
{
"constellations": "Carina",
"distance": 31300,
"id": "NGC 2808",
"link": "https://en.wikipedia.org/wiki/NGC_2808",
"name": "- one of the Milky Way's most massive clusters",
"type": "Globular cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/38/NGC_2808_HST.jpg/598px-NGC_2808_HST.jpg"
},
{
"constellations": "Carina",
"distance": 7500,
"id": "HH 901, HH 902",
"link": "https://esahubble.org/images/heic1007a/",
"name": "- Mystic Mountain - part of the Carina Nebula",
"type": "Herbig–Haro nebula",
"url": "https://cdn.esahubble.org/archives/images/screen/heic1007a.jpg"
},
{
"constellations": "Carina",
"distance": 7500,
"id": "Part of NGC 3372",
"link": "https://en.wikipedia.org/wiki/Homunculus_Nebula",
"name": "Homunculus Nebula an emission and reflection nebula that lies inside the Carina Nebula",
"type": "Reflection nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/EtaCarinae.jpg/600px-EtaCarinae.jpg"
},
{
"constellations": "Carina",
"distance": 8500,
"id": "NGC 3372",
"link": "https://en.wikipedia.org/wiki/Carina_Nebula",
"name": "Carina Nebula",
"type": "Star-forming nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Carina_Nebula_by_Harel_Boren_%28151851961%2C_modified%29.jpg/577px-Carina_Nebula_by_Harel_Boren_%28151851961%2C_modified%29.jpg"
},
{
"constellations": "Cassiopeia",
"distance": 11090,
"id": "NGC 7635",
"link": "https://en.wikipedia.org/wiki/NGC_7635",
"name": "Bubble Nebula",
"type": "Emission nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/The_Bubble_Nebula_-_NGC_7635_-_Heic1608a.jpg/631px-The_Bubble_Nebula_-_NGC_7635_-_Heic1608a.jpg"
},
{
"constellations": "Cassiopeia",
"distance": 600,
"id": "IC 63",
"link": "https://hubblesite.org/contents/media/images/2018/42/4242-Image.html?news=true",
"name": "The ghost of Cassiopeia",
"type": "Emission nebula",
"url": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZXk_9i4N1UXwggkb9Xwi9ybuH1QXPy9xjGFwVM7HC-N9SVNBppnWNVQ6n3kJi1xd9yOY&usqp=CAUg"
},
{
"constellations": "Cassiopeia",
"distance": 6500,
"id": "IC 1795",
"link": "https://science.nasa.gov/ic-1795-fishhead-nebula",
"name": "Fishhead Nebula",
"type": "Emission nebula",
"url": "https://www.swagastro.com/uploads/2/3/3/7/23377322/fish_head_nebula.jpg"
},
{
"constellations": "Cassiopeia",
"distance": 6500,
"id": "Westerhout 5",
"link": "https://en.wikipedia.org/wiki/Westerhout_5",
"name": "Soul Nebula",
"type": "Emission nebula",
"url": "https://live.staticflickr.com/65535/51746362502_8484030686_c.jpg"
},
{
"constellations": "Cassiopeia",
"distance": 7500,
"id": "IC 1805",
"link": "https://en.wikipedia.org/wiki/Heart_Nebula",
"name": "Heart Nebula",
"type": "Emission nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Heart_Nebula_%282020-08-11%29.jpg/637px-Heart_Nebula_%282020-08-11%29.jpg"
},
{
"constellations": "Cassiopeia",
"distance": 7600,
"id": "NGC 7789",
"link": "https://en.wikipedia.org/wiki/NGC_7789",
"name": "Caroline's Rose",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/94/NGC7789HunterWilson.jpg/640px-NGC7789HunterWilson.jpg"
},
{
"constellations": "Cassiopeia",
"distance": 9300000,
"id": "Maffei 1",
"link": "https://en.wikipedia.org/wiki/Maffei_1",
"name": "- Once believed to be a member of the Local Group of galaxies, it is now known to belong to a separate group, the IC 342/Maffei Group",
"type": "Elliptical galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/0/0c/Maf1atlas.jpg"
},
{
"constellations": "Cassiopeia",
"distance": 9500,
"id": "NGC 281",
"link": "https://en.wikipedia.org/wiki/NGC_281",
"name": "Pacman Nebula",
"type": "Emission nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/PacMan_Nebula.jpg/772px-PacMan_Nebula.jpg"
},
{
"constellations": "Centaurus",
"distance": 10900000,
"id": "NGC 5253",
"link": "https://en.wikipedia.org/wiki/NGC_5253",
"name": "- located within the M83 Subgroup of the Centaurus A/M83 Group",
"type": "Irregular galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/A_Peculiar_Compact_Blue_Dwarf_Galaxy.jpg/640px-A_Peculiar_Compact_Blue_Dwarf_Galaxy.jpg"
},
{
"constellations": "Centaurus",
"distance": 12100000,
"id": "NGC 5102",
"link": "https://en.wikipedia.org/wiki/NGC_5102",
"name": "- located within the M83 Subgroup of the Centaurus A/M83 Group",
"type": "Lenticular galaxy",
"url": "https://theskylive.com/sky/deepsky/deepsky-images/104/ngc5102-dss2r-800.jpg"
},
{
"constellations": "Centaurus",
"distance": 13000000,
"id": "NGC 5128",
"link": "https://en.wikipedia.org/wiki/Centaurus_A",
"name": "Centaurus A",
"type": "Lenticular galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/ESO_Centaurus_A_LABOCA.jpg/569px-ESO_Centaurus_A_LABOCA.jpg"
},
{
"constellations": "Centaurus",
"distance": 130000000,
"id": "NGC 4650A",
"link": "https://en.wikipedia.org/wiki/NGC_4650A",
"name": "- one of only 100 known polar-ring galaxies",
"type": "Lenticular galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/NGC_4650A_I_HST2002.jpg/280px-NGC_4650A_I_HST2002.jpg"
},
{
"constellations": "Centaurus",
"distance": 15800,
"id": "NGC 5139",
"link": "https://en.wikipedia.org/wiki/Omega_Centauri",
"name": "Omega Centauri",
"type": "Globular cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e6/Omega_Centauri_by_ESO.jpg/638px-Omega_Centauri_by_ESO.jpg"
},
{
"constellations": "Centaurus",
"distance": 171000000,
"id": "A3526",
"link": "https://en.wikipedia.org/wiki/Centaurus_Cluster",
"name": "Centaurus Cluster",
"type": "Cluster galaxy",
"url": "http://www.atlasoftheuniverse.com/superc/a3526.jpg"
},
{
"constellations": "Centaurus",
"distance": 200000000,
"id": "NGC 4622",
"link": "https://en.wikipedia.org/wiki/NGC_5460",
"name": "Backward galaxy",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/NGC_4622HSTFull.jpg/527px-NGC_4622HSTFull.jpg"
},
{
"constellations": "Centaurus",
"distance": 2350,
"id": "NGC 5460",
"link": "https://en.wikipedia.org/wiki/NGC_5460",
"name": "- bright but loose cluster of intermediate age",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/6/6a/NGC_5460.png"
},
{
"constellations": "Centaurus",
"distance": 450000000,
"id": "ESO 325-G004",
"link": "https://esahubble.org/images/opo0708b/",
"name": "- is home to thousands of globular clusters, small compact groups of hundreds of thousands of stars that are gravitationally bound systems",
"type": "Elliptical galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Abell_S740%2C_cropped_to_ESO_325-G004.jpg/448px-Abell_S740%2C_cropped_to_ESO_325-G004.jpg"
},
{
"constellations": "Centaurus",
"distance": 4900,
"id": "NGC 3918",
"link": "https://en.wikipedia.org/wiki/NGC_3918",
"name": "Blue Planetary or The Southerner",
"type": "Planetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Planetary_nebula_NGC_3918.jpg/600px-Planetary_nebula_NGC_3918.jpg"
},
{
"constellations": "Centaurus",
"distance": 5500,
"id": "NGC 3766",
"link": "https://en.wikipedia.org/wiki/NGC_3766",
"name": "- located in the vast star-forming region known as the Carina molecular cloud",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Star_cluster_NGC_3766.jpg/500px-Star_cluster_NGC_3766.jpg"
},
{
"constellations": "Cepheus",
"distance": 12000000000,
"id": "S5 0014+81",
"link": "https://en.wikipedia.org/wiki/S5_0014%2B81",
"name": "- The object is an OVV (optically violent variable) quasar, a type of blazar. It belongs to the most energetic subclass of active galactic nuclei, which are produced by the rapid accretion of matter by a central supermassive black hole, changing gravitational energy to light energy that can be visible across cosmic distances. The image is an artist's impression",
"type": "Blazar galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Molecular_Torus_Surrounds_Black_Hole.jpg/640px-Molecular_Torus_Surrounds_Black_Hole.jpg"
},
{
"constellations": "Cepheus",
"distance": 1300,
"id": "NGC 7023",
"link": "https://en.wikipedia.org/wiki/Iris_Nebula",
"name": "Iris Nebula",
"type": "Reflection nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Iris1HunterWilson.jpg/480px-Iris1HunterWilson.jpg"
},
{
"constellations": "Cepheus",
"distance": 2400,
"id": "IC 1396",
"link": "https://en.wikipedia.org/wiki/Elephant%27s_Trunk_Nebula",
"name": "Misty Clover Cluster (with Elephant's Trunk Nebula)",
"type": "Emission nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Elephant%27s_Trunk_nebula.jpg/620px-Elephant%27s_Trunk_nebula.jpg"
},
{
"constellations": "Cepheus",
"distance": 25200000,
"id": "NGC 6946",
"link": "https://en.wikipedia.org/wiki/NGC_6946",
"name": "Fireworks Galaxy. Half of it also lies in Cygnus",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/SpiralGalaxy_NGC6946.jpg/492px-SpiralGalaxy_NGC6946.jpg"
},
{
"constellations": "Cepheus",
"distance": 2900,
"id": "NGC 7822",
"link": "https://en.wikipedia.org/wiki/NGC_7822",
"name": "young star forming complex",
"type": "Emission nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Cederblad_214_and_NGC_7822_Nebulae_-_Davidedemartin_6.jpg/380px-Cederblad_214_and_NGC_7822_Nebulae_-_Davidedemartin_6.jpg"
},
{
"constellations": "Cepheus",
"distance": 3500,
"id": "NGC 40",
"link": "https://en.wikipedia.org/wiki/NGC_40",
"name": "Bow Tie Nebula",
"type": "Planetary nebula",
"url": "https://freestarcharts.com/images/Articles/NGC/NGC40_Mandel_Block_NOAO.jpg"
},
{
"constellations": "Cepheus",
"distance": 8500,
"id": "NGC 7380",
"link": "https://en.wikipedia.org/wiki/NGC_7380",
"name": "The surrounding emission nebulosity is caled Wizard Nebula",
"type": "Open cluster",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Wizard_Nebula.jpg/624px-Wizard_Nebula.jpg"
},
{
"constellations": "Cepheus",
"distance": 9100,
"id": "NGC 7538",
"link": "https://en.wikipedia.org/wiki/NGC_7538",
"name": "Northern Lagoon nebula. Star-forming, emission and reflection nebula",
"type": "Emission nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/NGC_7538.jpg/640px-NGC_7538.jpg"
},
{
"constellations": "Cetus",
"distance": 10200000000,
"id": "Holm 15A",
"link": "https://en.wikipedia.org/wiki/Holmberg_15A",
"name": "Holmberg 15A",
"type": "Elliptical galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Holmberg_15A_chandra.jpg/600px-Holmberg_15A_chandra.jpg"
},
{
"constellations": "Cetus",
"distance": 10200000000,
"id": "JKCS 041",
"link": "https://en.wikipedia.org/wiki/JKCS_041",
"name": "- at least 19 members in the cluster",
"type": "Cluster galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/JKCS_041.jpg/782px-JKCS_041.jpg"
},
{
"constellations": "Cetus",
"distance": 1600,
"id": "NGC 246",
"link": "https://en.wikipedia.org/wiki/NGC_246",
"name": "Skull Nebula",
"type": "Planetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/NGC_246.jpg/600px-NGC_246.jpg"
},
{
"constellations": "Cetus",
"distance": 2380000,
"id": "IC 1613",
"link": "https://en.wikipedia.org/wiki/IC_1613",
"name": "- approaching Earth at 234 km/s",
"type": "Irregular galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Dwarf_galaxy_IC_1613.jpg/640px-Dwarf_galaxy_IC_1613.jpg"
},
{
"constellations": "Cetus",
"distance": 3040000,
"id": "WLM",
"link": "https://en.wikipedia.org/wiki/Wolf%E2%80%93Lundmark%E2%80%93Melotte",
"name": "Wolf–Lundmark–Melotte",
"type": "Irregular galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/The_WLM_galaxy_on_the_edge_of_the_Local_Group.jpg/640px-The_WLM_galaxy_on_the_edge_of_the_Local_Group.jpg"
},
{
"constellations": "Cetus",
"distance": 47000000,
"id": "M 77",
"link": "https://en.wikipedia.org/wiki/Messier_77",
"name": "Squid Galaxy",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Messier_77_spiral_galaxy_by_HST.jpg/610px-Messier_77_spiral_galaxy_by_HST.jpg"
},
{
"constellations": "Chamaeleon",
"distance": 130000000,
"id": "ESO 021-G004",
"link": "https://www.nasa.gov/image-feature/goddard/2019/hubble-views-a-galaxy-with-an-active-center",
"name": "- active Center",
"type": "Spiral galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/An_Active_Centre_ESO_021-G004.jpg/491px-An_Active_Centre_ESO_021-G004.jpg"
},
{
"constellations": "Chamaeleon",
"distance": 590,
"id": "Cha I",
"link": "https://en.wikipedia.org/wiki/Chamaeleon_complex",
"name": "Chamaeleon Cloud I",
"type": "Star-forming nebula",
"url": "https://telescope.live/sites/default/files/styles/photo_main/public/2022-08/Chamaeleon%20Dark%20Cloud%20Complex.jpg?itok=mudjpW4I"
},
{
"constellations": "Chamaeleon",
"distance": 6440,
"id": "NGC 3195",
"link": "https://en.wikipedia.org/wiki/NGC_3195",
"name": "- central star is a binary system",
"type": "Planetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/1/11/Ngc3195.jpg"
},
{
"constellations": "Circinus",
"distance": 13000000,
"id": "ESO 97-G13",
"link": "https://en.wikipedia.org/wiki/Circinus_Galaxy",
"name": "- the Circinus Galaxy is one of twelve large galaxies in the 'Council of Giants' surrounding the Local Group in the Local Sheet",
"type": "Seyfert galaxy",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/142_circinus_galaxy.png/600px-142_circinus_galaxy.png"
},
{
"constellations": "Circinus",
"distance": 6500,
"id": "NGC 5315",
"link": "https://en.wikipedia.org/wiki/NGC_5315",
"name": "- the central star may be a member of a binary system",
"type": "Planetary nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/NGC_5315HSTfull.jpg/600px-NGC_5315HSTfull.jpg"
},
{
"constellations": "Circinus",
"distance": 9100,
"id": "SN 185",
"link": "https://en.wikipedia.org/wiki/SN_185",
"name": "- observed in the year AD 185, likely a supernova",
"type": "Supernova-remnant nebula",
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d9/RCW_86.jpg/627px-RCW_86.jpg"
},
{
"constellations": "Columba",
"distance": 36400000,
"id": "NGC 1792",
"link": "https://en.wikipedia.org/wiki/NGC_1792",
"name": "- NGC 1792 is a member of the NGC 1808 cluster of galaxies",
"type": "Spiral galaxy",
"url": "https://cdn.esahubble.org/archives/images/screen/opo9812b.jpg"
},
{
"constellations": "Columba",
"distance": 36400000,
"id": "NGC 1808",
"link": "https://en.wikipedia.org/wiki/NGC_1808",
"name": "- suspected weak active galactic nucleus",
"type": "Spiral galaxy",
"url": "http://annesastronomynews.com/wp-content/uploads/2012/02/NGC-1808.jpg"
},
{
"constellations": "Coma Berenices",
"distance": 1190000000,
"id": "Malin 1",
"link": "https://en.wikipedia.org/wiki/Malin_1",
"name": "- the largest known spiral galaxy",
"type": "Spiral galaxy",
"url": "https://compote.slate.com/images/93cdc85f-b64b-4ea9-84d7-980e969b2faf.jpg?crop=590%2C388%2Cx0%2Cy0&width=1280"