Skip to main content

China Prepares Mission to Land Spacecraft on Moon's Far Side

China Prepares Mission to Land Spacecraft on Moon's Far Side

 
China was preparing to launch a ground-breaking mission early Saturday to soft-land a spacecraft on the largely unexplored far side of the moon, demonstrating its growing ambitions as a space power to rival Russia, the European Union and US.
With its Chang'e 4 mission, China hopes to be the first country to ever successfully undertake such a landing. The moon's far side is also known as the dark side because it faces away from Earth and remains comparatively unknown, with a different composition from sites on the near side, where previous missions have landed.

If successful, the mission scheduled to blast off aboard a Long March 3B rocket will propel the Chinese space program to a leading position in one of the most important areas of lunar exploration.

China landed its Yutu, or "Jade Rabbit." rover on the moon five years ago and plans to send its Chang'e 5 probe there next year and have it return to Earth with samples - the first time that will have been done since 1976. A crewed lunar mission is also under consideration.

Chang'e 4 is also a lander-rover combination and will explore both above and below the lunar surface after arriving at the South Pole-Aitken basin's Von Karman crater following a 27-day journey.

It will also perform radio-astronomical studies that, because the far side always faces away from Earth, will be "free from interference from our planet's ionosphere, human-made radio frequencies and auroral radiation noise," space industry expert Leonard David wrote on the website Space.com.

It may also carry plant seeds and silkworm eggs, according to the official Xinhua News Agency.

Chang'e is the goddess of the moon in Chinese mythology.

China conducted its first crewed space mission in 2003, making it only the third country after Russia and the US to do so. It has put a pair of space stations into orbit, one of which is still operating as a precursor to a more than 60-ton station that is due to come online in 2022. The launch of a Mars rover is planned for the mid-2020s.

To facilitate communication between controllers on Earth and the Chang'e 4 mission, China in May launched a relay satellite named Queqiao, or "Magpie Bridge," after an ancient Chinese folk tale.

China's space program has benefited from cooperation with Russia and European nations, although it was excluded from the 420-ton International Space Station, mainly due to US legislation barring such cooperation amid concerns over its strong military connections. Its program also suffered a rare setback last year with the delayed launch of its Long March 5 rocket.


China's latest mission closely follows the touchdown of NASA's InSight spacecraft on Mars on Monday, at a site less than 400 miles (640 kilometers) from the American rover Curiosity, the only other working robot on Mars.

Comments

Popular posts from this blog

Momo suicide game

Microsoft clamps down on sick 'Momo suicide game' in 'Minecraft' Microsoft is clamping down on the sick “Momo suicide challenge,” which recently infiltrated the wildly popular online game “Minecraft.”The tech giant owns “Minecraft” developer Mojang. The vile “Momo suicide game” has been garnering attention after spreading on WhatsApp, prompting police warnings. "Momo" is a viral challenge that asks people to add a contact via WhatsApp - they are then   urged   to commit self-harm or suicide. The "game" has fueled comparisons to the sinister " Blue Whale challenge " that led to reports of suicides in Russia and the U.S, as well as the online fictional character of "Slender Man." In 2014 two 12-year-old girls in Wisconsin  attempted to kill   a classmate in an attempt to please the horror character. The Buenos Aires Times recently  reported  that police in Argentina are investigating whether “Momo” is linked to the suicide of a 12-y...

Spring Security with JWT for REST API

Spring is considered a trusted framework in the Java ecosystem and is widely used. It’s no longer valid to refer to Spring as a framework, as it’s more of an umbrella term that covers various frameworks. One of these frameworks is Spring Security , which is a powerful and customizable authentication and authorization framework. It is considered the de facto standard for securing Spring-based applications. Despite its popularity, I must admit that when it comes to single-page applications , it’s not simple and straightforward to configure. I suspect the reason is that it started more as an MVC application -oriented framework, where webpage rendering happens on the server-side and communication is session-based. If the back end is based on Java and Spring, it makes sense to use Spring Security for authentication/authorization and configure it for stateless communication. While there are a lot of articles explaining how this is done, for me, it was still frustrating to set it up for the f...

The Java 8 Stream API

1 Overview In this comprehensive tutorial, we'll go through the practical uses of Java 8 Streams from creation to parallel execution. To understand this material, readers need to have a basic knowledge of Java 8 (lambda expressions,   Optional,  method references) and of the Stream API. 2 Stream Creation There are many ways to create a stream instance of different sources. Once created, the instance  will not modify its source,  therefore allowing the creation of multiple instances from a single source. Empty Stream We should use the  empty()  method in case of the creation of an empty stream: Stream<String> streamEmpty = Stream.empty(); We often use the  empty()  method upon creation to avoid returning  null  for streams with no element: public Stream<String> streamOf (List<String> list) { return list == null || list.isEmpty() ? Stream.empty() : list.stream(); } 2.2. Stream of  Collection We can also creat...