-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmilestones.json
More file actions
2627 lines (2626 loc) · 83.4 KB
/
milestones.json
File metadata and controls
2627 lines (2626 loc) · 83.4 KB
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
[
{
"month": 1,
"day": 1,
"year": 2024,
"title": "XPoSat Satellite Launch",
"description": "India successfully launched the XPoSat satellite to study cosmic X-rays.",
"country": "India"
},
{
"month": 1,
"day": 2,
"year": 1959,
"title": "Luna 1 Launched",
"description": "The USSR launched Luna 1, the first spacecraft to reach the vicinity of the Moon.",
"country": "USSR"
},
{
"month": 1,
"day": 3,
"year": 2019,
"title": "Chang'e 4 Moon Landing",
"description": "China's Chang'e 4 became the first spacecraft to land on the far side of the Moon.",
"country": "China"
},
{
"month": 1,
"day": 4,
"year": 2004,
"title": "Spirit Rover Lands on Mars",
"description": "NASA's Spirit rover landed on Mars, beginning its exploration of the Martian surface.",
"country": "USA"
},
{
"month": 1,
"day": 5,
"year": 1972,
"title": "NASA Announces Shuttle Program",
"description": "President Nixon announced the development of NASA's Space Shuttle program.",
"country": "USA"
},
{
"month": 1,
"day": 6,
"year": 1966,
"title": "Luna 9 Launch",
"description": "The USSR launched Luna 9, which later became the first spacecraft to achieve a soft landing on the Moon.",
"country": "USSR"
},
{
"month": 1,
"day": 7,
"year": 1610,
"title": "Galileo Discovers Jupiter's Moons",
"description": "Galileo Galilei observed three of Jupiter's moons for the first time through his telescope.",
"country": "Italy"
},
{
"month": 1,
"day": 8,
"year": 2001,
"title": "INSAT-3C Launched",
"description": "India launched INSAT-3C to provide communication services across the Indian region.",
"country": "India"
},
{
"month": 1,
"day": 9,
"year": 1992,
"title": "First Discovery of Exoplanets",
"description": "Two planets were discovered orbiting the pulsar PSR B1257+12, marking the first confirmed detection of exoplanets.",
"country": "World"
},
{
"month": 1,
"day": 10,
"year": 1962,
"title": "First Satellite from India Tracked",
"description": "India tracked an American satellite for the first time, marking early involvement in global space activity.",
"country": "India"
},
{
"month": 1,
"day": 11,
"year": 2008,
"title": "PSLV-C10 Launch",
"description": "ISRO launched the PSLV-C10 carrying the Israeli TecSAR satellite.",
"country": "India"
},
{
"month": 1,
"day": 12,
"year": 2003,
"title": "INSAT-3A Launch",
"description": "ISRO launched INSAT-3A for telecommunications, television broadcasting, and weather forecasting.",
"country": "India"
},
{
"month": 1,
"day": 13,
"year": 1993,
"title": "INSAT-2B Launched",
"description": "India launched INSAT-2B, a multipurpose satellite for meteorology and telecommunications.",
"country": "India"
},
{
"month": 1,
"day": 14,
"year": 2005,
"title": "Huygens Lands on Titan",
"description": "ESA's Huygens probe landed on Saturn's moon Titan, transmitting data about its surface.",
"country": "ESA"
},
{
"month": 1,
"day": 15,
"year": 2006,
"title": "Stardust Returns to Earth",
"description": "NASA’s Stardust mission returned with dust samples from comet Wild 2.",
"country": "USA"
},
{
"month": 1,
"day": 16,
"year": 2003,
"title": "Final Launch of Space Shuttle Columbia",
"description": "Space Shuttle Columbia launched for its final mission STS-107, which ended in tragedy.",
"country": "USA"
},
{
"month": 1,
"day": 17,
"year": 1997,
"title": "ISRO PSLV-C1 Launch",
"description": "ISRO successfully launched PSLV-C1 carrying IRS-1D, improving India's Earth observation capabilities.",
"country": "India"
},
{
"month": 1,
"day": 18,
"year": 1986,
"title": "Launch of SPOT-1",
"description": "France launched SPOT-1, a satellite for Earth observation.",
"country": "France"
},
{
"month": 1,
"day": 19,
"year": 2006,
"title": "New Horizons Launch",
"description": "NASA launched New Horizons on a mission to study Pluto and the Kuiper Belt.",
"country": "USA"
},
{
"month": 1,
"day": 20,
"year": 1998,
"title": "India-US Space Agreement",
"description": "India and USA signed an agreement for cooperation in civil space activities.",
"country": "India/USA"
},
{
"month": 1,
"day": 21,
"year": 1960,
"title": "Little Joe 1B Launch",
"description": "NASA launched Little Joe 1B to test the Mercury capsule escape system.",
"country": "USA"
},
{
"month": 1,
"day": 22,
"year": 2002,
"title": "INSAT-3C Launch",
"description": "ISRO launched INSAT-3C for improved telecommunications across India.",
"country": "India"
},
{
"month": 1,
"day": 23,
"year": 2000,
"title": "ISRO PSLV-C2 Launch",
"description": "India launched PSLV-C2 carrying IRS-P4 and two foreign satellites, highlighting global collaboration.",
"country": "India"
},
{
"month": 1,
"day": 24,
"year": 1986,
"title": "Voyager 2 Flyby of Uranus",
"description": "NASA's Voyager 2 made its closest approach to Uranus, sending back the first close-up images.",
"country": "USA"
},
{
"month": 1,
"day": 25,
"year": 2007,
"title": "India Launches Cartosat-2",
"description": "ISRO launched Cartosat-2 for high-resolution Earth observation.",
"country": "India"
},
{
"month": 1,
"day": 26,
"year": 2001,
"title": "Republic Day Honours Indian Space Scientists",
"description": "Notable space scientists awarded Padma honors for contributions to ISRO.",
"country": "India"
},
{
"month": 1,
"day": 27,
"year": 1967,
"title": "Apollo 1 Tragedy",
"description": "Fire during a pre-launch test killed all three Apollo 1 astronauts.",
"country": "USA"
},
{
"month": 1,
"day": 28,
"year": 1986,
"title": "Challenger Disaster",
"description": "NASA's Space Shuttle Challenger broke apart shortly after launch, killing all seven astronauts.",
"country": "USA"
},
{
"month": 1,
"day": 29,
"year": 1989,
"title": "ISRO Launches SROSS-A",
"description": "India launched the first satellite in the SROSS series to study X-rays and gamma rays.",
"country": "India"
},
{
"month": 1,
"day": 30,
"year": 2004,
"title": "Opportunity Rover Lands on Mars",
"description": "NASA's Opportunity rover successfully landed on Mars to continue the exploration started by Spirit.",
"country": "USA"
},
{
"month": 1,
"day": 31,
"year": 2018,
"title": "Super Blue Blood Moon",
"description": "A rare celestial event combining a supermoon, blue moon, and lunar eclipse.",
"country": "Global"
},
{
"month": 2,
"day": 1,
"year": 2003,
"title": "Columbia Shuttle Disaster",
"description": "NASA's Space Shuttle Columbia disintegrated upon re-entry, killing all seven astronauts on board.",
"country": "USA"
},
{
"month": 2,
"day": 2,
"year": 2009,
"title": "Iran Launches Omid Satellite",
"description": "Iran successfully launched its first domestically made satellite, Omid, into orbit.",
"country": "Iran"
},
{
"month": 2,
"day": 3,
"year": 1966,
"title": "Luna 9 Lands on Moon",
"description": "The USSR's Luna 9 became the first spacecraft to achieve a soft landing on the Moon.",
"country": "USSR"
},
{
"month": 2,
"day": 4,
"year": 2004,
"title": "Rosetta Launched",
"description": "ESA launched the Rosetta spacecraft to study comet 67P/Churyumov–Gerasimenko.",
"country": "ESA"
},
{
"month": 2,
"day": 5,
"year": 1971,
"title": "Apollo 14 Moon Landing",
"description": "Apollo 14 astronauts Alan Shepard and Edgar Mitchell landed on the Moon.",
"country": "USA"
},
{
"month": 2,
"day": 6,
"year": 2010,
"title": "India's GSAT-4 Launch Failure",
"description": "India's GSAT-4 satellite launch failed due to cryogenic stage malfunction.",
"country": "India"
},
{
"month": 2,
"day": 7,
"year": 1999,
"title": "STS-98 Launch",
"description": "NASA launched Space Shuttle Atlantis on mission STS-98 to deliver Destiny lab to the ISS.",
"country": "USA"
},
{
"month": 2,
"day": 8,
"year": 2014,
"title": "GSAT-14 Launched",
"description": "ISRO successfully launched GSAT-14 using the GSLV Mk II with an indigenous cryogenic engine.",
"country": "India"
},
{
"month": 2,
"day": 9,
"year": 1990,
"title": "Galileo Flyby of Venus",
"description": "NASA's Galileo spacecraft conducted a flyby of Venus to gain speed for its journey to Jupiter.",
"country": "USA"
},
{
"month": 2,
"day": 10,
"year": 2009,
"title": "First Satellite Collision",
"description": "An Iridium communication satellite and a defunct Russian satellite collided in orbit.",
"country": "Global"
},
{
"month": 2,
"day": 11,
"year": 2010,
"title": "Solar Dynamics Observatory Launch",
"description": "NASA launched the Solar Dynamics Observatory to study the Sun.",
"country": "USA"
},
{
"month": 2,
"day": 12,
"year": 2001,
"title": "NEAR Shoemaker Lands on Asteroid",
"description": "NASA's NEAR Shoemaker became the first spacecraft to land on an asteroid (Eros).",
"country": "USA"
},
{
"month": 2,
"day": 13,
"year": 2020,
"title": "ISRO Unveils Human Spaceflight Training",
"description": "ISRO announced Gaganyaan astronaut training had begun in collaboration with Russia.",
"country": "India"
},
{
"month": 2,
"day": 14,
"year": 1990,
"title": "Voyager 1's Pale Blue Dot Photo",
"description": "NASA's Voyager 1 captured the famous Pale Blue Dot photo of Earth from 6 billion km away.",
"country": "USA"
},
{
"month": 2,
"day": 15,
"year": 2013,
"title": "Chelyabinsk Meteor",
"description": "A meteor exploded over Chelyabinsk, Russia, injuring over 1,000 people and shocking the world.",
"country": "Russia"
},
{
"month": 2,
"day": 16,
"year": 1993,
"title": "IRS-1E Launched",
"description": "India launched IRS-1E for remote sensing, but the mission failed due to rocket malfunction.",
"country": "India"
},
{
"month": 2,
"day": 17,
"year": 1959,
"title": "Vanguard 2 Launched",
"description": "USA launched Vanguard 2, the first weather satellite, to measure cloud cover.",
"country": "USA"
},
{
"month": 2,
"day": 18,
"year": 2021,
"title": "Perseverance Rover Lands on Mars",
"description": "NASA's Perseverance rover successfully landed on Mars to search for signs of ancient life.",
"country": "USA"
},
{
"month": 2,
"day": 19,
"year": 1986,
"title": "Mir Space Station Launched",
"description": "The USSR launched the core module of the Mir space station into orbit.",
"country": "USSR"
},
{
"month": 2,
"day": 20,
"year": 1962,
"title": "John Glenn Orbits Earth",
"description": "John Glenn became the first American to orbit the Earth aboard Friendship 7.",
"country": "USA"
},
{
"month": 2,
"day": 21,
"year": 2008,
"title": "ISRO Launches PSLV-C10",
"description": "ISRO successfully launched PSLV-C10 carrying an Israeli satellite, strengthening international ties.",
"country": "India"
},
{
"month": 2,
"day": 22,
"year": 2017,
"title": "TRAPPIST-1 Discovery",
"description": "NASA announced discovery of seven Earth-sized planets orbiting the TRAPPIST-1 star.",
"country": "World"
},
{
"month": 2,
"day": 23,
"year": 2019,
"title": "India Launches PSLV-C45",
"description": "ISRO launched PSLV-C45 carrying EMISAT and 28 international customer satellites.",
"country": "India"
},
{
"month": 2,
"day": 24,
"year": 1969,
"title": "Mariner 6 Launch",
"description": "NASA launched Mariner 6 to fly by Mars and send back close-up images.",
"country": "USA"
},
{
"month": 2,
"day": 25,
"year": 2007,
"title": "INSAT-4B Launched",
"description": "India launched INSAT-4B for communication services and television broadcasting.",
"country": "India"
},
{
"month": 2,
"day": 26,
"year": 2012,
"title": "ISRO Launches PSLV-C19",
"description": "India successfully launched PSLV-C19 carrying RISAT-1, a radar imaging satellite.",
"country": "India"
},
{
"month": 2,
"day": 27,
"year": 2014,
"title": "India's GSLV Mk III First Test",
"description": "India conducted a successful suborbital test of GSLV Mk III, marking a milestone for heavier payload launches.",
"country": "India"
},
{
"month": 2,
"day": 28,
"year": 1994,
"title": "Discovery Launches STS-62",
"description": "Space Shuttle Discovery launched STS-62 for microgravity and atmospheric research.",
"country": "USA"
},
{
"month": 2,
"day": 29,
"year": 2016,
"title": "India Launches IRNSS-1F",
"description": "ISRO launched IRNSS-1F, part of the Indian Regional Navigation Satellite System (IRNSS).",
"country": "India"
},
{
"month": 3,
"day": 1,
"year": 1966,
"title": "Venera 3 Crash-Lands on Venus",
"description": "The Soviet Union’s Venera 3 becomes the first human-made object to impact another planet.",
"country": "USSR"
},
{
"month": 3,
"day": 2,
"year": 1972,
"title": "Launch of Pioneer 10",
"description": "NASA launched Pioneer 10, the first spacecraft to travel through the asteroid belt and make direct observations of Jupiter.",
"country": "USA"
},
{
"month": 3,
"day": 3,
"year": 2005,
"title": "ISRO PSLV-C5 Launch",
"description": "India launched PSLV-C5 carrying the Cartosat-1 and HAMSAT satellites.",
"country": "India"
},
{
"month": 3,
"day": 4,
"year": 2006,
"title": "MRO Enters Mars Orbit",
"description": "NASA’s Mars Reconnaissance Orbiter entered orbit around Mars to begin its study of the red planet.",
"country": "USA"
},
{
"month": 3,
"day": 5,
"year": 2013,
"title": "ISRO's Indo-French SARAL Mission",
"description": "India and France jointly launched the SARAL satellite for oceanographic studies.",
"country": "India/France"
},
{
"month": 3,
"day": 7,
"year": 2009,
"title": "Launch of Kepler Telescope",
"description": "NASA launched the Kepler Space Telescope to discover Earth-like planets orbiting other stars.",
"country": "USA"
},
{
"month": 3,
"day": 10,
"year": 1970,
"title": "INSAT Program Announced",
"description": "India formally announced the creation of the Indian National Satellite System (INSAT).",
"country": "India"
},
{
"month": 3,
"day": 13,
"year": 1986,
"title": "Giotto Flyby of Halley’s Comet",
"description": "ESA's Giotto spacecraft makes its closest approach to Halley’s Comet.",
"country": "ESA"
},
{
"month": 3,
"day": 15,
"year": 1962,
"title": "First Indian Rocket Test",
"description": "India conducted one of its earliest rocket tests from Thumba Equatorial Rocket Launching Station.",
"country": "India"
},
{
"month": 3,
"day": 17,
"year": 2011,
"title": "MESSENGER Enters Mercury Orbit",
"description": "NASA's MESSENGER became the first spacecraft to orbit Mercury.",
"country": "USA"
},
{
"month": 3,
"day": 19,
"year": 2001,
"title": "Mir Space Station Deorbited",
"description": "Russia deorbited the Mir space station after 15 years in orbit.",
"country": "Russia"
},
{
"month": 3,
"day": 22,
"year": 2000,
"title": "INSAT-3B Launch",
"description": "ISRO launched INSAT-3B for telecommunications and internet services.",
"country": "India"
},
{
"month": 3,
"day": 23,
"year": 2001,
"title": "ISRO’s PSLV-C3 Mission",
"description": "India launched PSLV-C3 carrying the TES and two foreign satellites.",
"country": "India"
},
{
"month": 3,
"day": 24,
"year": 1999,
"title": "Discovery of Neptune's Largest Ring",
"description": "Astronomers discovered a massive ring system around Neptune using ground-based telescopes.",
"country": "World"
},
{
"month": 3,
"day": 27,
"year": 2019,
"title": "Mission Shakti",
"description": "India successfully tested its first anti-satellite missile, demonstrating space defense capability.",
"country": "India"
},
{
"month": 3,
"day": 28,
"year": 2006,
"title": "ISRO Launches Cartosat-1",
"description": "India launched Cartosat-1 for high-resolution Earth observation.",
"country": "India"
},
{
"month": 3,
"day": 31,
"year": 2005,
"title": "Mangalyaan Project Approved",
"description": "India approved its first interplanetary mission to Mars, later named Mangalyaan.",
"country": "India"
},
{
"month": 4,
"day": 1,
"year": 1960,
"title": "First Weather Satellite Launched",
"description": "NASA launched TIROS-1, the first successful weather satellite.",
"country": "USA"
},
{
"month": 4,
"day": 2,
"year": 1984,
"title": "Rakesh Sharma Goes to Space",
"description": "Rakesh Sharma became the first Indian to travel to space aboard Soyuz T-11.",
"country": "India"
},
{
"month": 4,
"day": 4,
"year": 2001,
"title": "Mars Odyssey Launched",
"description": "NASA launched Mars Odyssey to map the Martian surface and find signs of water.",
"country": "USA"
},
{
"month": 4,
"day": 7,
"year": 2001,
"title": "ISRO PSLV-C3 Launch",
"description": "India launched PSLV-C3 carrying three satellites including TES and BIRD.",
"country": "India"
},
{
"month": 4,
"day": 9,
"year": 1959,
"title": "NASA Announces Mercury 7 Astronauts",
"description": "NASA introduced the original seven astronauts for the Mercury program.",
"country": "USA"
},
{
"month": 4,
"day": 11,
"year": 1970,
"title": "Apollo 13 Launches",
"description": "NASA launched Apollo 13, which later faced a critical failure en route to the Moon.",
"country": "USA"
},
{
"month": 4,
"day": 12,
"year": 1961,
"title": "Yuri Gagarin's Historic Flight",
"description": "Yuri Gagarin became the first human in space aboard Vostok 1.",
"country": "USSR"
},
{
"month": 4,
"day": 12,
"year": 1981,
"title": "First Space Shuttle Flight",
"description": "NASA launched the first reusable Space Shuttle, Columbia (STS-1).",
"country": "USA"
},
{
"month": 4,
"day": 14,
"year": 2008,
"title": "Cartosat-2A and IMS-1 Launched",
"description": "ISRO launched Cartosat-2A and IMS-1 along with eight foreign nanosatellites.",
"country": "India"
},
{
"month": 4,
"day": 17,
"year": 1970,
"title": "Apollo 13 Returns Safely",
"description": "Apollo 13 splashed down safely after surviving a near-disaster in space.",
"country": "USA"
},
{
"month": 4,
"day": 19,
"year": 1971,
"title": "Salyut 1 Launched",
"description": "The Soviet Union launched the first space station, Salyut 1.",
"country": "USSR"
},
{
"month": 4,
"day": 20,
"year": 2009,
"title": "RISAT-2 Launch",
"description": "ISRO launched RISAT-2, India’s first radar imaging satellite for all-weather surveillance.",
"country": "India"
},
{
"month": 4,
"day": 22,
"year": 2009,
"title": "ISRO PSLV-C12 Launch",
"description": "India launched PSLV-C12 carrying RISAT-2 and ANUSAT.",
"country": "India"
},
{
"month": 4,
"day": 24,
"year": 1990,
"title": "Hubble Space Telescope Launched",
"description": "NASA launched the Hubble Space Telescope aboard Space Shuttle Discovery.",
"country": "USA"
},
{
"month": 4,
"day": 26,
"year": 1962,
"title": "Ariane Launch System Initiated",
"description": "The European Space Agency initiated development of the Ariane launch vehicle family.",
"country": "ESA"
},
{
"month": 4,
"day": 28,
"year": 2008,
"title": "ISRO Launches Cartosat-2A",
"description": "India launched Cartosat-2A, a high-resolution remote sensing satellite.",
"country": "India"
},
{
"month": 4,
"day": 29,
"year": 2001,
"title": "Dennis Tito Becomes First Space Tourist",
"description": "American businessman Dennis Tito flew to space aboard a Russian Soyuz mission.",
"country": "Russia/USA"
},
{
"month": 4,
"day": 30,
"year": 2007,
"title": "Cartosat-2 Launched",
"description": "India launched Cartosat-2, enhancing its Earth observation capabilities.",
"country": "India"
},
{
"month": 5,
"day": 1,
"year": 2009,
"title": "Chandrayaan-1's Moon Impact Probe Discovery",
"description": "India's Chandrayaan-1 confirmed the presence of magnesium, aluminum, and silicon on the Moon.",
"country": "India"
},
{
"month": 5,
"day": 2,
"year": 1965,
"title": "Luna 5 Launch",
"description": "The USSR launched Luna 5 in an attempt to achieve a soft landing on the Moon.",
"country": "USSR"
},
{
"month": 5,
"day": 3,
"year": 2024,
"title": "Chang’e-6 Lunar Mission Launch",
"description": "China launched the Chang’e-6 mission to collect samples from the Moon's far side.",
"country": "China"
},
{
"month": 5,
"day": 4,
"year": 1989,
"title": "Magellan Mission Launch",
"description": "NASA launched the Magellan spacecraft to map the surface of Venus using radar.",
"country": "USA"
},
{
"month": 5,
"day": 5,
"year": 1961,
"title": "Alan Shepard Flies Freedom 7",
"description": "Alan Shepard became the first American in space aboard Freedom 7.",
"country": "USA"
},
{
"month": 5,
"day": 6,
"year": 1998,
"title": "ISRO Launches GSAT-2",
"description": "India launched GSAT-2, an experimental communication satellite.",
"country": "India"
},
{
"month": 5,
"day": 7,
"year": 1992,
"title": "Endeavour’s First Flight",
"description": "The space shuttle Endeavour launched on its maiden voyage, STS-49.",
"country": "USA"
},
{
"month": 5,
"day": 8,
"year": 1962,
"title": "Ariel 1 Launch",
"description": "The first British satellite, Ariel 1, was launched into orbit.",
"country": "UK/USA"
},
{
"month": 5,
"day": 9,
"year": 2003,
"title": "Hayabusa Launched",
"description": "Japan launched Hayabusa to bring back samples from asteroid Itokawa.",
"country": "Japan"
},
{
"month": 5,
"day": 10,
"year": 1967,
"title": "Lunar Orbiter 4 Launch",
"description": "NASA launched Lunar Orbiter 4 to photograph the Moon's surface for Apollo landing site selection.",
"country": "USA"
},
{
"month": 5,
"day": 11,
"year": 2009,
"title": "STS-125 Launch",
"description": "NASA launched the final Hubble servicing mission via space shuttle Atlantis.",
"country": "USA"
},
{
"month": 5,
"day": 12,
"year": 2000,
"title": "India Launches GSAT-1",
"description": "GSAT-1 was India’s first experimental geo-stationary satellite for digital audio broadcasting.",
"country": "India"
},
{
"month": 5,
"day": 13,
"year": 1960,
"title": "Discoverer 13 Recovery",
"description": "First successful recovery of a capsule from orbit by the Discoverer program.",
"country": "USA"
},
{
"month": 5,
"day": 14,
"year": 1973,
"title": "Skylab Launch",
"description": "NASA launched Skylab, the United States' first space station.",
"country": "USA"
},
{
"month": 5,
"day": 15,
"year": 1958,
"title": "Sputnik 3 Launch",
"description": "The USSR launched Sputnik 3 to study Earth's upper atmosphere and cosmic rays.",
"country": "USSR"
},
{
"month": 5,
"day": 16,
"year": 1969,
"title": "Venera 5 Reaches Venus",
"description": "USSR’s Venera 5 transmitted data from Venus's atmosphere.",
"country": "USSR"
},
{
"month": 5,
"day": 17,
"year": 1969,
"title": "Venera 6 Reaches Venus",
"description": "Venera 6 followed Venera 5 with similar objectives on Venus.",
"country": "USSR"
},
{
"month": 5,
"day": 18,
"year": 1991,
"title": "Helen Sharman Flies to Mir",
"description": "First Briton in space, Helen Sharman flew to the Mir Space Station.",
"country": "UK/USSR"
},
{
"month": 5,
"day": 19,
"year": 2009,
"title": "ISRO Launches RISAT-2",
"description": "India launched RISAT-2 for all-weather remote sensing using radar.",
"country": "India"
},
{
"month": 5,
"day": 20,
"year": 2010,
"title": "ISRO Launches Cartosat-2B",
"description": "High-resolution Earth observation satellite launched by India.",
"country": "India"
},
{
"month": 5,
"day": 21,
"year": 1995,
"title": "Spektr Module Launched",
"description": "Russia launched the Spektr science module to Mir.",
"country": "Russia"
},
{
"month": 5,
"day": 22,
"year": 1969,
"title": "Apollo 10 Orbits Moon",
"description": "NASA's Apollo 10 lunar module orbited the Moon as a rehearsal for Apollo 11.",
"country": "USA"
},
{
"month": 5,
"day": 23,
"year": 2008,
"title": "Phoenix Mars Lander Reaches Mars",
"description": "NASA’s Phoenix successfully landed on Mars's polar region.",
"country": "USA"
},
{
"month": 5,
"day": 24,
"year": 1962,
"title": "Aurora 7 Launch",
"description": "NASA launched Scott Carpenter aboard Aurora 7 for America’s second manned orbital flight.",
"country": "USA"
},
{
"month": 5,
"day": 25,
"year": 2009,
"title": "Herschel and Planck Start Operations",
"description": "ESA’s Herschel Space Observatory and Planck telescope began operations to study cosmic radiation.",
"country": "ESA"
},
{
"month": 5,
"day": 26,
"year": 1999,
"title": "STS-96 Launch",
"description": "Space Shuttle Discovery launched and became the first shuttle to dock with the ISS.",
"country": "USA"
},
{
"month": 5,
"day": 27,
"year": 1972,
"title": "Mars 2 Orbiter Reaches Mars",
"description": "USSR’s Mars 2 became the first spacecraft to reach Mars’s surface, though crash-landed.",
"country": "USSR"
},
{
"month": 5,
"day": 28,
"year": 2003,
"title": "Beagle 2 Launched",
"description": "The British Beagle 2 Mars lander was launched on ESA’s Mars Express.",
"country": "UK/ESA"
},
{
"month": 5,
"day": 29,
"year": 1999,
"title": "Chandrayaan-1 Mission Approval",
"description": "ISRO approved India’s first lunar mission, Chandrayaan-1.",
"country": "India"
},
{
"month": 5,
"day": 30,
"year": 2015,
"title": "India's GSAT-6A Launched",
"description": "ISRO launched GSAT-6A for mobile communication.",
"country": "India"