Chennai Floods 2015 – A Geographic Analysis

On December 1–2, 2015, the Indian city of Chennai received more rainfall in 24 hours than it had seen on any day since 1901. The deluge followed a month of persistent monsoon rains that were already well above normal for the Indian state of Tamil Nadu. At least 250 people had died, several hundred had been critically injured, and thousands had been affected or displaced by the flooding that has ensued.

The image above provides satellite-based estimates of rainfall over southeastern India on December 1–2, accumulating in 30–minute intervals. The rainfall data is acquired from the Integrated Multi-Satellite Retrievals for GPM (IMERG), a product of the Global Precipitation Measurement mission. The brightest shades on the maps represent rainfall totals approaching 400 millimeters (16 inches) during the 48-hour period. These regional, remotely-sensed estimates may differ from the totals measured by ground-based weather stations. According to Hal Pierce, a scientist on the GPM team at NASA’s Goddard Space Flight Center, the highest rainfall totals exceeded 500 mm (20 inches) in an area just off the southeastern coast.

[Source: NASA http://earthobservatory.nasa.gov/IOTD/view.php?id=87131]

Summary of this sample

This sample showcases not just the analysis and visualization capabilities of your GIS, but also the ability to store illustrative text, graphics and live code in a Jupyter notebook.

The sample starts off reporting the devastating effects of the flood. We plot the locations of rainfall guages and interpolate the data to create a continuous surface representing the amount of rainfall throughout the state.

Next we plot the locations of major lakes and trace downstream the path floods waters would take. We create a buffer around this path to demark at risk areas.

In the second part of the sample, we take a look at time series satellite imagery and observe the human impacts on natural reservoirs over a period of two decades.

We then vizualize the locations of relief camps and analyze their capacity using pandas and matplotlib. We aggregate the camps district wise to understand which ones have the largest number of refugees.

In the last part, we perform a routing analysis to figure out the best path to route emergency supplies from storage to the relief camps

First, let's import all the necessary libraries and connect to our GIS via an existing profile or creating a new connection by e.g. gis = GIS("https://www.arcgis.com", "username", "Password").

import datetime

%matplotlib inline
import matplotlib.pyplot as pd
from IPython.display import display, YouTubeVideo

import arcgis
from arcgis.gis import GIS
from arcgis.features.analyze_patterns import interpolate_points
from arcgis.geocoding import geocode
from arcgis.features.find_locations import trace_downstream
from arcgis.features.use_proximity import create_buffers

gis = GIS('home')

Chennai Floods Explained

YouTubeVideo('x4dNIfx6HVs')

The catastrophic flooding in Chennai is the result of the heaviest rain in several decades, which forced authorities to release a massive 30,000 cusecs from the Chembarambakkam reservoir into the Adyar river over two days, causing it to flood its banks and submerge neighbourhoods on both sides. It did not help that the Adyar’s stream is not very deep or wide, and its banks have been heavily encroached upon over the years. Similar flooding triggers were in action at Poondi and Puzhal reservoirs, and the Cooum river that winds its way through the city. While Chief Minister J Jayalalithaa said, during the earlier phase of heavy rain last month, that damage during the monsoon was “inevitable”, the fact remains that the mindless development of Chennai over the last two decades — the filling up of lowlands and choking of stormwater drains and other exits for water — has played a major part in the escalation of the crisis.

[Source: Indian Express http://indianexpress.com/article/explained/why-is-chennai-under-water/#sthash.LlhnqM4B.dpuf]

How much rain and where?

To get started with our analysis, we bring in a map of the affected region. The map is a live widget that is internally using the ArcGIS JavaScript API.

chennai_pop_map = gis.map("Chennai")
chennai_pop_map

We can search for content in our GIS and add layers to our map that can be used for visualization or analysis:

chennaipop = gis.content.search("India Subdistrict boundaries owner: api_data_owner", 
                                item_type="Feature Layer")[0]
chennaipop
India Subdistrict Boundaries
This layer shows the Subdistrict level boundaries of India. The boundaries are optimized to improve Data Enrichment analysis performance.Feature Layer Collection by api_data_owner
Last Modified: September 07, 2020
0 comments, 1 views

Assign an optional JSON paramter to specify its opacity, e.g. map.add_layer(chennaipop, {"opacity":0.7}) or else just add the layer with no transparency.

chennai_pop_map.add_layer(chennaipop, {"renderer":"ClassedColorRenderer", 
                           "field_name": "TOTPOP_CY", 
                           "opacity":0.5})

To get a sense of how much it rained and where, let's use rainfall data for December 2nd 2015, obtained from the Regional Meteorological Center in Chennai. Tabular data is hard to visualize, so let's bring in a map from our GIS to visualize the data:

rainfall = gis.content.search("Chennai_precipitation owner: api_data_owner", 
                              item_type="Feature Layer")[0]
rainfall_map = gis.map("Tamil Nadu, India")
rainfall_map

We then add this layer to our map to see the locations of the weather stations from which the rainfall data was collected:

rainfall_map.add_layer(rainfall, {"renderer":"ClassedSizeRenderer", 
                          "field_name":"RAINFALL" })

Here we used the smart mapping capability of the GIS to automatically render the data with proportional symbols.

Spatial Analysis

Rainfall is a continuous phenonmenon that affects the whole region, not just the locations of the weather stations. Based on the observed rainfall at the monitoring stations and their locations, we can interpolate and deduce the approximate rainfall across the whole region. We use the Interpolate Points tool from the GIS's spatial analysis service for this.

The Interpolate Points tool uses empirical Bayesian kriging to perform the interpolation.

interpolated_rf = interpolate_points(rainfall, field='RAINFALL')

Let us create another map of Tamil Nadu state and render the output from Interpolate Points tool

intmap = gis.map("Tamil Nadu")
intmap
intmap.add_layer(interpolated_rf['result_layer'])

We see that rainfall was most severe in and around Chennai as well some parts of central Tamil Nadu.

What caused the flooding in Chennai?

A wrong call that sank Chennai

Much of the flooding and subsequent waterlogging was a consequence of the outflows from major reservoirs into swollen rivers and into the city following heavy rains. The release of waters from the Chembarambakkam reservoir in particular has received much attention. [Source: The Hindu, http://www.thehindu.com/news/cities/chennai/chennai-floods-a-wrong-call-that-sank-the-city/article7967371.ece]

lakemap = gis.map("Chennai")
lakemap.height='450px'
lakemap

Let's have look at the major lakes and water reservoirs that were filled to the brim in Chennai due the rains. We plot the locations of some of the reservoirs that had a large outflow during the rains:

To plot the locations, we use geocoding tools from the tools module. Your GIS can have more than 1 geocoding service, for simplicity, the sample below chooses the first available geocoder to perform an address search

lakemap.draw(geocode("Chembarambakkam, Tamil Nadu")[0], 
             {"title": "Chembarambakkam", "content": "Water reservoir"})
lakemap.draw(geocode("Puzhal Lake, Tamil Nadu")[0], 
             {"title": "Puzhal", "content": "Water reservoir"})
lakemap.draw(geocode("Kannampettai, Tamil Nadu")[0], 
             {"title": "Poondi Lake ", "content": "Water reservoir"})

To identify the flood prone areas, let's trace the path that the water would take when released from the lakes. To do this, we first bring in a layer of lakes in Chennai:

chennai_lakes = gis.content.search("ChennaiLakes owner: api_data_owner", 
                                   item_type="Feature Layer")[0]
chennai_lakes
chennai lakes
Rainfall in Chennai, India. Updated in UC 2019Feature Layer Collection by api_data_owner
Last Modified: July 29, 2020
0 comments, 2 views

Now, let's call the Trace Downstream analysis tool from the GIS:

downstream = trace_downstream(chennai_lakes)
downstream.query()
<FeatureSet> 11 features

The areas surrounding the trace paths are most prone to flooding and waterlogging. To identify the areas that were at risk, we buffer the traced flow paths by one mile in each direction and visualize it on the map. We see that large areas of the city of Chennai were susceptible to flooding and waterlogging.

floodprone_buffer = create_buffers(downstream, [ 1 ], units='Miles')
lakemap.add_layer(floodprone_buffer)

Nature's fury or human made disaster?

"It is easy to attribute the devastation from unexpected flooding to the results of nature and climate change when in fact it is a result of poor planning and infrastructure. In Chennai, as in several cities across the country, we are experiencing the wanton destruction of our natural buffer zones—rivers, creeks, estuaries, marshlands, lakes—in the name of urban renewal and environmental conservation.

The recent floods in Chennai are a fallout of real estate riding roughshod over the city’s waterbodies. Facilitated by an administration that tweaked and modified building rules and urban plans, the real estate boom has consumed the city’s lakes, ponds, tanks and large marshlands.

The Ennore creek that used to be home to sprawling mangroves is fast disappearing with soil dredged from the sea being dumped there. The Kodungaiyur dump site in the Madhavaram–Manali wetlands is one of two municipal landfills that service the city. Velachery and Pallikaranai marshlands are a part of the Kovalam basin that was the southern-most of the four river basins for the city. Today, the slightest rains cause flooding and water stagnation in Velachery, home to the city’s largest mall, several other commercial and residential buildings, and also the site where low income communities were allocated land. The Pallikaranai marshlands, once a site for beautiful migratory birds, are now home to the second of the two landfills in the city where the garbage is rapidly leeching into the water and killing the delicate ecosystem."

[Source: Chennai's Rain Check https://www.epw.in/journal/2015/49/commentary/chennais-rain-check.html]

There are several marshlands and mangroves in the Chennai region that act as natural buffer zones to collect rain water. Let's see the human impact on Pallikaranai marshland over the last decade by comparing satellite images.

def exact_search(my_gis, title, owner_value, item_type_value, max_items_value=20):
    final_match = None
    search_result = my_gis.content.search(query= title + ' AND owner:' + owner_value, 
                                          item_type=item_type_value, max_items=max_items_value, outside_org=True)
    
    if "Imagery Layer" in item_type_value:
        item_type_value = item_type_value.replace("Imagery Layer", "Image Service")
    elif "Layer" in item_type_value:
        item_type_value = item_type_value.replace("Layer", "Service")
    
    for result in search_result:
        if result.title == title:
            final_match = result
            break
    return final_match

ls_water = exact_search(gis, 'Landsat GLS Multispectral', 'esri', 'Imagery Layer')
ls_water
Landsat GLS Multispectral
Landsat GLS 30 and 60m Multispectral 8 band images with visual renderings and indices.Imagery Layer by esri
Last Modified: May 03, 2018
0 comments, 7,363 views

Lets us see how the Pallikaranai marshland has changed over the past few decades, and how this has also contributed to the flooding. We create two maps and load the Land / Water Boundary layer to visualize this. This image layer is time enabled, and the map widget gives you the ability to navigate this dataset via time as well.

ls_water_lyr = ls_water.layers[0]
from arcgis.geocoding import geocode
area = geocode("Tamil Nadu, India", out_sr=ls_water_lyr.properties.extent.spatialReference)[0]
ls_water_lyr.extent = area['extent']

In the cell below, we will use a band combination [5,4,3] (a.k.a. mid-IR (Band 5), near-IR (Band 4) and red (Band 3)) of Landsat to provide definition of land-water boundaries and highlights subtle details not readily apparent in the visible bands alone. The reason that we use more infrared bands is to locate inland lakes and streams with greater precision. Generally, the wetter the soil, the darker it appears, because of the infrared absorption capabilities of water.

# data source option 
from arcgis.raster.functions import stretch, extract_band
target_img_layer = stretch(extract_band(ls_water_lyr, [5,4,3]),
                           stretch_type="percentclip", gamma=[1,1,1], dra=True)

Use the cell below to filter imageries based on the temporal conditions, and export the filtered results as local images, then show comparatively with other time range. You can either use the where clause e.g. where="(Year = " + str(start_year) + ")", or use the temporal filter as shown below.

import pandas as pd
from arcgis import geometry
import datetime as dt

def filter_images(my_map, start_year, end_year):
    selected = target_img_layer.filter_by(where="(Category = 1) AND (CloudCover <=0.2)",
                                          time=[dt.datetime(start_year, 1, 1), dt.datetime(end_year, 1, 1)],
                                          geometry=arcgis.geometry.filters.intersects(ls_water_lyr.extent))
    my_map.add_layer(selected)
    
    fs = selected.query(out_fields="AcquisitionDate, GroupName, Month, DayOfYear, WRS_Row, WRS_Path")
    tdf = fs.sdf  
    return tdf

First, search for qualified satellite imageries (tiles) intersecting with the area of interest at year 1991.

satmap1 = gis.map("Pallikaranai, Tamil Nadu, India", 13)
df = filter_images(satmap1, 1991, 1992) 
df.head()

Then search for satellite imageries intersecting with the area of interest at 2009.

satmap2 = gis.map("Pallikaranai, Tamil Nadu, India", 13)
df = filter_images(satmap2, 2009, 2010)
df.head()
from ipywidgets import *

satmap1.layout=Layout(flex='1 1', padding='10px', height='300px')
satmap2.layout=Layout(flex='1 1', padding='10px', height='300px')

box = HBox([satmap1, satmap2])
box

The human impact on the marshland is all too apparent in the satellite images. The marshland has shrunk to less than a third of its size in just two decades.

"Not long ago, it was a 50-square-kilometre water sprawl in the southern suburbs of Chennai. Now, it is 4.3 square kilometres – less than a tenth of its original. The growing finger of a garbage dump sticks out like a cancerous tumour in the northern part of the marshland. Two major roads cut through the waterbody with few pitifully small culverts that are not up to the job of transferring the rain water flows from such a large catchment. The edges have been eaten into by institutes like the National Institute of Ocean Technology. Ironically, NIOT is an accredited consultant to prepare Environmental Impact Assessments on various subjects, including on the implications of constructing on waterbodies.

Other portions of this wetland have been sacrificed to accommodate the IT corridor. But water offers no exemption to elite industry. Unmindful of the lofty intellectuals at work in the glass and steel buildings of the software parks, rainwater goes by habit to occupy its old haunts, bringing the back-office work of American banks to a grinding halt."

[Source: http://scroll.in/article/769928/chennai-floods-are-not-a-natural-disaster-theyve-been-created-by-unrestrained-construction]

Flood Relief Camps

To provide emergency assistance, the Tamil Nadu government has set up several flood relief camps in the flood affected areas. They provide food, shelter and the basic necessities to thousands of people displaced by the floods. The locations of the flood relief camps was obtained from http://cleanchennai.com/floodrelief/2015/12/09/relief-centers-as-on-8-dec-2015/ with https://ciifoundation.in/Tamil-Nadu-Flood-Relief-2015.php and published to the GIS as a layer, that is visualized below:

relief_centers = gis.content.search("Chennai Relief Centers owner: api_data_owner", item_type="Feature Layer")[0]
relief_centers
chennai_relief_centers
Feature Layer Collection by api_data_owner
Last Modified: September 03, 2020
0 comments, 2 views
reliefmap = gis.map("Chennai")
reliefmap

Assign an optional JSON paramter to specify its opacity, e.g. reliefmap.add_layer(chennaipop, {"opacity":0.5}) or else just add the layer with no transparency.

reliefmap.add_layer(chennaipop, {"opacity":0.5})
reliefmap.add_layer(relief_centers)

Let us read the relief center layer as a pandas dataframe to analyze the data further

relief_data = relief_centers.layers[0].query().sdf
relief_data.head()
Contact_NoDivision__FIDF_LocationsNo_of_CentNo_of_famiNo_of_persSHAPESl_No_SymbolIDZone______
0Balamurali, 9445190311101Poonthotam School, Chennai1065200{"x": 8919695.334199999, "y": 1464332.82629999...1I
1Jayakumar, 944519030222St.Joseph church community Hall, Chennai0200600{"x": 8936283.704100002, "y": 1469202.8202, "s...2
2Jayakumar, 944519030223Nehru Nagar chennai Middle school, Chennai075250{"x": 8916764.954599999, "y": 1450941.69069999...3
3Shanmugam, 944519030174Kalaimagal School, Chennai01550{"x": 8924034.069200002, "y": 1462457.79919999...4
4Rameshkumar, 944519030445Ramanathapuram School, Chennai0100300{"x": 8919695.334199999, "y": 1464332.82629999...5
relief_data['No_of_pers'].sum()
31478
relief_data['No_of_pers'].describe()
count     136.000000
mean      231.455882
std       250.334202
min        10.000000
25%        60.000000
50%       150.000000
75%       300.000000
max      1500.000000
Name: No_of_pers, dtype: float64
relief_data['No_of_pers'].hist()
<matplotlib.axes._subplots.AxesSubplot at 0x29b5361a748>
<Figure size 432x288 with 1 Axes>

In our dataset, each row represents a relief camp location. To quickly get the dimensions (rows & columns) of our data frame, we use the shape property

relief_data.shape
(136, 11)

As of 8th December, 2015, there were 31,478 people in the 136 relief camps. Let's aggregate them by the district the camp is located in. To accomplish this, we use the aggregate_points tool.

chennai_pop_featurelayer = chennaipop.layers[3]
res = arcgis.features.summarize_data.aggregate_points(  relief_centers, 
                                                        chennai_pop_featurelayer, 
                                                        False, 
                                                        ["No_of_pers Sum"])
aggr_lyr = res['aggregated_layer']
reliefmap.add_layer(aggr_lyr, { "renderer": "ClassedSizeRenderer", 
                               "field_name":"sum_no_of_pers"})
df = aggr_lyr.query().sdf
df
OBJECTIDPoint_CountIDNAMETOTPOP_CYsum_no_of_persShape_LengthShape_AreaAnalysisAreaSHAPE
01143360205699Poonamallee71471827850.5694530.01200255.599737{"rings": [[[80.05174000000005, 13.14300600000...
12133360205700Ambattur62533117890.5923470.01138352.718308{"rings": [[[80.08826400000004, 13.20953500000...
2323360290000Maduravoyal467100970.3547410.00343315.903703{"rings": [[[80.14401524500005, 13.09860751100...
3413360390000Ayanavaram6039603000.1818840.0012425.754733{"rings": [[[80.20368600000006, 13.13102900000...
45233360390003Purasaiwalkam98928663370.2433840.0014576.748570{"rings": [[[80.30656800000008, 13.10099500100...
56153360390004Aminjikarai26373732460.1996960.0013916.442165{"rings": [[[80.20415364600007, 13.10895212100...
67133360390005Egmore46564554470.2288390.0014376.656538{"rings": [[[80.24363995400006, 13.08219684900...
7833360390006Mylapore58049714800.2047260.0018648.634713{"rings": [[[80.28478300000006, 13.05313100100...
8953360390007Mambalam20478314000.1903450.0012435.757650{"rings": [[[80.21407458000004, 13.05186367100...
91053360390008Guindy61173015550.2855760.0017368.045807{"rings": [[[80.23336013100004, 13.05392379000...
1011213360405702Sriperumbudur56842231551.8859390.054392252.106866{"rings": [[[79.91464300000007, 13.05119900000...
111243360405703Tambaram4194749500.4550810.00520924.147825{"rings": [[[80.12628400000006, 12.95073900000...
121383360405704Alandur74483412560.2524720.00294013.626024{"rings": [[[80.16960003300005, 13.00364795800...
131483360405705Sholinganallur60840516320.6286260.01072649.714683{"rings": [[[80.20367200000004, 13.01127000000...
141513360405706Chengalpattu371148491.0379860.023588109.397146{"rings": [[[80.12614700000006, 12.89905000000...

Let us represent the aggreate result as a table:

df = aggr_lyr.query().sdf

df2 = df[['NAME', 'sum_no_of_pers']]
df2.set_index('NAME', inplace=True)
df2
sum_no_of_pers
NAME
Poonamallee2785
Ambattur1789
Maduravoyal97
Ayanavaram300
Purasaiwalkam6337
Aminjikarai3246
Egmore5447
Mylapore1480
Mambalam1400
Guindy1555
Sriperumbudur3155
Tambaram950
Alandur1256
Sholinganallur1632
Chengalpattu49
df2.plot(kind='bar')
<matplotlib.axes._subplots.AxesSubplot at 0x2479a049588>
<Figure size 432x288 with 1 Axes>

Routing Emergency Supplies to Relief Camps

A centralized location has been established at Nehru Stadium to organise the relief materials collected from various organizations and volunteers. From there, the relief material is distributed to the needy flood affected people.

The GIS provided routing tools that can help plan routes of the relief trucks from the center to relief camps:

routemap = gis.map("Chennai")
routemap
nehru_stadium = geocode('Jawaharlal Nehru Stadium, Chennai')[0]
routemap.draw(nehru_stadium, {"title": "Nehru Stadium", 
                              "content": "Chennai Flood Relief Center"})
start_time = datetime.datetime(2015, 12, 13, 9, 0)
routes = arcgis.features.use_proximity.plan_routes(
    relief_centers, 
    15, 
    15, 
    start_time, 
    nehru_stadium, 
    stop_service_time=30)
routemap.add_layer(routes['routes_layer'])
Input field [OID] was not mapped to a field in the network analysis class "Orders".
Input field [OID] was not mapped to a field in the network analysis class "Depots".
Network elements with avoid-restrictions are traversed in the output (restriction attribute names: "Avoid Unpaved Roads" "Avoid Private Roads" "Through Traffic Prohibited" "Avoid Gates").
{"messageCode": "AO_100116", "message": "Only 10 out of 15 routes are needed to reach all stops. If you want to use more routes, run Plan Routes again but reduce the limits on the maximum number of stops or the total route time per vehicle.", "params": {"routeCount": 15, "routesUsed": 10}}
routemap.add_layer(routes['assigned_stops_layer'])
routemap.add_layer(routes['routes_layer'])

Once the routes have been generated, they can be given to drivers, and used to ensure that relief material is promptly delivered to those in need and help alleviate the suffering they are going through.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.