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

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 .

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

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

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

Four maps on the same page - Playing with events

    In today's example we will see how to add 4 maps on the same web page and then play a bit around with some events in Google Maps API. Lets have a look at the code. All that you have to do to get the code working is copy the code in a text file and save it with .html extension. Open this html file in your browser and you will see the four maps in action!     Adding the four maps on a webpage should not be a challenge anymore, and all the more after the example Two Google Maps - Side by side that I shared a few weeks back! All you need to pay attention is to the events. There are two events "drag" and "zoom_changed". As the event names suggest, when you will drag or zoom the first map (upper left map), the remaining three maps will also zoom and pan accordingly! Try it out and leave a comment of what you think of it! You can also drop your queries or doubts about the same here!     The output of the above code appears as seen in th...