Skip to main content

Indian Archeologists discover prehistoric maps

          An archaeological team, led by T M Keshava from Bangalore, discovered maps that date back to 1500-2000 BC. The place is located around Tungabhadra River near Hampi in Karnataka, India. Unlike modern maps that rely on technology, ancient men banked on their eyesight and memory.

          The map was depicted on the roof of caves of Chikramapura village. What was once thought to be a megalithic burial site with just paintings of animals and humans; is proof of the prehistoric man’s cartographic skill. Keshava’s finding is believed to be the first-ever aerial map of a region drawn by a prehistoric man. While paintings of animals such as cows, hunting scenes and human figurines are common across pre-historic settlements, only the Chikramapura village caves, also called Kadebagilu rock shelters, feature maps.

          “A previous study in 1984 at these caves by scholars like Dr R Sundara had concluded they were just megalithic burials, but we can now say that they are maps,” Keshava said. According to Keshava, the prehistoric man obtained a bird’s eye view of an area by climbing a hillock and standing at a vantage point. He would then observe his settlement — houses, pathways, waterbodies, etc. With these images in mind, he would paint them in his cave. “We compared them with the present maps and we were dumbstruck with the findings,” he said.

          Researchers found many similarities with the modern-day maps. The triangular marks used to represent hillocks on these maps are similar to the symbols used by surveyors. Further, the narrow passage has been compared to the figure of a human being, while the ladder-like symbol indicates a pathway. It took Keshava and his team almost a year to confirm the findings.

          The paintings have been depicted on granite and done with red laterite clay. The circular-shaped settlement is 35 metres in radius. “However, due to the exposure to elements, some parts of the paintings have got spoilt,” said an archaeologist.

Comments

Recommended for You

Retriving co-ordinates...

         We have seen 2 Google Maps API v3 examples wherein we have retrieved the latitude-longitude co-ordinates of the point of click on the map. In the first example we have displayed the co-ordinates in the information window and in the second , we have displayed the co-ordinates in a form in the information window.         Today we will create a code to retrieve the latitude longitude co-ordinates in a text box while simultaneously a marker appears on the map as well. So, here goes the code. <html> <head> <title> Google Maps API v3 - Adding marker on Click and retrieving the co-ordinates in a text box </title> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script type="text/javascript"> var map;    //When using event as a parameter to a function declare map, strictly as a global variable fun...

Google Street View Image API

    Street View is one of most used feature of the Google Maps and why not? You can actually see any part of the world as if you are visiting the place at that very moment. And now with the Google Street View Image API, you don't even need to carry a camera with you to the places you visit. You can take-in all the scenic beauty without even bothering about clicking a single picture. You can come back from your vacation and get a few images using the Google Street View Image API and show those images to your friends and relatives. Create an album of high definition images and go ahead and share it on Facebook for your friends to have a look.     Using the Google Street View Image API is very simple and anybody can make use of it without any programming knowledge required. I will walk you through the entire process of effectively using the Google Street View Image API. So if you are set, let's go on an amazing ride across the globe with the Google Street Views. ...

Jquery Mobile - Basic Listview

    Continuing with the Jquery Mobile Examples, today we will take a look at the listviews in Jquery Mobile. Listviews are popularly used in websites and web-applications that are built on the Jquery Mobile platform and hence we will look at the various list patterns available with Jquery Mobile. Lists are used for a various purposes like data display, navigation, result lists and data entry. We will start with the most basic listview example and look through several examples over a number of posts.     A listview is simply an unordered list containing linked list items with a data-role="listview" attribute. jQuery Mobile will apply all the necessary styles to transform the list into a mobile-friendly listview with right arrow indicator that fills the full width of the browser window. When you tap on the list item, the framework will trigger a click on the first link inside the list item, issue an Ajax request for the URL in the link, create the new pag...

Jquery Mobile - Listview with data-inset property

    In the previous post we looked at a basic example of the jQuery Mobile listview. The listview in jQuery Mobile stretches 100% of the width with sharp edges and straight corners. If you wish to have rounded corners for your lists you need to make use of the data-inset="true" property.     Lets take a look at the example below. The lists as seen in the result below have rounded corners as opposed to the straight edges in the example in the previous post, where we had not made use of the data-inset property. When we say that we did not use the data-inset property, we mean that the value of data-inset property is "false". UPDATE: The following example makes use of the next stable version of Jquery Mobile 1.3.1     Hope you have followed the post. Do let me know your feedback on the same and drop your commenets below.

Two maps on the same page - Side-by-side

    How good I am feeling to post a code example after such a long time! It's been all "news" over the past so many posts! Well now that I am finally doing a code example, I am posting a very highly requested code sample. Placing two Google Maps on the same page (Now that's simple you would say!), but side by side. Now this is the thing that most people struggle with. Well, implementing the second part is also very simple, as you will see in today's code.     Let's see the code. Here it is!     The output of the above code will be as seen in the result section above.     As most of you will realize, there are two maps, one centered at "Pune" and other at "Noida". Why I chose these two locations? Well, just like that!...The main issue of concern is how the maps appeared side-by-side and not one below the other as would be normal behavior of two "div" elements used in the same page. Now here is the trick! Check out the...