Skip to main content

The mystery of the "Vanishing Island"

    A 60 square mile land mass know as the Sandy island or the Sable Island has vanished without a trace from the Pacific Ocean. This island was supposed to be located between Australia and New Caledonia and can be seen in the older versions of Google Maps and several other scientific and nautical maps.

The original location of the Sandy Island

    Just recently a research vessel sailed to the location to find nothing but deep blue Pacific more than 4,500 feet deep. The researchers and doctoral students overboard the ship saw this mysterious island on all the scientific maps and weather maps but not on one navigational chart that was on their ship. There was no indication of any land mass at the exact location where the Sandy Island was shown.

    If Sandy Island did exist, it would sit in the French territorial waters. But the French government denies that any of its official maps ever listed the invisible island. If such an island never existed, how did it find its way on several maps. Google is not the only one to depict this invisible island. Bing Maps, Yahoo maps and several other nautical maps, weather maps and scientific maps show this phantom island at the exactly same location.

    A number of theories abound about the mysterious island. For instance, it's possible that it was added to a map at some point to prevent copyright infringements. This sort of tactic is common on street maps, where phantom streets are sometimes added to flag counterfeiters. But the practice is highly unusual for nautical charts, since these maps rely on strict accuracy for their credibility. Google Maps does not show this mysterious Sandy or the Sable Island.

 The current Google Maps does not show Sandy Island

    The phantom island, which is also called Sable Island on some charts, is reminiscent of another famous fictional island, the one from the television series "Lost". In the series, a group of strangers crash land on a mysterious island in the middle of the Pacific Ocean. The island is eventually revealed to possess magical qualities, such as the ability to become invisible when outsiders search for it.

    Could this disappearing island be a case of fiction masking reality? It's certainly fun to think about.

Comments

  1. if it has vanished it has ,nothing mysterious about it.you are also going to vanish one day and the earlier you, would better it would be for mankind,and there would be nothing mysterious about it!
    U R actually creating excitement about nothing, and trying to look "intellectual"!
    My foot!

    ReplyDelete
  2. Could happen. GIS practitioners see coastal land changes via accretion and erosion. Some islands move as I've read about. This can be studied using historic aerial photos of the land mass.

    ReplyDelete
  3. Sandy Island (sometimes labelled in French: Île de Sable) is a non-existent island that was charted for over a century as lying between Australia and New Caledonia in the Coral Sea. If the island existed, it would be within French territorial waters.[1] The island was included on many maps and nautical charts from as early as the 18th Century, and gained wide attention in 2012 when it was definitively shown not to exist by an Australian surveyor ship. The island was quickly removed from many maps, including those of the National Geographic Society and of Google maps. Source: http://en.wikipedia.org/wiki/Sandy_Island_%28New_Caledonia%29

    ReplyDelete

Post a Comment

Please leave your comments here...

Recommended for You

Playing with the markers and info window bubbles...

    In the last few posts, we have seen some marker examples and some information window examples. Now, lets do something interesting combining these two things. Just writing that "This is an info window" in the information bubble is not very interesting! And I know this...Have gone through the same phase!     So, today we will do something interesting! We will display the latitude- longitude co-ordinates of the point that the user clicks on the map! Doing this is not at all complex! Copy paste the following code and you will see for yourself a map coming to life!     The output of the above code looks as seen in the result section above! If you have any queries regarding the above code please comment on the blog post or feel free to contact me at my mail ID .

Form info window

         Today we will look at a Google Maps API v3 example to add a form in the information bubble! This is usually required when we wish to accept some data/information from the user! This data can be saved to a server in the form of an XML file or a database! The information can then be retrieved back at a later stage, when necessary!          In this example we will only look at form in the information bubble! The connectivity part with the server will be discussed in another post! So, today's code snippet is as seen below! <html> <head> <title> Google Maps API v3 - Adding marker and info window on Click and creating a form in the infowindow with the lat-lng information in it. </title> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> var map;    //When using ev...

Material UI, Google Polymer & Web Components

    Google introduced Material UI during the Google I/O a few days back. Since then the web is all abuzz with articles about material UI and what Polymer is and how these 2 fit together. In this article today, I will try and helps us all to get a better understanding of these new concepts.     So, let's start with Material UI first. Google has for long been trying to bridge the gap between the Web and the Android worlds with a unified user interface and Google's Material UI is a big step towards this. The new design philosophy is about dynamically adjusting the elements according to screen size, add more white space between elements, provide a lot of user feedback using animations, make use of bold UI colors and be flat and 3D about the design at the same time. Now that sounds really cool, isn't it? Well, actually it is and you will actually appreciate and enjoy it all the more when you watch the following video from this year's Google I/O.   ...

Jquery Mobile - Multi-page structure

    In this post today, we will have a look at the multi-page Jquery mobile architecture. We have discussed the single page architecture in detail in the previous post . In case you have missed it, I recommend you to have a look at it first, before you proceed to the Jquery Mobile Multi-page architecture.     Jquery multi-page architecture is nothing but a collection of DIVs stacked together in a single HTML page linked to each other using the div IDs. Let's take a look at the example below and then discuss it in detail.  The example shows a three "page" site built with 3 jQuery Mobile divs navigated by linking to an id placed on each page wrapper. Note that the id's on the page wrappers are only needed to support the internal page linking, and are optional if each page is a separate HTML document. Here is what three pages look inside the  body  element.     You must have observed that each of the page div has an attribute data-r...

Jquery Mobile - Single Page Structure

    We have been introduced to Jquery Mobile and have also seen some of the key features of the rich web framework in the previous posts. Today we will take a look at a general page structure using Jquery Mobile. So be ready to start off programming using Jquery Mobile.     The Jquery Mobile page structure is optimized to support a single page or local, internally linked multiple pages. What does this mean? Well, single page architecture means, having multiple pages that are linked to each other using the normal process of using the anchor tag. So, each page will have its own header, content and footer. The multiple page structure is basically having multiple pages in one single page within different DIVs. So each page becomes a DIV which is linked to another page using an id for that particular page DIV.     The multiple page architecture, though available is not popularly used because it results in a performance issue. The DOM becomes heavy as ...