-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathastronomy.bigb
999 lines (748 loc) · 25.8 KB
/
astronomy.bigb
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
= Astronomy
{wiki}
<Ciro Santilli> likes to learn astronomy a bit like he learns geography: go down some lists of "stuff that seems most relevant in some criteria to us!", possibly at different size scales e.g.:
* <stars nearest to the Sun>
* <brightest natural objects in the sky>
* <galaxies nearest the Milky Way>
* <black holes nearest to the Sun>
= Amateur astronomy
{parent=Astronomy}
{wiki}
= Good targets for amateur astronomy
{parent=Amateur astronomy}
Looking at most <astronomical object> through a <telescope> is boring because you only see a white ball or point every time. Such targets would likely only be interesting with <spectroscopy> analysis.
There are however some objects that you can see the structure of even with an <amateur telescope>, and that makes them very exciting.
Some good ones:
* <The Moon>, notably crater detail.
* <Saturn>. Clearly visible to the naked eye, but looks like a ball. But under an amateur telescope, you can clearly see that there is a disk. Clearly discerning that the disk is a ring, i.e. seeing the gap, is a bit harder though.
* <Jupiter>. Clearly visible to the naked eye, it is quite huge. The four <Galilean moons>, being <Earth>-sized, are incredibly clearly visible, tested on <Celestron NexStar 4SE> 25mm/9mm eyepiece. Colored gas clouds are hard though, you will likely just see it bright white. https://www.reddit.com/r/telescopes/comments/35xrbb/how_can_i_see_the_color_of_jupiter_with_my/
* a <double star>. As mentioned at https://www.relativelyinteresting.com/10-astronomical-targets-new-telescope/ https://en.wikipedia.org/wiki/Albireo[Albireo] are incredibly separated. Also it is is easy to find manually being in a major well known constellation. It is no wonder it is not quite even known if they are gravitationally bound or not!
* <Andromeda Galaxy>. This is when things start getting hard. You can see a faint cloud, but it is not super clear that it has a center.
One important understanding is that <it is not possible to see stars outside of the Milky Way by naked eye>.
It is at this point that you start to learn that pictures of faint objects require longer term exposure and averaging of the images taken. For this you need:
* a digital camera attached to the scope
* a computerized scope that slowly moves to track the point of interest
* image processing software that does the averaging
Just looking through the scope to immediately see something is not enough.
<video Andromeda Galaxy with only a Camera, Lens, & Tripod by Nebula Photos (2020)> gives a good notion of expectation adjustment.
Bibliography:
* https://www.relativelyinteresting.com/10-astronomical-targets-new-telescope/
= Astronomical measurement unit
{parent=Astronomy}
{tag=Unit of measurement}
= Astronomical unit
{parent=Astronomical measurement unit}
{title2=AU}
{title2=distance to the Sun}
{wiki}
= Apparent magnitude
{parent=Astronomical measurement unit}
{wiki}
= Brightest natural objects in the sky
{parent=Apparent magnitude}
{wiki=List_of_brightest_natural_objects_in_the_sky}
https://en.wikipedia.org/wiki/List_of_brightest_natural_objects_in_the_sky
= Star outside the Milky Way
{parent=Brightest natural objects in the sky}
<It is not possible to see stars outside of the Milky Way by naked eye>.
With <telescopes> however, it is possible. https://www.quora.com/Can-we-distinguish-individual-stars-in-other-galaxies-or-would-it-be-equivalent-to-say-we-know-there-are-other-forests-of-stars-galaxies-but-we-cant-tell-the-individual-trees-stars-What-is-the-farthest-individual/answer/Jerzy-Micha%C5%82-Pawlak contains an amazing answer that mentions two special cases of the furthest ones:
* <#gravitational lensing> observation
* a star that is far but visible because its light is reflected by a nearby <#nebulae>
But what we can definitely see are <#globular clusters> of galaxies. E.g. the article https://en.wikipedia.org/wiki/Messier_87 basically gauges the size of galaxies by the number of <#globular clusters> that they contain.
= It is not possible to see stars outside of the Milky Way by naked eye
{parent=Brightest natural objects in the sky}
We can't see individual stars outside of the <Milky Way>:
* https://physics.stackexchange.com/questions/26023/do-all-the-individual-stars-that-we-can-see-in-the-night-sky-belong-to-milky-way
* https://earthsky.org/tonight/can-we-see-stars-outside-our-milky-way-galaxy/
Any single star outside of the Milky Way cannot be seen.
The <Large Magellanic Cloud> stands out as the brightest thing we can see from outside the <Milky Way> by far!
= Proper motion
{parent=Astronomical measurement unit}
{wiki}
Some stars are so close that we can actually see their angles move with time due to the relative motion between them and the <Sun>, e.g. <Proxima Centauri>!
= Astrophysics
{parent=Astronomy}
{wiki}
A fancy name for <astronomy> ;-)
= Cosmic ray
{parent=Astrophysics}
{tag=1936 Nobel Prize in Physics}
{wiki}
\Video[https://www.youtube.com/watch?v=PCB8nv4fatc]
{title=CosmicPI: Detecting Cosmic Rays with a <Raspberry Pi> by <Marco Reps> (2021)}
= Particle discovered with cosmic rays
{parent=Cosmic ray}
* <positron>, later confirmed with <gamma ray> experiments by <Carl David Anderson>
* <muon>
* <pion>
* <kaon>
= Mountain used for cosmic ray experiments
{parent=Cosmic ray}
* https://en.wikipedia.org/wiki/Mount_Wilson_(California)[Mount Wilson]
* https://en.wikipedia.org/wiki/Pic_du_Midi_de_Bigorre[Pic du Midi]
* https://en.wikipedia.org/wiki/Chacaltaya[Chacaltaya]
= Ultra-high-energy cosmic ray
{parent=Cosmic ray}
{wiki}
Sometimes it feels like this could be how we finally make experiments to see what the <theory of everything> looks like, a bit like the first high energy experiments were from less exotic <cosmic rays>.
= Greisen-Zatsepin-Kuzmin limit
{c}
{parent=Ultra-high-energy cosmic ray}
{wiki=Greisen–Zatsepin–Kuzmin_limit}
= Oh-My-God particle
{parent=Ultra-high-energy cosmic ray}
{wiki}
= Age of the universe
{parent=Astronomy}
{wiki}
<Surely You're Joking, Mr. Feynman> chapter An Offer You Must Refuse (a play on words on <The Godfather (1972)>) has an interesting historical mention from the early 1950s while at <Caltech>:
\Q[
The next day, I had the greatest luck in making a decision. God must have set it up to help me decide. I was walking to my office, and a guy came running up to me and said, "Hey, Feynman! Did you hear what happened? Baade found that there are two different populations of stars! All the measurements we had been making of the distances to the galaxies had been based on Cephid variables of one type, but there's another type, so the universe is twice, or three, or even four times as old as we thought!"
I knew the problem. In those days, the <age of Earth>[earth appeared to be older] than the universe. The earth was four and a half billion, and the universe was only a couple, or three billion years old. It was a great puzzle. And this discovery resolved all that: The universe was now demonstrably older than was previously thought. And I got this information right away - the guy came running up to me to tell me all this.
]
= Big Bang
{c}
{parent=Age of the universe}
{wiki}
= Cosmic microwave background
{parent=Big Bang}
{tag=1978 Nobel Prize in Physics}
{wiki}
= CMB
{c}
{synonym}
{title2}
If you point a <light> detector to any empty area of the sky, you will still get some light.
The existence of this is quite mind blowing, since "there is nothing there emitting that light".
To make sense of how it is possible to see this light, you can think of the universe as the <expanding raisin bread model>, but it expands faster than light (thus the existence of the <cosmological event horizon>), so we are still receiving light form the middle, not the borders.
<CMB> is basically perfectly <black-body radiation> at 2.725 48 <Kelvin>[K], but it has small variations with variations of the order of 200 microKelvin: <cosmic microwave background anisotropy>.
= Cosmic microwave background anisotropy
{parent=Cosmic microwave background}
{tag=2006 Nobel Prize in Physics}
There is a slight variation in temperature of <CMB> across the sky of the order of 200 microKelvin. It is small to the ~2.7 K average temperature, but it can be measured.
If the <initial conditions> of the <big bang> and the <laws of physics> were perfectly symmetric, then we could expect the <universe> to just be one perfectly uniform boring soup.
But instead some asymetry made all the fun weird things we see today happen eventually, like <galaxies> and <life>.
And the <cosmic microwave background> serves as a way for us to look back in time to the early conditions of the universe, as it was set in stone as soon as the universe became transparent to this <light> during <recombination (cosmology)>.
Or if you want to get poetic, it is the closest we can ever get to listening to the original word of <God> when he setup the <initial conditions> of the universe.
The ansiotropies of CMB is the ultimate astronomical compass we will ever have, as it is the thing with the least <proper motion>.
\Image[https://upload.wikimedia.org/wikipedia/commons/3/3c/Ilc_9yr_moll4096.png]
{title=<Cosmic microwave background anisotropy> measured by the <Wilkinson Microwave Anisotropy Probe>}
{disambiguate=ansiotropy}
= Wilkinson Microwave Anisotropy Probe
{c}
{parent=Cosmic microwave background anisotropy}
{title2=2001-2010}
{title2=WMAP}
{wiki}
\Image[https://upload.wikimedia.org/wikipedia/commons/3/3c/Ilc_9yr_moll4096.png]
{title=<Cosmic microwave background anisotropy> measured by the <Wilkinson Microwave Anisotropy Probe>}
= Epoch
{disambiguate=astronomy}
{parent=Big Bang}
If looking through these don't make you think of the <book of genesis> then nothing will.
= Recombination
{disambiguate=cosmology}
{parent=Epoch (astronomy}
{wiki}
= Expansion of the universe
{parent=Big Bang}
{wiki}
= Cosmological event horizon
{parent=Expansion of the universe}
{wiki}
<expansion of the universe>
= Expanding raisin bread model
{parent=Expansion of the universe}
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Raisinbread.gif/200px-Raisinbread.gif]
= Inflation
{disambiguate=cosmology}
{parent=Expansion of the universe}
{wiki}
= Astronomical object
{parent=Astronomy}
{wiki}
= Galaxy
{parent=Astronomical object}
{wiki}
= Messier object
{c}
{parent=Astronomical object}
{title2=1774}
{wiki}
What an awesome list the dude compiled. Contains many of the features we care the most about of the sky, since of course, <apparent magnitude> is a big determinant of that.
= Planetary system
{parent=Astronomical object}
{wiki}
= Planet
{parent=Astronomical object}
{wiki}
= Star
{parent=Astronomical object}
{wiki}
= Double star
{parent=Star}
{wiki}
= Star system
{parent=Star}
{wiki}
= Polaris
{c}
{parent=Star system}
{title2=433 ly}
{title2=1.8m}
{wiki}
= North Star
{c}
{synonym}
{title2}
= Stellar classification
{parent=Star}
{wiki}
= Neutron star
{parent=Stellar classification}
{wiki}
= Main sequence
{parent=Stellar classification}
{wiki}
= Supernova
{parent=Stellar classification}
{wiki}
= Black hole
{parent=Stellar classification}
{wiki}
= Micro black hole
{parent=Black hole}
{wiki}
= Black holes nearest to the Sun
{parent=Black hole}
{wiki=List_of_nearest_known_black_holes}
Interesting to note that there are quite a few nearer than <Sagittarius A>, as of 2022 we know of one at 1.5 <kly>: https://universemagazine.com/en/discovered-the-closest-black-hole-to-the-sun/
It is interesting that a few months earlier there seemed to be no known specific black holes in the <Milky Way>: https://www.nasa.gov/feature/goddard/2022/hubble-determines-mass-of-isolated-black-hole-roaming-our-milky-way-galaxy although their count is estimated to be in the hundreds of millions.
For comparison, remember that the <Milky Way> is 185 <kly> in diameter x 2 <kly> thick.
= Constellation
{c}
{parent=Astronomy}
{wiki}
= IAU designated constellations
{c}
{parent=Constellation}
{wiki}
Cover up the entire sky in a compatible way with the traditional constellations. They are also very square, the boundaries consisting only of vertical and horizontal lines on the sphere.
= Asterism
{disambiguate=astronomy}
{parent=Constellation}
{wiki}
Basically a mini-<Constellation>.
= Big Dipper
{c}
{parent=Asterism (astronomy)}
{wiki}
= Space exploration
{parent=Astronomy}
{wiki}
= Space exploration organization
{parent=Space exploration}
{wiki}
= NASA
{c}
{parent=Space exploration organization}
{wiki}
= Telescope
{c}
{parent=Astronomy}
{wiki}
= Amateur telescope
{parent=Telescope}
{tag=Amateur astronomy}
= Amateur telescope vendor
{parent=Amateur telescope}
= Celestron
{c}
{parent=Amateur telescope vendor}
{wiki}
https://www.celestron.com/
= Celestron NexStar
{c}
{parent=Celestron}
\Video[https://www.youtube.com/watch?v=QDXyBIRooRA]
{title=Celestron NexStar SE Tutorial by Astronomia UK (2022)}
{description=Meh! ;-)}
= Celestron NexStar 4SE
{c}
{parent=Celestron NexStar}
Alignment is impossible to get right! Tried 3 star, 2 named stars, and neither worked well.
* https://www.reddit.com/r/Astronomy/comments/20bot0/what_can_i_expect_to_see_with_a_celestron_4se/
= Universe
{c}
{parent=Astronomy}
{wiki}
= Virgo Supercluster
{parent=Universe}
Composed mostly of the <Virgo cluster> and the <Local group>.
= Virgo cluster
{c}
{parent=Virgo Supercluster}
{wiki}
= Galaxy in the Virgo cluster
{parent=Virgo cluster}
Some major ones:
* <Messier 49>
* <Messier 86>
* <Messier 87>
https://noirlab.edu/public/images/noao-m49/?nocache=true also lists: M58, M59, M60, M61, M84, M85, M86, M87, M88, M89, M90, M91, M98, M99, and M100 so lots of large and easily observable galaxies in the area.
= Messier 49
{c}
{parent=Galaxy in the Virgo cluster}
{tag=Messier object}
{title2=M49}
{title2=56 Mly}
{title2=8.4 m}
{wiki}
= Messier 86
{c}
{parent=Galaxy in the Virgo cluster}
{tag=Messier object}
{title2=M86}
{title2=52 Mly}
{title2=8.9 m}
{wiki}
= Messier 87
{c}
{parent=Galaxy in the Virgo cluster}
{tag=Messier object}
{title2=M87}
{title2=53 Mly}
{title2=8.6 m}
{wiki}
= Local group
{c}
{parent=Virgo Supercluster}
{wiki}
The basically composed of only the <Andromeda Galaxy> and the <Milky Way>. Every other galaxy is a satellite of those two.
\Image[https://upload.wikimedia.org/wikipedia/commons/1/1c/Local_Group_and_nearest_galaxies.jpg]
= Galaxy in the Local Group
{parent=Local group}
= Andromeda Galaxy
{c}
{parent=Galaxy in the Local Group}
{tag=Messier object}
{title2=2.5 Mly}
{title2=3.44 m}
{wiki}
= Messier 31
{c}
{synonym}
{title2}
First proper <galaxies nearest the Milky Way>[nearest galaxy to the Milky Way]. Everything in the middle in the <Local group> is either a satellite of the Milky Way or Andromeda.
Many Andromeda satellite galaxies are simply numbered Andromeda II, Andromeda III and so on.
As described on Wikipedia, the observational history of Andromeda is fascinating. Little by little, people noticed that it had a different nature to many other objects observed on the sky, and the hypothesis that there are other galaxies like ours grew in force.
Part of our fascination with Andromeda is due to how similar in size and shape and close it is to the Milky Way.
It is clearly the only thing so large and so close.
Andromeda is, without a doubt, our sister galaxy.
One can't help but wonder if there is some <alien> looking back at us when we are looking at them through our <telescope>.
Andromeda is also the furthest object from <Earth> that can be seen with the naked eye.https://www.relativelyinteresting.com/10-astronomical-targets-new-telescope/{ref} Not surprising, as it literally shines with the strength of a trillion suns!
\Image[https://web.archive.org/web/20220713191240im_/https://cdn.spacetelescope.org/archives/images/thumb700x/heic1502a.jpg]
{title=Highest resolution image of Andromeda as of 2015, taken by Hubble}
{description=Source also says it was the highest resolution image every released by the Hubble. This goes to show how fascinated people are by Andromeda. And there is good reason for it.}
{source=https://esahubble.org/images/heic1502a/}
\Video[https://www.youtube.com/watch?v=3mWSp3YnuLI]
{title=Andromeda Shun from <Saint Seiya> performing his Nebula Chain attack}
{description=The original <Japanese (language)> music actually says "Nebula Chain" in English. The <Andromeda Galaxy> is shown on the back, the chain appears to go all the way to it and back towards the evil guys' head. Not very <relativistic>, but so be it.}
\Video[https://youtu.be/pXcRKoxTPVg?t=973]
{title=<Andromeda Galaxy> with only a Camera, Lens, & Tripod by Nebula Photos (2020)}
{description=Good job! Gives a good idea of the low end approach.}
= Milky Way
{c}
{parent=Local group}
{title2=185 x 2 kly}
{wiki}
\Image[https://web.archive.org/web/20201010121906im_/http://upload.wikimedia.org/wikipedia/commons/thumb/1/1d/Milky_Way_Arms.svg/614px-Milky_Way_Arms.svg.png]
{title=Arms of the <Milky Way>}
{source=https://en.wikipedia.org/wiki/File:Milky_Way_Arms.svg}
= Galaxies nearest the Milky Way
{parent=Milky Way}
{wiki=List_of_nearest_galaxies}
The first proper galaxy near the <Milky Way> is the <Andromeda Galaxy>. Everything else in the middle is a satellite of either of of those.
= Milky Way satellite galaxy
{c}
{parent=Milky Way}
= Large Magellanic Cloud
{c}
{parent=Milky Way satellite galaxy}
{title2=14 kly}
{title2=0.9 m}
{wiki}
One of the <brightest natural objects in the sky>, and by far the brightest not in the <Milky Way>! This is partly because it is relatively close to us.
= Sagittarius A
{c}
{parent=Milky Way}
{wiki}
= Sagittarius A*
{id=sagittarius-a-star}
{c}
{parent=Sagittarius A}
{tag=Black hole}
{title2=Black hole in center of Milky Way}
{title2=27 kly}
{wiki}
= Zone of Avoidance
{parent=Milky Way}
{title2=ZOA}
{wiki=List_of_nearest_galaxies}
= Arm of the Milky Way
{c}
{parent=Milky Way}
{wiki}
= Orion Arm
{c}
{parent=Arm of the Milky Way}
{title2=3500 x 10000 ly}
{wiki}
= Alpha Centauri
{c}
{parent=Orion Arm}
{tag=Star system}
{title2=0.01 m}
{wiki}
= Proxima Centauri
{c}
{parent=Alpha Centauri}
{tag=Stars nearest to the Sun}
{title2=4 ly}
{title2=11 m}
{wiki}
= Nearest star to the Sun
{synonym}
{title2}
It is so close that we can notice its <proper motion>, and its distance to us will vary significantly across a few tens of thousands of years!
= Sirius
{c}
{parent=Orion Arm}
{tag=Star system}
{title2=9 ly}
{title2=-1.5 m}
{wiki}
This is quite close! But as mentioned at: <stars nearest to the Sun>, there are several others nearby. Notably <Sirius> at 9 <ly>, the brightest star in the sky as of 2020.
= Solar System
{c}
{parent=Orion Arm}
{wiki}
= Model of the solar system
{parent=Solar System}
{wiki}
= Geocentric model
{parent=Model of the solar system}
{wiki}
= Copernican heliocentrism
{c}
{parent=Model of the solar system}
{wiki}
= Sun
{c}
{parent=Solar System}
{tag=Star}
{wiki}
= Stars nearest to the Sun
{parent=Sun}
\Image[https://upload.wikimedia.org/wikipedia/commons/5/53/Nearest_stars_rotating_red-green.gif]
\Image[https://upload.wikimedia.org/wikipedia/commons/e/e9/Near-stars-past-future-en.svg]
{title=Distance of <stars nearest to the Sun> as function of time}
https://upload.wikimedia.org/wikipedia/commons/e/e9/Near-stars-past-future-en.svg
Some notable ones:
* <Proxima Centauri>, the nearest one, at 4 <ly>. It is part of the <Alpha Centauri> <star system>, which contains two other stars at very similar distances as well, and their relative distances to earth will change positions in a few tens of thousands of years.
* <Sirius>, the brightest star in the sky at 9 <ly>
= Planet in the Solar System
{parent=Solar System}
{wiki}
= Mercury
{disambiguate=planet}
{c}
{parent=Planet in the Solar System}
{wiki}
= Venus
{c}
{parent=Planet in the Solar System}
{wiki}
= Earth
{c}
{parent=Planet in the Solar System}
{wiki}
= Atmosphere of Earth
{parent=Earth}
{wiki}
= Earth's atmosphere
{synonym}
\Include[continent]{parent=earth}
= Moon
{c}
{parent=Earth}
{wiki}
= The Moon
{c}
{synonym}
= Giant-impact hypothesis
{parent=Moon}
{wiki}
= Earth science
{c}
{parent=Earth}
{wiki}
= Geologic time scale
{c}
{parent=Earth science}
{wiki}
Good list: https://en.wikipedia.org/wiki/Geologic_time_scale#Terminology
= Age of Earth
{parent=Geologic time scale}
{title2=4.5 Bya}
{wiki}
= Extinction event
{parent=Geologic time scale}
{wiki}
= Cretaceous-Paleogene extinction event
{c}
{parent=Extinction event}
{title2=66 Mya}
{title2=Chicxulub crater meteor}
{wiki=Cretaceous–Paleogene extinction event}
= K-Pg extinction event
{c}
{synonym}
{title2}
= Permian-Triassic extinction event
{c}
{parent=Extinction event}
{title2=252 Mya}
{title2=Siberian Traps volcanoes}
{wiki=Permian–Triassic extinction event}
= P-T extinction event
{c}
{synonym}
{title2}
As usual, blame the <Russians>.
= Great Oxidation Event
{c}
{parent=Extinction event}
{title2=2.5 Bya}
{wiki}
<archean>/<proterozoic> barrier.
= Geologic time scale hierarchy
{parent=Geologic time scale}
= Eon
{parent=Geologic time scale hierarchy}
{wiki}
= Phanerozoic
{parent=Eon}
{title2=541 Mya-today}
{title2=visible life}
{wiki}
The term "visible life" refers to multicellular from before people knew there was life in the <proterozoic>.
= Cenozoic
{parent=Phanerozoic}
{tag=Era}
{title2=65 Bya - today}
{title2=new life}
{title2=K-Pg Extinction - today}
{wiki}
= Paleolithic
{c}
{parent=Cenozoic}
{title2=3.3 Mya - 12 kya}
{title2=tools}
{wiki}
This period is similar to the <Quaternary>, but it also includes tool usage by close relatives of <humans> which were not humans yet.
It ends together with the <pleistocene>.
= Quaternary
{c}
{parent=Cenozoic}
{title2=2.5 Mya - today}
{title2=humans}
{wiki}
= Holocene
{parent=Quaternary}
{title2=12 kya - agriculture - today}
{wiki}
= Pleistocene
{parent=Quaternary}
{title2=2.5 Mya - 12 kya}
{title2=humans emerge - agriculture}
{wiki}
Agriculture is not the official definition of the age. But it is good enough. Likely related to the official end of glaciations thing.
= Mesozoic
{parent=Phanerozoic}
{tag=Era}
{title2=252 Bya - 65 Mya}
{title2=middle life}
{title2=P-T Extinction to K-Pg Extinction}
{title2=dinosaurs}
{wiki}
= Paleozoic
{parent=Phanerozoic}
{tag=Era}
{title2=541 Mya - 252 Mya}
{title2=old life}
{title2=Cambrian explosion to P-T Extinction}
{wiki}
End: <Permian-Triassic extinction event>.
= Proterozoic
{parent=Eon}
{title2=2.5 Bya - 541 Mya}
{title2=old life}
{title2=oxygen to Cambrian explosion}
{wiki}
= Archean
{parent=Eon}
{title2=4-2.5 Bya}
{title2=ancient life}
{wiki}
= Hadean
{parent=Eon}
{title2=4.5-4 Bya}
{title2=Hell}
{title2=no life}
{wiki}
No life, earth too hot, until formation of water.
= Era
{parent=Geologic time scale hierarchy}
{wiki}
= Period
{disambiguate=geology}
{parent=Geologic time scale hierarchy}
{wiki}
= Atmospheric science
{parent=Earth science}
{wiki}
= Climatology
{parent=Atmospheric science}
{wiki}
= Climate change
{parent=Climatology}
{wiki}
= Global warming
{parent=Climate change}
= Meteorology
{parent=Atmospheric science}
{wiki}
= Rain
{parent=Meteorology}
{wiki}
= Earth's magnetic field
{parent=Earth science}
{wiki}
= Geology
{parent=Earth science}
{wiki}
= Mineralogy
{parent=Earth science}
{wiki}
= Mineral
{parent=Mineralogy}
{wiki}
= Rock
{disambiguate=geology}
{parent=Mineral}
{wiki}
= Rock
{synonym}
= Sedimentary rock
{parent=Rock (geology)}
{wiki}
= List of rocks
{parent=Rock (geology)}
= Limestone
{parent=List of rocks}
{tag=Sedimentary rock}
{wiki}
Made up mostly of <calcium carbonate>.
= Mine
{parent=Mineralogy}
{wiki}
= Mining
{parent=Mine}
{wiki}
= List of mines
{parent=Mine}
{wiki}
= Jáchymov
{parent=List of mines}
{tag=Czech Republic}
{wiki}
= Joachimsthal
{synonym}
{title2}
"Joachimsthal" is the <German> for it. Note how it is just near the modern frontier between <Germany> and the <Czech Republic>.
It is from <ore> of this mine that <Uranium> and <Radium> were discovered.
https://en.wikipedia.org/w/index.php?title=Uranium&oldid=1243907294#Pre-discovery_use[]:
\Q[In the early 19th century, the world's only known sources of <uranium ore> were these mines.]
Apparently the region was a <silver> mining center:
\Q[Starting in the late Middle Ages, <pitchblende> was extracted from the Habsburg silver mines in Joachimsthal, Bohemia (now Jáchymov in the Czech Republic), and was used as a coloring agent in the local glassmaking industry]
= Falun mine
{parent=List of mines}
{tag=Sweden}
{wiki}
A hugely important <copper> mine in Sweden.
<Selenium> was initially discovered from ore from this mine.
\Image[https://upload.wikimedia.org/wikipedia/commons/6/66/Stora_st%C3%B6ten_panorama_2010.jpg]
\Image[https://upload.wikimedia.org/wikipedia/commons/d/d2/Falu_gruva.jpg]
\Video[https://www.youtube.com/watch?v=4aOyLYHIiD4]
{title=Mining Area of the Great Copper Mountain in Falun, Sweden by World Heritage Journeys}
\Video[https://www.youtube.com/watch?v=RUmEScYs6cg]
{title=Falun mine tour by Focus by Sohaib}
{description=Not English, but we can see the tour images at least.}
= Ore
{parent=Mineralogy}
{wiki}
= Mars
{c}
{parent=Planet in the Solar System}
{wiki}
= Mars exploration
{c}
{parent=Mars}
= Mars sample-return mission
{c}
{parent=Mars exploration}
{tag=Space exploration}
{wiki}
Not done yet as of 2020! Will be done one day for sure.
= Human mission to Mars
{parent=Mars exploration}
{wiki}
= Jupiter
{c}
{parent=Planet in the Solar System}
{wiki}
= Galilean moons
{c}
{parent=Jupiter}
{title2=1610}
{wiki}
Can you imagine when those guys started to see moons in other planets? They must have <shat bricks>. What better evidence can you have that the <geocentric model> could be wrong?
\Image[https://upload.wikimedia.org/wikipedia/commons/4/4f/Moons_of_solar_system_v7.jpg]
{height=800}
= Saturn
{c}
{parent=Planet in the Solar System}
{title2=antiquity}
{title2=rings 1655}
{wiki}
= Uranus
{c}
{parent=Planet in the Solar System}
{title2=1781}
{wiki}
The first planet not known since antiquity.
= Neptune
{c}
{parent=Planet in the Solar System}
{title2=1846}
{wiki}
Quite cool how it was discoverd by the perturbation of <Uranus>' orbit.
= Dwarf planet in the solar system
{c}
{parent=Planet in the Solar System}
= Pluto
{c}
{parent=Dwarf planet in the solar system}
{title2=1930}
{wiki}