Skip to main content

Stunning virtual cruise tours

Stunning virtual cruise tours: "

The folks over at PlanetInAction.com have just released a stunning bit of work for CleanCrusing.com.

Clean Cruising tasked them with finding an innovative way to show the itineraries for thousands of cruises -- nearly 6000 in all. Using Google Earth, combined with 3D models of each ship, PlanetInAction has done just that. They have hand-built models for dozens of cruise ships, all with amazing detail and accuracy.

Oasis of the Seas

Now that the ships are rendered and the technical challenges resolved, they've started building out some of the itineraries. To see them in action, check out the 42 night Cherry Blossom Cruise (seen below) or the 7 night Western Caribbean Cruise, or just watch the video below:

The actual Google Earth tours are not yet available, but they hope to release them soon. In the meantime, you can watch the high-res videos of the tours at the links above. Below is a tour of the 'Oasis of the Seas', the largest cruise ship in the world. We covered her journey from Finland to Florida last month, and below is a video that walks you through the 3D model of the ship.

This is a very cool use of Google Earth, 3D models and the tour feature. I could see this (or something similar) becoming a default layer in Google Earth someday. For now, enjoy the HD videos they've released.

Comments

Popular posts from this blog

Calculate Age or Years Elapsed in an Apple Numbers Sheet

Often it is useful to show a person's age or years elapsed since a start date.  For example: Hire Date: 4/1/2012 - Years of service: 1.5 Here's a formula for Numbers that will do the trick: =IF(ISBLANK(cellReference),"",DATEDIF( cellReference ,TODAY(),"D")/365.2425) Replace the cellReference with the actual cell reference. i.e.: (A1)  So here's the breakdown: =IF(ISBLANK(cellReference),""  --- this checks to see if there is a start date in your referenced cell.  For example say your spreadsheet has a cell (A1) that holds a date of birth, but it is not yet referenced, this will result in an empty string. (Blank cell) Otherwise, it calculates the years:  DATEDIF( cellReference ,TODAY(),"D")/365.2425) DATEDIF compares two dates. The first date is your cell reference i.e.: (A1) The second is the current date according to your computer, iOS device: TODAY()  returning the Day -  "D" Then the difference is divi...