Similar data is also available from US Embassy. http://newdelhi.usembassy.gov/airqualitydataemb.html
Use python to read and process the data. # import modules %pylab inline import pandas as pd import numpy as np from urllib import urlopen import matplotlib.pyplot as plt # open csv file from the web url='http://newdelhi.usembassy.gov/airqualitydataemb/aqm2014.csv' tips=pd.read_csv(urlopen(url), skiprows=2, skip_footer=8, parse_dates=[['Date', 'Time']]) # clean up data tips=tips.replace('NoData', np.nan) tips=tips.fillna(method='pad') tips = tips.ix[2:] tips=tips.set_index(['Date_Time']) tips['US Embassy-New Delhi'] = tips['US Embassy-New Delhi'].astype(integer) # create charts based on first 50 rows tips[['US Embassy-New Delhi']][:50].plot() -- Shantanu Oak On Thursday, 31 December 2015 21:28:40 UTC+5:30, Debamitro Chakraborti wrote: > > From tomorrow the Delhi govt will try an odd-even scheme for private > vehicles entering the city. It might be helpful to have csv data of > December and January for air pollution. CPCB does give the data in the site > http://www.cpcb.gov.in/CAAQM/mapPage/frmdelhi.aspx?stateID=6 and > sometimes an advance search works there as well - but I couldn't find a way > of getting csv data. > > Regards, > Debamitro > -- Datameet is a community of Data Science enthusiasts in India. Know more about us by visiting http://datameet.org --- You received this message because you are subscribed to the Google Groups "datameet" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
