Skip to main content

Power Cuts in India - Let's see how hot it gets this summer

           A bunch of Twitter users have come together to gather information about power cuts in India and make an infographic map to map the geographical spread of power cuts across the country.

           It all started when Shefaly Yogendra, a London-based investment consultant, saw a discussion on power cuts on her Twitter timeline and suggested to her friends, "May be you guys should tweet #powercut with location. The infographic will highlight the need for investment. To many people." The idea caught on. Users had begun writing about the time and location of the power cuts in their respective areas with the hashtag #powercutindia. Ajay Kumar, a software engineer, put up a web page that had started mapping power cuts in the country on the basis of the tagged tweets. Now the page can be accessed at http://powercuts.in. A Twitter account by the name of @PowerCutsIn has also been employed to collect data.

           The page is built on an Ushahidi platform, which provides free software for information collection. While the updates from Twitter are being incorporated on to the map by a team of 11 moderators information received via the smartphone app updates the map automatically.

           First city to be mapped, according to Ajay on Twitter, was Gurgaon. In the first couple of days, 46 reports had been mapped, at a rate of 9.2 reports a day. These reports have further been sorted into categories of "planned", "unplanned", "good news" (indicating no power cuts) and "voltage". An open Google document, which anyone can read, edit and shared, was also floated online, where people volunteered to do the data crunching and provide tech support. Those involved are trying to take this beyond an empty data-visualisation exercise and trying to figure out what to do with it.

           Crowdsourcing, or getting a large group of people to provide data on a particular subject, has been a rage ever since the web went social. A similar mapping exercise, which maps mobile network problems in India, already exists online by the name of Mobile Telco #Fail.

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

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 .

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