9 Ocean Facts You Likely Don’t Know, But Should

9 Ocean Facts You Likely Don’t Know, but Should

Earth is a place dominated by water, mainly oceans. It’s also a place our researchers study to understand life. Trillions of gallons of water flow freely across the surface of our blue-green planet. Ocean’s vibrant ecosystems impact our lives in many ways. 

In celebration of World Oceans Day, here are a few things you might not know about these complex waterways.

1. Why is the ocean blue? 

image

The way light is absorbed and scattered throughout the ocean determines which colors it takes on. Red, orange, yellow,and green light are absorbed quickly beneath the surface, leaving blue light to be scattered and reflected back. This causes us to see various blue and violet hues.

2. Want a good fishing spot? 

image

Follow the phytoplankton! These small plant-like organisms are the beginning of the food web for most of the ocean. As phytoplankton grow and multiply, they are eaten by zooplankton, small fish and other animals. Larger animals then eat the smaller ones. The fishing industry identifies good spots by using ocean color images to locate areas rich in phytoplankton. Phytoplankton, as revealed by ocean color, frequently show scientists where ocean currents provide nutrients for plant growth.

3. The ocean is many colors. 

image

When we look at the ocean from space, we see many different shades of blue. Using instruments that are more sensitive than the human eye, we can measure carefully the fantastic array of colors of the ocean. Different colors may reveal the presence and amount of phytoplankton, sediments and dissolved organic matter.

4. The ocean can be a dark place. 

About 70 percent of the planet is ocean, with an average depth of more than 12,400 feet. Given that light doesn’t penetrate much deeper than 330 feet below the water’s surface (in the clearest water), most of our planet is in a perpetual state of darkness. Although dark, this part of the ocean still supports many forms of life, some of which are fed by sinking phytoplankton. 

5. We study all aspects of ocean life. 

image

Instruments on satellites in space, hundreds of kilometers above us, can measure many things about the sea: surface winds, sea surface temperature, water color, wave height, and height of the ocean surface.

6. In a gallon of average sea water, there is about ½ cup of salt. 

image

The amount of salt varies depending on location. The Atlantic Ocean is saltier than the Pacific Ocean, for instance. Most of the salt in the ocean is the same kind of salt we put on our food: sodium chloride.

7. A single drop of sea water is teeming with life.  

image

It will most likely have millions (yes, millions!) of bacteria and viruses, thousands of phytoplankton cells, and even some fish eggs, baby crabs, and small worms. 

8. Where does Earth store freshwater? 

image

Just 3.5 percent of Earth’s water is fresh—that is, with few salts in it. You can find Earth’s freshwater in our lakes, rivers, and streams, but don’t forget groundwater and glaciers. Over 68 percent of Earth’s freshwater is locked up in ice and glaciers. And another 30 percent is in groundwater. 

9. Phytoplankton are the “lungs of the ocean”.

image

Just like forests are considered the “lungs of the earth”, phytoplankton is known for providing the same service in the ocean! They consume carbon dioxide, dissolved in the sunlit portion of the ocean, and produce about half of the world’s oxygen. 

Want to learn more about how we study the ocean? Follow @NASAEarth on twitter.

Make sure to follow us on Tumblr for your regular dose of space: http://nasa.tumblr.com.  

More Posts from Laossj and Others

7 years ago
Tele-present Wind
Tele-present Wind
Tele-present Wind
Tele-present Wind

tele-present wind

Installation by David Bowen reproduces realtime wind data with a collection of mechanized stalks:

This installation consists of a series of 126 x/y tilting mechanical devices connected to thin dried plant stalks installed in a gallery and a dried plant stalk connected to an accelerometer installed outdoors. When the wind blows it causes the stalk outside to sway. The accelerometer detects this movement transmitting the motion to the grouping of devices in the gallery. Therefore the stalks in the gallery space move in real-time and in unison based on the movement of the wind outside.

May-September 2018 a newly expanded version of tele-present wind was installed at Azkuna Zentroa, Bilbao and the sensor was installed in an outdoor location adjacent to the Visualization and Digital Imaging Lab at the University of Minnesota. Thus the individual components of the installation in Spain moved in unison as they mimicked the direction and intensity of the wind halfway around the world. As it monitored and collected real-time data from this remote and distant location, the system relayed a physical representation of the dynamic and fluid environmental conditions.

More Here

Related: Another project by David from 2012 did something similar with ‘Tele-Present Water’ [Link]

7 years ago
Cassies Take A Tour Of Agility Robotics
Cassies Take A Tour Of Agility Robotics

Cassies Take a Tour of Agility Robotics

Meet Cassie, a sleek bi-pedal robot made by Agility Robotics

Two Cassies decide to take a walking tour of our office. No CG: 100% actual robots.

More Here

8 years ago

Introducing SAMOA, an open source platform for mining big data streams.

https://github.com/yahoo/samoa

Machine learning and data mining are well established techniques in the world of IT and especially among web companies and startups. Spam detection, personalization and recommendations are just a few of the applications made possible by mining the huge quantity of data available nowadays. However, “big data” is not only about Volume, but also about Velocity (and Variety, 3V of big data).

The usual pipeline for modeling data (what “data scientists” do) involves taking a sample from production data, cleaning and preprocessing it to make it usable, training a model for the task at hand and finally deploying it to production. The final output of this process is a pipeline that needs to run periodically (and be maintained) in order to keep the model up to date. Hadoop and its ecosystem (e.g., Mahout) have proven to be an extremely successful platform to support this process at web scale.

However, no solution is perfect and big data is “data whose characteristics forces us to look beyond the traditional methods that are prevalent at the time”. The current challenge is to move towards analyzing data as soon as it arrives into the system, nearly in real-time.

For example, models for mail spam detection get outdated with time and need to be retrained with new data. New data (i.e., spam reports) comes in continuously and the model starts being outdated the moment it is deployed: all the new data is sitting without creating any value until the next model update. On the contrary, incorporating new data as soon as it arrives is what the “Velocity” in big data is about. In this case, Hadoop is not the ideal tool to cope with streams of fast changing data.

Distributed stream processing engines are emerging as the platform of choice to handle this use case. Examples of these platforms are Storm, S4, and recently Samza. These platforms join the scalability of distributed processing with the fast response of stream processing. Yahoo has already adopted Storm as a key technology for low-latency big data processing.

Alas, currently there is no common solution for mining big data streams, that is, for doing machine learning on streams on a distributed environment.

Enter SAMOA

SAMOA (Scalable Advanced Massive Online Analysis) is a framework for mining big data streams. As most of the big data ecosystem, it is written in Java. It features a pluggable architecture that allows it to run on several distributed stream processing engines such as Storm and S4. SAMOA includes distributed algorithms for the most common machine learning tasks such as classification and clustering. For a simple analogy, you can think of SAMOA as Mahout for streaming.

SAMOA is both a platform and a library. As a platform, it allows the algorithm developer to abstract from the underlying execution engine, and therefore reuse their code to run on different engines. It also allows to easily write plug-in modules to port SAMOA to different execution engines.

As a library, SAMOA contains state-of-the-art implementations of algorithms for distributed machine learning on streams. The first alpha release allows classification and clustering.

For classification, we implemented a Vertical Hoeffding Tree (VHT), a distributed streaming version of decision trees tailored for sparse data (e.g., text). For clustering, we included a distributed algorithm based on CluStream. The library also includes meta-algorithms such as bagging.

HOW DOES IT WORK?

An algorithm in SAMOA is represented by a series of nodes communicating via messages along streams that connect pairs of nodes (a graph). Borrowing the terminology from Storm, this is called a Topology. Each node in the Topology is a Processor that sends messages to a Stream. The user code that implements the algorithm resides inside a Processor. Figure 3 shows an example of a Processor joining two stream from two source Processors. Here is a code snippet to build such a topology in SAMOA.

TopologyBuilder builder; Processor sourceOne = new SourceProcessor(); builder.addProcessor(sourceOne); Stream streamOne = builder.createStream(sourceOne); Processor sourceTwo = new SourceProcessor(); builder.addProcessor(sourceTwo); Stream streamTwo = builder.createStream(sourceTwo); Processor join = new JoinProcessor(); builder.addProcessor(join).connectInputShuffle(streamOne).connectInputKey(streamTwo);

SWEET! HOW DO I GET STARTED?

1. Download SAMOA

git clone git@github.com:yahoo/samoa.git cd samoa mvn -Pstorm package

2. Download the Forest CoverType dataset.

wget "http://downloads.sourceforge.net/project/moa-datastream/Datasets/Classification/covtypeNorm.arff.zip" unzip covtypeNorm.arff.zip

Forest CoverType contains the forest cover type for 30 x 30 meter cells obtained from US Forest Service (USFS) Region 2 Resource Information System (RIS) data. It contains 581,012 instances and 54 attributes, and it has been used in several papers on data stream classification.

3. Download a simple logging library.

wget "http://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.7.2/slf4j-simple-1.7.2.jar"

4. Run an Example. Classifying the CoverType dataset with the VerticalHoeffdingTree in local mode.

java -cp slf4j-simple-1.7.2.jar:target/SAMOA-Storm-0.0.1.jar com.yahoo.labs.samoa.DoTask "PrequentialEvaluation -l classifiers.trees.VerticalHoeffdingTree -s (ArffFileStream -f covtypeNorm.arff) -f 100000"

The output will be a sequence of the evaluation metrics for accuracy, taken every 100,000 instances.

To run the example on Storm, please refer to the instructions on the wiki.

I WANT TO KNOW MORE!

For more information about SAMOA, see the README and the wiki on github, or post a question on the mailing list.

SAMOA is licensed under an Apache Software License v2.0. You are welcome to contribute to the project! SAMOA accepts contributions under an Apache style contributor license agreement.

Good luck! We hope you find SAMOA useful. We will continue developing the framework by adding new algorithms and platforms.

Gianmarco De Francisci Morales (gdfm@yahoo-inc.com) and Albert Bifet (abifet@yahoo.com) @ Yahoo Labs Barcelona

7 years ago
Kidachi
Kidachi
Kidachi

Kidachi

Japanese programmer has unveiled proof-of-concept effects for Augmented Reality game made with ARKit including visual filters and Predator-like optical camouflage:

ミッション1【野良アンドロイド(光学迷彩搭載機)の発見・確保】 #ARKit pic.twitter.com/7m0esEGrUt

— kidachi (@kidach1) August 19, 2017

[Bing Translation:] Mission 1 [Nora Android (optical camouflage aircraft) find & secure] #ARKit 

You can follow Kidachi on Twitter here

7 years ago
“Free Your Mind”.

“Free your mind”.

7 years ago

Solar System: 10 Things to Know

Movie Night

Summer break is just around the corner. Hang a sheet from the clothesline in the backyard and fire up the projector for a NASA movie night.

1. Mars in a Minute

image

Back in the day, movies started with a cartoon. Learn the secrets of the Red Planet in these animated 60 second chunks.

2. Crash of the Titans

image

Watch two galaxies collide billions of years from now in this high-definition visualization.

3. Tour the Moon in 4K

image

Wait for the dark of the waning Moon next weekend to take in this 4K tour of our constant celestial companion.

4. Seven Years of the Sun

image

Watch graceful dances in the Sun’s atmosphere in this series of videos created by our 24/7 Sun-sentinel, the Solar Dynamic Observatory (SDO).

5. Light ‘Em Up

image

Crank up the volume and learn about NASA science for this short video about some of our science missions, featuring a track by Fall Out Boy.

6. Bennu’s Journey

image

Follow an asteroid from its humble origins to its upcoming encounter with our spacecraft in this stunning visualization.

7. Lunar Landing Practice

Join Apollo mission pilots as they fly—and even crash—during daring practice runs for landing on the Moon.

8. Earthrise

image

Join the crew of Apollo 8 as they become the first human beings to see the Earth rise over the surface of the Moon.

9. Musical Descent to Titan

image

Watch a musical, whimsical recreation of the 2005 Huygens probe descent to Titan, Saturn’s giant moon.

10. More Movies

image

Our Goddard Scientific Visualization Studio provides a steady stream of fresh videos for your summer viewing pleasure. Come back often and enjoy.

Read the full version of this article on the web HERE. 

Make sure to follow us on Tumblr for your regular dose of space: http://nasa.tumblr.com.  

7 years ago
Noodle Tearing Up The Dance Floor
Noodle Tearing Up The Dance Floor
Noodle Tearing Up The Dance Floor

Noodle tearing up the dance floor

7 years ago

Tele-Present Water by David Bowen

I rarely use the phrase ‘mind blown’, but this is one of those rare occurrences.

An art installation which combines real-time data, mechanical puppetry, and a physical grid representation usually employed virtually with computers:

This installation draws information from the intensity and movement of the water in a remote location. Wave data is being collected in real-time from National Oceanic and Atmospheric Administration data buoy station 46246, 49.985 N 145.089 W (49°59'7" N 145°5'20" W) on the Pacific Ocean. The wave intensity and frequency is scaled and transferred to the mechanical grid structure resulting in a simulation of the physical effects caused by the movement of water from halfway around the world.

Link to the artist’s website for this work can be found here

7 years ago
[Patreon] Best Of 2017 - Augmented Reality Photography
[Patreon] Best Of 2017 - Augmented Reality Photography
[Patreon] Best Of 2017 - Augmented Reality Photography
[Patreon] Best Of 2017 - Augmented Reality Photography
[Patreon] Best Of 2017 - Augmented Reality Photography
[Patreon] Best Of 2017 - Augmented Reality Photography

[Patreon] Best of 2017 - Augmented Reality Photography

For Patreon backers, I have put together a brief look at some projects that creatively explores the potential of Augmented Reality, which has been brought into the mainstream via Apple’s ARKit technology.

More Here

7 years ago
#FridayFunFact: VR & AR Are Fast Becoming The Latest Digital Trend (and Next Marketing Platform Target).

#FridayFunFact: VR & AR are fast becoming the latest digital trend (and next marketing platform target). This is an interesting projection of what the market could be like for VR/AR apllications.

  • elegantlyenchantedstubbornfool
    elegantlyenchantedstubbornfool liked this · 1 month ago
  • 00captainbalboa
    00captainbalboa liked this · 1 year ago
  • simulite
    simulite liked this · 1 year ago
  • seren1tiff
    seren1tiff liked this · 1 year ago
  • markwickens
    markwickens liked this · 1 year ago
  • domquixotedospobresblog
    domquixotedospobresblog liked this · 1 year ago
  • workpanoto
    workpanoto liked this · 1 year ago
  • thereisanother
    thereisanother liked this · 2 years ago
  • bloodtohold
    bloodtohold liked this · 2 years ago
  • luzazuladah
    luzazuladah liked this · 2 years ago
  • rede3pl
    rede3pl liked this · 3 years ago
  • littlebunnyman
    littlebunnyman reblogged this · 3 years ago
  • machet-t-omniversal
    machet-t-omniversal liked this · 3 years ago
  • cats-are-a-girls-bestfriend
    cats-are-a-girls-bestfriend reblogged this · 3 years ago
  • cats-are-a-girls-bestfriend
    cats-are-a-girls-bestfriend liked this · 3 years ago
  • haml3t
    haml3t liked this · 3 years ago
  • ratspiral
    ratspiral liked this · 3 years ago
  • rnangopantsu
    rnangopantsu reblogged this · 3 years ago
laossj - 无标题
无标题

295 posts

Explore Tumblr Blog
Search Through Tumblr Tags