Skip to main content

Scientists found a moon cave that’s big enough to be an astronaut base

Space scientists find moon caves.

Scientists with Japan’s space agency have announced they have discovered what appears to be a humongous cave on the surface of the moon—a potential spot for astronauts to set up an exploratory base.

It has been hypothesized that the walls of the cave—what remains of a 3.5 billion-year-old lava tube—could serve as a shield for lunar astronauts from micrometeorites, intense radiation on the surface of the moon, as well as temperature swings that can plummet from 100°C (212°F) days into frigid -173°C(-280°F) nights. Scientists still don’t know what the inside of the cave looks like—that will likely require further exploration, according to the findings published in Geophysical Research Letters.

“Dreams of putting people into lava tubes on the moon have been ongoing for decades, and this work is an important step in turning that dream into reality,” wrote the editor of the research based on data gathered by Japan’s SELENE lunar orbiter.

Scientists at the Japan Aerospace Exploration Agency were the first to identify the cave under an area called the Marius Hills, reports Agence France-Presse. They estimate it’s about 31 miles (50 km) long and 330 feet (100 meters) wide. Japanese scientists first began focusing on the region when they discovered what looked to be large pits. The news this week confirms that at least one so-called pit is actually an entrance to a rather large cave.

Space researchers have speculated about the existence of lava-tube caves on the moon since first days of the US Apollo missions. For years, NASA has been using lunar reconnaissance orbiters to try and learn more about the pits.

“Even a few pictures from ground level would answer a lot of the outstanding questions about the nature of the voids that the pits collapsed into,” said Robert Wagner, a lunar researcher who teaches at Arizona State University, in a 2014 NASA interview.

The timing might be right for moon exploration. While Elon Musk wants to use his company SpaceX to get astronauts to Mars, US president Donald Trump has signaled that he’s more interested in getting more people to the moon—contributing to the larger debate about which would be better to further explore first.


Read next: The code that took America to the moon was just published to GitHub, and it’s like a 1960s time capsule

Quartz http://ift.tt/2zlDQhR October 19, 2017 at 08:39PM

Comments

Popular posts from this blog

Controlling legend appearance in ggplot2 with override.aes

[This article was first published on Very statisticious on Very statisticious , and kindly contributed to R-bloggers ]. (You can report issue about the content on this page here ) Want to share your content on R-bloggers? click here if you have a blog, or here if you don't. In ggplot2 , aesthetics and their scale_*() functions change both the plot appearance and the plot legend appearance simultaneously. The override.aes argument in guide_legend() allows the user to change only the legend appearance without affecting the rest of the plot. This is useful for making the legend more readable or for creating certain types of combined legends. In this post I’ll first introduce override.aes with a basic example and then go through three additional plotting scenarios to how other instances where override.aes comes in handy. Table of Contents R packages Introducing override.aes Adding a guides() layer Using the guide argument in scale_*() Changing multiple aesthetic par...

Using RStudio and LaTeX

(This article was first published on r – Experimental Behaviour , and kindly contributed to R-bloggers) This post will explain how to integrate RStudio and LaTeX, especially the inclusion of well-formatted tables and nice-looking graphs and figures produced in RStudio and imported to LaTeX. To follow along you will need RStudio, MS Excel and LaTeX. Using tikzdevice to insert R Graphs into LaTeX I am a very visual thinker. If I want to understand a concept I usually and subconsciously try to visualise it. Therefore, more my PhD I tried to transport a lot of empirical insights by means of  visualization . These range from histograms, or violin plots to show distributions, over bargraphs including error bars to compare means, to interaction- or conditional effects of regression models. For quite a while it was very tedious to include such graphs in LaTeX documents. I tried several ways, like saving them as pdf and then including them in LaTeX as pdf, or any other file ...