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 .

Ground Truth - How Google Builds Maps

    Todays's article is cross posted from The Atlantic 's Tech section. The article was posted by Alexis Madrigal who is a senior editor at The Atlantic , where he oversees the Technology channel. So, thanks to The Atlantic and Alexis Madrigal, we will have an exclusive look inside Ground Truth , the secretive program to build the world's best accurate maps.     Behind every Google Map, there is a much more complex map that's the key to your queries but hidden from your view. The deep map contains the logic of places: their no-left-turns and freeway on-ramps, speed limits and traffic conditions. This is the data that you're drawing from when you ask Google to navigate you from point A to point B -- and last week, Google showed me the internal map and demonstrated how it was built. It's the first time the company has let anyone watch how the project it calls GT, or "Ground Truth," actually works.     Google opened up at a key moment in its evo...

Difference between word-break: break-all versus word-wrap: break-word

    The 2 CSS properties  word-break: break-all  and  word-wrap: break-word  appear to work in the same way or generate the same output, but there is a slight difference between the 2 and we will be discussing these differences today.     Take a look at the example above. The difference is quite evident, however I will try to explain it further. word-break: break-all Irrespective of whether it’s a continuous word or many words, break-all breaks them up at the edge of the width limit even within the characters of the same word word-wrap: break-word This will wrap long words onto the next line. break-word adjusts different words so that they do not break in the middle.     So if you have many fixed-size spans which get content dynamically, you might just prefer using  word-wrap: break-word , as that way only the continuous words are broken in between, and in case it’s a sentence comprising many words, the spa...

The Bicycling Layer...

    Recreational cyclists and bike commuters alike can plot cycle-friendly routes, find trails, and avoid snarling traffic with Google Map's Bicycle layer. Map's bike-friendly, green-toned map layer is very eye-pleasing. The Google Maps API allows you to add bicycle information to your maps using the BicyclingLayer object.     The BicyclingLayer renders a layer of bike paths, suggested bike routes and other overlays specific to bicycling usage on top of the given map. Additionally, the layer alters the style of the base map itself to emphasize streets supporting bicycle routes and de-emphasize streets inappropriate for bicycles.     Let us have a look at the following example. The code has a map which is centered at Pune, India. There are very few cycle tracks in Pune and so you will see just a few dark green lines on the map. But if you would change the latitude-longitude values in the code and center the map at USA, then you will see a...

Fusion Table Layer...

    Today we will have a look at the "Fusion Table" Layer example. But before we start with the actual code, we will have a look at what Fusion Table is. Google Fusion Table is a free service for sharing and visualizing data online. It allows you to share data, merge data from multiple tables into interesting derived tables, and see the most up-to-date data from all sources. There is a lot of documentation about Google Fusion Table available on the web. You can visit their home page or the Google Research Blog to gather more information about Fusion Tables.     Let us have a look at the following code. The code is very short and simple to understand!     The few things to look out for in the above code are: The manner in which mapTypeId has been specified! In other Google Maps API v3 examples, we have seen that we specify mapTypeID as ROADMAP, SATELLITE, etc. i.e., all the letters are in uppercase and not in quotes! However, in this...