Skip to main content

A grand GIS project!

          India is mapping out its newest national asset, a state-of-the art online information bank, which promises to transform governance, aid planning and make life easier for the man on the street. Called National GIS, this geographical information system powered service would be the first one-stop database of India's natural and physical assets, providing information and services about government schemes and businesses -- right from locating malls, hospitals or ATMs to lodging complaints.

          The locational data service, expected to be fully operational in 3 years, would be accorded the status of a national asset and can accessed through desktops or mobiles. National GIS, which is expected to help boost productivity and keep a check on wasteful expenditure, will have a "citizen layer" that will make it possible for individuals to geographically tag complaints and grievances on a real-time basis that will be accessible to users across three levels-—government, businesses and citizens.

          It will also link individuals with UID numbers to their geographical location. The project is the brainchild of the Planning Commission, which has set up a 12-member core group to work out the organizational structure, technological base, costs and user interface of the database. In order to make GIS database a national asset, a proper administrative setup is required.

          Although GIS services are being provided both by the government and the private sector, they are not standardized or even accurate. It is the first time the government is dealing with the standardization of GIS, which has been available in the US since the 1980s. If assets would be standardized, governance would become easy.

          The committee's role is to lay the standards for GIS, such as the accuracy of the road network; stopping PDS pilferage by ensuring vehicles actually deliver to fair price shops; property taxes can be accurately collected since people tend to under-report; consumer indexing of electrical utilities to overlay the user and the power network on the digital map; health and education system rollout, besides others.

          In its initial draft, the core group has envisioned a digital map with geo-tagged spatial data--containing 36 broad categories--that can currently be sourced from various government and private databases. The government already has a sizeable resource of multi-resolution satellite images and topographical and thematic maps. There are also GIS initiatives of the Natural Resources Management System, National Spatial Data Infrastructure and National Urban Information Systems.

          However, none of these are integrated with each other, making it impossible for one government agency to use information of another while alienating private stakeholders altogether. The GIS map will source data from the Planning Commission, census, infrastructure and sectoral datasets of ministries and states and integrate it in one national frame. For the process of integration, the core group has suggested establishing an Indian National GIS Organisation (INGO) that will be the main agency implementing the programme. The first organisation to benefit from such an exercise will be the Planning Commission, which will get a "Plan GIS" in a year if the proposal is cleared by the government.

 Source: Economic Times

Comments

Recommended for You

Is Google cheating?

               I found this piece of interesting fact, accidently while browsing the internet. Google shows different maps for India, China and USA. Confused hun! Well don’t be…Just read on… In Indian version of Google Maps, you can see Arunachal Pradesh and eastern part of Jammu and Kashmir as integral part of India. In US version of Google Maps, you can see Arunachal Pradesh and Jammu and Kashmir as a disputed region. In the Chinese version of the Google Maps, you can see Arunachal Pradesh and JnK as not a part of India.                 Many people complained this issue to Google. A Google employee responded : “ We do show different versions of this border, because we required to by law. Indian law requires us to show it one way, and the Chinese law requires us to show it another way . If we can legally do so, we strive to present b...

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...

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...

Drive along - Cool coding

         This is something that will demonstrate to you the power of mapping! This is a Google Maps API v2 example, but just copy and paste the code in an html file and you will see something very cool! This will prove that mapping is real fun!          Let's have a look at the code first. Copy this code in your html file. Don't worry about the length of the code and the post in general. Just execute the code and you will surely enjoy what you see! <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <title> Drive Along </title> <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=ABQIAAAAu3HXU_hLdVPTFGqLed_FCxT2yXp_ZAY8_ufC3CFXhHIE1NvwkxQbblEPYBGNoRsuuSU9aBfSq4VAZA" type="text/javascript"> </script> <script src="http://econym.org.uk/gmap/epoly.js" type="text/javascript"> ...

A Giant called Google...

    Wondering what you will be reading in this post today and what is "Google Giant"! Well, I was working on a simple project a couple of months back and that is the time when I was amazed and by the size of data that Google Maps servers might be having! As most of the readers (developers and enthusiast included) would know or might have noticed, Google maps are rendered by stitching small images together. You must have observed this on quite a number of occasions, when you see grey tiles when you have a slow internet connection in particular. It takes time for the images or tiles as we call them to be displayed.     Let us try and estimate what could be the size of the Google Maps data! Before proceeding, let's make a few assumptions and considerations. 1. Let's consider the Google Street View maps only. 2. The zoom level that is considered for the calculations is 21 - the max zoom level allowed on Google Maps API. 3. All the numbers are just an esti...