Skip to content

Instantly share code, notes, and snippets.

@HarryStevens
Last active April 27, 2018 13:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save HarryStevens/e605a99d49878fac2e2117256608a3a4 to your computer and use it in GitHub Desktop.
Swiftmap Bubbles, Layers & Tiles
license: gpl-3.0
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
font-family: "Helvetica Neue", sans-serif;
}
#legend {
position: absolute;
background: rgba(255, 255, 255, .8);
padding: 10px;
}
#map {
width: 100%;
height: 100vh;
}
</style>
</head>
<body>
<div id="legend">
<b>Select</b><br />
<input type="radio" name="property" value="students" checked /> Total students<br />
<input type="radio" name="property" value="student_teacher_ratio" /> Students per teacher
</div>
<div id="map"></div>
<!-- To load data, we use modules for d3-request & d3-queue -->
<script src="https://d3js.org/d3-collection.v1.min.js"></script>
<script src="https://d3js.org/d3-dispatch.v1.min.js"></script>
<script src="https://d3js.org/d3-dsv.v1.min.js"></script>
<script src="https://d3js.org/d3-request.v1.min.js"></script>
<script src="https://d3js.org/d3-queue.v3.min.js"></script>
<script src="https://unpkg.com/swiftmap@0.2.4/dist/swiftmap.min.js"></script>
<script>
// Create the map.
var map = swiftmap.map("#map");
// Set up a scheme for each visual property.
var schemeRadius = swiftmap.schemeContinuous()
.from(d => +d.students)
.to([1, 20]);
var schemeFill = swiftmap.schemeCategorical()
.from(d => d.most_urgent)
.to({
"TRUE": "#e74c3c",
"FALSE": "rgb(119, 119, 119)"
});
var schemeStroke = swiftmap.schemeCategorical()
.from(d => d.most_urgent)
.to({
"TRUE": "rgb(191, 39, 24)",
"FALSE": "rgb(51, 51, 51)"
});
var schemeOpacity = swiftmap.schemeCategorical()
.from(d => d.most_urgent)
.to({
"TRUE": .9,
"FALSE": .4
});
d3.queue()
.defer(d3.json, "delhi_1997-2012_district.json") // polygons data
.defer(d3.json, "new_schools.json") // points data
.defer(d3.csv, "schools.csv") // tabular data
.await(ready);
function ready(error, districts, schools, data){
// Add data to each scheme.
schemeRadius.data(data, d => +d.edudel_code);
schemeFill.data(data, d => +d.edudel_code);
schemeStroke.data(data, d => +d.edudel_code);
schemeOpacity.data(data, d => +d.edudel_code);
// Add tiles and geospatial data to your map.
// Then draw the polygons and bubbles.
map
.tiles("cartoLight")
.layerPolygons(districts)
.fit()
.drawBoundary()
.layerPoints(schools, d => +d.properties.edudel_code)
.drawPoints();
// Add the schemes to the bubbles for styling.
map.layers[1].points
.attr("r", schemeRadius)
.style("fill", schemeFill)
.style("stroke", schemeStroke)
.style("opacity", schemeOpacity);
// Update the points' radii when the radio input changes.
var inputs = document.getElementsByName("property");
for (var i = 0, l = inputs.length; i < l; i++) {
inputs[i].onchange = function() {
schemeRadius.from(d => +d[this.value]);
map.layers[1].points.transition().duration(1500).attr("r", schemeRadius);
}
}
// It's easy to resize a Swiftmap.
window.onresize = () => map.resize();
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We can make this file beautiful and searchable if this error is corrected: It looks like row 273 should actually have 21 columns, instead of 10. in line 272.
edudel_code,DISTNAME,PINCODE,SCHOOL_CODE,SCHOOL_NAME,VILLAGE_NAME,lat,lng,most_urgent,ac_year,students,students_1t5,students_6t12,students_10,students_12,teachers,student_teacher_ratio,transition_9to10,transition_11to12,splitcheck,new_teacher
1412288,NORTH WEST DELHI,110086,7010103803,"Govt. Boys Sr. Sec. School, Block-P, Sultan Puri, Delhi",038-MANGOLPURI NORTH,28.692372,77.067557,TRUE,2015-16,1108,0,1108,102,97,9,123.1111111,#N/A,#N/A,#N/A,2
1105107,NORTH EAST DELHI,110053,7030125405,"Govt. Boys Sr. Sec. School, Gautam Puri (New Usmanpur), Delhi",254-BRAHAMPURI,28.68179521,77.26203334,TRUE,2015-16,1578,0,1578,83,107,17,92.82352941,0.289198606,0.87704918,FALSE,2
1412254,NORTH WEST DELHI,110081,7010103302,"Govt. Boys Sr. Sec. School No.2, Mubarakpur Dabas Delhi",033-PRATAP VIHAR,28.71210563,77.04112001,TRUE,2015-16,1586,0,1586,122,26,25,63.44,0.7625,0.8125,FALSE,3
1925403,SOUTH DELHI,110076,7090120704,"Govt. Boys Sr. Sec. School , Madanpur Khadar New Delhi",207-MADANPUR KHADAR,28.5354383,77.2639326,TRUE,2015-16,1067,0,1067,127,0,17,62.76470588,#N/A,#N/A,#N/A,2
1309280,NORTH WEST DELHI,110042,7010101603,"Govt. Co-ed. Middle School, Bhalswa Village, Delhi",016-JAHANGIRPURI - I,28.735011,77.1636148,TRUE,2015-16,1245,0,1245,0,0,20,62.25,NA,NA,FALSE,3
1923357,SOUTH DELHI,110062,7090118602,"Govt. Sarvodaya Bal Vidyalaya, J-Block, Sangam Vihar, New Delhi",186-SANGAM VIHAR (WEST),28.49296319,77.24177556,TRUE,2015-16,2290,43,2247,190,0,38,60.26315789,0.788381743,NA,FALSE,3
1104143,NORTH EAST DELHI,110094,7030127101,"Govt. Boys Sr. Sec. School, Karawal Nagar, Delhi",271-KARAWAL NAGAR (WEST),28.73325412,77.26551034,TRUE,2015-16,4866,0,4866,796,551,84,57.92857143,0.728937729,0.697468354,FALSE,5
1106259,NORTH EAST DELHI,110093,7030126404,"Govt. Girls Sr. Sec. School, Mandoli Extension, Delhi",264-HARSH VIHAR,28.70147145,77.31589912,TRUE,2015-16,2712,0,2712,308,456,47,57.70212766,0.853185596,0.776831346,FALSE,0
1104262,NORTH EAST DELHI,110094,7030127002,"Govt. Girls Sr. Sec. School, Tukhmirpur, Delhi",270-TUKHMIRPUR,28.71051122,77.26396487,TRUE,2015-16,2720,0,2720,359,251,48,56.66666667,0.789010989,0.871527778,FALSE,9
1923346,SOUTH DELHI,110062,7090118601,"Govt. Sarvodaya Kanya Vidyalaya , J-Block, Sangam Vihar, New Delhi",186-SANGAM VIHAR (WEST),28.50111431,77.23432502,TRUE,2015-16,3213,373,2840,147,0,57,56.36842105,0.844827586,NA,FALSE,2
1106265,NORTH EAST DELHI,110093,7030126406,"Govt. Boys Sr. Sec. School, Mandoli Extension, Delhi",264-HARSH VIHAR,28.70147081,77.31593701,TRUE,2015-16,2020,0,2020,286,289,36,56.11111111,0.826589595,0.905956113,FALSE,2
1106264,NORTH EAST DELHI,110093,7030126405,"Govt. Co-ed. Sr. Sec. School, Sunder Nagari, Delhi",264-HARSH VIHAR,28.69398604,77.32169605,TRUE,2015-16,3295,0,3295,239,188,60,54.91666667,0.773462783,0.620462046,FALSE,1
1104008,NORTH EAST DELHI,110053,7030125609,"Govt. Boys Sr. Sec. School No.2, Yamuna Vihar, C-Block, Delhi",256-YAMUNA VIHAR,28.70037397,77.2768138,FALSE,2015-16,3768,0,3768,354,299,69,54.60869565,0.428053204,0.433962264,FALSE,1
1413320,NORTH WEST DELHI,110085,7010102106,"Govt. Co-ed. Middle School, Sect-15, Pkt-F&G, Rohini, Delhi",021-ROHINI,NA,NA,FALSE,2015-16,381,0,381,0,0,7,54.42857143,NA,NA,FALSE,0
1104419,NORTH EAST DELHI,110094,7030126701,"Govt. Girls Sr. Sec. School No.2, Tukhmirpur, Delhi",267-NEHRU VIHAR,28.699877,77.270506,TRUE,2015-16,3637,0,3637,400,554,67,54.28358209,0.796812749,0.85625966,FALSE,11
1310408,NORTH WEST DELHI,110040,7010100103,"Govt. Sarvodaya Vidyalaya, Sect. B-4, Narela, Delhi",001-NARELA,28.85825695,77.08528283,FALSE,2015-16,976,201,775,110,0,18,54.22222222,0.93220339,NA,FALSE,1
1925401,SOUTH DELHI,110044,7090120408,"Govt. Girls Sr. Sec. School No.1, Molar Band, New Delhi",204-MOLARBAND,28.5053722,77.3116222,TRUE,2015-16,3616,0,3616,431,503,69,52.4057971,#N/A,#N/A,#N/A,0
1310414,NORTH WEST DELHI,110039,7010102805,"Govt. Girls Sr. Sec. School No.1, Bawana J. J. Colony , Delhi",028-BAWANA,28.80789911,77.05146307,TRUE,2015-16,2905,0,2905,349,113,56,51.875,1.026470588,0.474789916,FALSE,5
1207230,NORTH DELHI,110042,7020100601,"Govt. Girls Sec. School, Mukund Pur Village, Delhi",6-MUKANDPUR,28.7491315,77.18178062,TRUE,2015-16,2327,0,2327,0,0,45,51.71111111,NA,NA,FALSE,3
1104014,NORTH EAST DELHI,110094,7030126802,"Govt. Boys Sec. School, Mustafabad, Gali No.19, Delhi",268-MUSTAFABAD,28.71092521,77.27559674,TRUE,2015-16,2369,0,2369,200,0,47,50.40425532,0.372439479,NA,FALSE,3
1207236,NORTH DELHI,110084,7020100602,"Govt. Boys Sec. School, Mukund Pur Village, Delhi",6-MUKANDPUR,28.74916672,77.18181607,TRUE,2015-16,2317,0,2317,0,0,46,50.36956522,NA,NA,FALSE,4
1104022,NORTH EAST DELHI,110094,7030126902,"Govt. Sarvodaya Kanya Vidyalaya, Khajoori Khas Delhi",269-KHAZOORI KHAS,28.70999607,77.25776651,TRUE,2015-16,5234,386,4848,536,299,104,50.32692308,0.71657754,0.7475,FALSE,9
1925400,SOUTH DELHI,110044,7090120407,"Govt. Girls Sr. Sec. School No.4, Molar Band, New Delhi",204-MOLARBAND,28.5053722,77.3116222,TRUE,2015-16,4383,0,4383,377,406,88,49.80681818,#N/A,#N/A,#N/A,0
1104335,NORTH EAST DELHI,110094,7030127202,"Govt. Girls Sr. Sec. School, Sonia Vihar, 4 1/2 Pusta, Delhi",272-SONIA VIHAR,28.7333916,77.24847891,TRUE,2015-16,4422,0,4422,699,500,90,49.13333333,0.985895628,0.961538462,FALSE,13
1925402,SOUTH DELHI,110044,7090120409,"Govt. Sarvodaya Bal Vidyalaya No.2, Molar Band, New Delhi",204-MOLARBAND,28.493449,77.326605,TRUE,2015-16,1955,53,1902,310,0,40,48.875,#N/A,#N/A,#N/A,4
1104011,NORTH EAST DELHI,110094,7030127103,"Govt. Girls Sr. Sec. School, Sabhapur, Delhi",271-KARAWAL NAGAR (WEST),28.74786787,77.25699393,TRUE,2015-16,1746,0,1746,195,165,36,48.5,0.890410959,0.91160221,FALSE,3
1413317,NORTH WEST DELHI,110085,7010102109,"Govt. Boys Middle School, Sect-24, Rohini, Delhi",021-ROHINI,28.726588,77.0873555,FALSE,2015-16,767,0,767,0,0,16,47.9375,NA,NA,FALSE,0
1104142,NORTH EAST DELHI,110094,7030127102,"Govt. Girls Sr. Sec. School, Karawal Nagar, Delhi",271-KARAWAL NAGAR (WEST),28.73374762,77.26551387,TRUE,2015-16,6381,0,6381,892,759,134,47.61940299,0.883168317,0.83960177,FALSE,24
1925404,SOUTH DELHI,110076,7090120705,"Govt. Girls Sr. Sec. School, Madanpur Khadar New Delhi",207-MADANPUR KHADAR,28.5422605,77.2974259,TRUE,2015-16,1407,0,1407,167,0,30,46.9,#N/A,#N/A,#N/A,4
1208229,NORTH DELHI,110052,7020107305,"Govt. Sarvodaya Bal Vidyalaya, Lalita Block, Shastri Nagar Delhi",73-SHASTRI NAGAR,28.67703074,77.17812525,FALSE,2015-16,466,232,234,0,0,10,46.6,NA,NA,FALSE,0
1104336,NORTH EAST DELHI,110094,7030127201,"Govt. Boys Sr. Sec. School, Sonia Vihar, 4 1/2 Pusta, Delhi",272-SONIA VIHAR,28.73327709,77.24826337,TRUE,2015-16,3385,0,3385,496,264,74,45.74324324,0.764252696,0.605504587,FALSE,10
1105241,NORTH EAST DELHI,110053,7030125406,"Govt. Boys Sr. Sec. School, X-Block, Brahmpuri, Delhi",254-BRAHAMPURI,28.67900771,77.26616616,TRUE,2015-16,956,0,956,30,42,21,45.52380952,0.508474576,0.552631579,FALSE,1
1617222,WEST DELHI,110041,7070104311,"Govt. Sarvodaya Kanya Vidyalaya, Shiv Ram Park, Nangloi-Najafgarh Road, New Delhi",043-NANGLOI EAST,28.64253328,77.05869637,TRUE,2015-16,1656,384,1272,45,0,37,44.75675676,0.692307692,NA,FALSE,3
1106120,NORTH EAST DELHI,110093,7030126302,"Govt. Boys Sr. Sec. School, Saboli, Delhi",263-SABOLI,28.70127874,77.30396193,TRUE,2015-16,2458,0,2458,276,49,55,44.69090909,0.438791733,0.731343284,FALSE,3
1106014,NORTH EAST DELHI,110093,7030124310,"Govt. Boys Sec. School, Nand Nagri Extn., Block F1-F2, Delhi",243-NANG NAGRI,28.69290251,77.31477889,TRUE,2015-16,1371,0,1371,113,0,31,44.22580645,0.44140625,NA,FALSE,0
1104406,NORTH EAST DELHI,110094,7030126208,"Govt. Boys Sr. Sec. School, East Gokul Pur, Delhi",262-GOKULPUR,28.70371667,77.29081704,TRUE,2015-16,3604,0,3604,320,267,82,43.95121951,0.462427746,0.590707965,FALSE,2
1104002,NORTH EAST DELHI,110094,7030126904,"Govt. Sarvodaya Bal Vidyalaya, Khajoori Khas, Delhi",269-KHAZOORI KHAS,28.71019039,77.25752471,TRUE,2015-16,3992,239,3753,251,258,91,43.86813187,0.306097561,0.556034483,FALSE,6
1104028,NORTH EAST DELHI,110094,7030126801,"Govt. Girls Sec. School, Mustufabad, Delhi",268-MUSTAFABAD,28.71086778,77.27571727,TRUE,2015-16,2826,0,2826,374,0,65,43.47692308,0.601286174,NA,FALSE,2
1925012,SOUTH DELHI,110019,7090119607,"Govt. Boys Sr. Sec. School , Block-G, Kalkaji New Delhi",196-KALKAJI,28.54294699,77.25971444,TRUE,2015-16,1172,0,1172,88,73,27,43.40740741,0.376068376,0.496598639,FALSE,4
1310415,NORTH WEST DELHI,110039,7010102804,"Govt. Boys Sr. Sec. School No.2 , Bawana J. J. Colony, Delhi",028-BAWANA,28.80789613,77.0519097,TRUE,2015-16,3151,0,3151,246,158,73,43.16438356,0.675824176,0.748815166,FALSE,7
1925053,SOUTH DELHI,110044,7090120402,"Govt. Girls Sr. Sec. School No.2, Molar Band, New Delhi",204-MOLARBAND,28.4946702,77.32607848,TRUE,2015-16,3166,0,3166,233,355,75,42.21333333,0.188358933,0.291700904,TRUE,1
1104261,NORTH EAST DELHI,110094,7030127001,"Govt. Boys Sr. Sec. School, Tukhmirpur, Delhi",270-TUKHMIRPUR,28.7107077,77.26426236,TRUE,2015-16,2489,0,2489,170,311,59,42.18644068,0.388127854,0.625754527,FALSE,5
1106021,NORTH EAST DELHI,110095,7030124201,"Govt. Sarvodaya Kanya Vidyalaya (Vishwamitra), Seemapuri, Delhi",242-NEW SEEMA PURI,28.67861101,77.32682329,TRUE,2015-16,4295,391,3904,366,339,103,41.69902913,0.802631579,0.733766234,FALSE,5
1411022,NORTH WEST DELHI,110052,7010106704,"Govt. Boys Sr. Sec. School, Wazirpur, JJ Colony, Delhi",067-WAZIRPUR,28.6833851,77.16936035,TRUE,2015-16,1539,0,1539,160,67,37,41.59459459,0.506329114,0.446666667,FALSE,2
1925027,SOUTH DELHI,110020,7090119901,"Govt. Girls Sr. Sec. School, Tekhand, Okhla Phase-I, New Delhi",199-TEHKHAND,28.52472272,77.28375167,TRUE,2015-16,1861,0,1861,215,70,45,41.35555556,0.911016949,0.514705882,FALSE,3
1104420,NORTH EAST DELHI,110094,7030126702,"Govt. Boys Sr. Sec. School No.2, Tukhmirpur, Delhi",267-NEHRU VIHAR,28.7106998,77.264704,TRUE,2015-16,2887,0,2887,310,397,70,41.24285714,0.698198198,0.661666667,FALSE,7
1925353,SOUTH DELHI,110025,7090120802,"Govt. Boys Sr. Sec. School, Jasola Village (Shaheen Bagh), New Delhi",208-SARITA VIHAR,28.54554219,77.29612799,TRUE,2015-16,1731,0,1731,246,38,42,41.21428571,0.845360825,0.2375,FALSE,2
1104029,NORTH EAST DELHI,110053,7030125203,"Govt. Girls Sr. Sec. School, Vijay Park, Maujpur, Delhi",252-MAUZPUR,28.6961607,77.27654287,FALSE,2015-16,1813,0,1813,219,229,44,41.20454545,0.688679245,0.713395639,FALSE,1
1413077,NORTH WEST DELHI,110086,7010102702,"Govt. Boys Sr. Sec. School, Begumpur, Delhi",027-BEGUMPUR,28.72381433,77.06690808,FALSE,2015-16,2181,0,2181,177,157,53,41.1509434,0.384782609,0.625498008,FALSE,5
1105236,NORTH EAST DELHI,110053,7030123401,"Govt. Sarvodaya Kanya Vidyalaya, Buland Masjid, Shastri Park, Delhi",234-GANDHI NAGAR,28.67207108,77.25238057,TRUE,2015-16,1399,613,786,94,18,34,41.14705882,0.862385321,1,FALSE,2
1106118,NORTH EAST DELHI,110093,7030124601,"Govt. Boys Sr. Sec. School, DDA Flats, East of Loni Road Delhi",246-ASHOK NAGAR,28.69571104,77.30563829,FALSE,2015-16,2664,0,2664,251,272,65,40.98461538,0.339648173,0.467353952,FALSE,2
1104400,NORTH EAST DELHI,110094,7030126201,"Govt. Girls Sr. Sec. School, East Gokul Pur, Delhi",262-GOKULPUR,28.70394697,77.29064771,TRUE,2015-16,2077,0,2077,232,219,51,40.7254902,0.516703786,0.649851632,FALSE,1
1106258,NORTH EAST DELHI,110093,7030126403,"Govt. Boys Sec. School, A-Block, Harsh Vihar, Delhi",264-HARSH VIHAR,28.70184741,77.32427808,TRUE,2015-16,1219,0,1219,180,0,30,40.63333333,0.649819495,NA,FALSE,1
1925399,SOUTH DELHI,110044,7090120406,"Govt. Boys Sr. Sec. School No.3, Molar Band, New Delhi",204-MOLARBAND,28.5071713,77.2993247,TRUE,2015-16,2943,0,2943,389,378,73,40.31506849,#N/A,#N/A,#N/A,0
1925360,SOUTH DELHI,110044,7090120307,"Govt. Boys Sr. Sec. School, Tajpur Pahri, Badarpur, New Delhi",203-BADARPUR,28.5071713,77.2993247,TRUE,2015-16,1446,0,1446,126,13,36,40.16666667,0.446808511,0.342105263,FALSE,0
1412253,NORTH WEST DELHI,110081,7010103301,"Govt. Girls Sr. Sec. School No.2, Mubarakpur Dabas Delhi",033-PRATAP VIHAR,28.71191459,77.04112307,TRUE,2015-16,1486,0,1486,169,0,37,40.16216216,0.824390244,NA,FALSE,3
1925339,SOUTH DELHI,110076,7090120601,"Govt. Boys Sec. School, Madanpur Khadar Extn. J.J.Colony New Delhi",206-OKHLA,28.53112637,77.31008305,TRUE,2015-16,2203,0,2203,285,0,55,40.05454545,0.796089385,NA,FALSE,1
1104153,NORTH EAST DELHI,110094,7030126901,"Govt. Girls Sr. Sec. School, Khajoori Khas, Delhi",269-KHAZOORI KHAS,28.71088155,77.25748864,TRUE,2015-16,2515,0,2515,296,318,63,39.92063492,0.840909091,0.861788618,FALSE,2
1925356,SOUTH DELHI,110020,7090119902,"Govt. Boys Sr. Sec. School, Tekhand, Okhla Phase-I, New Delhi",199-TEHKHAND,28.5246832,77.28379541,TRUE,2015-16,1828,0,1828,192,30,46,39.73913043,0.6,0.212765957,FALSE,2
1925040,SOUTH DELHI,110044,7090119704,"Govt. Sarvodaya Kanya Vidyalaya, Tuglakabad Village New Delhi",197-TUGLAKABAD,28.51023074,77.26666155,TRUE,2015-16,2335,195,2140,246,163,59,39.57627119,0.911111111,0.708695652,FALSE,2
1105239,NORTH EAST DELHI,110032,7030125903,"Govt. Co-ed. Sr. Sec. School, New Jafrabad, Delhi",259-JANTA COLONY,28.68272533,77.27688974,TRUE,2015-16,1028,0,1028,32,44,26,39.53846154,0.47761194,0.666666667,FALSE,2
1106117,NORTH EAST DELHI,110093,7030126303,"Govt. Girls Sr. Sec. School, Saboli, Delhi",263-SABOLI,28.70140763,77.30390355,TRUE,2015-16,2955,0,2955,494,38,75,39.4,0.851724138,0.703703704,FALSE,1
1617223,WEST DELHI,110041,7070104401,"Govt. Sarvodaya Bal Vidyalaya, Nihal Vilar, Nangloi, New Delhi",044-QUAMMRUDDIN NGR,28.66306814,77.0792067,TRUE,2015-16,983,46,937,48,0,25,39.32,0.685714286,NA,FALSE,4
1412089,NORTH WEST DELHI,110086,7010103901,"Govt. Girls Sr. Sec. School, Block-F, Sultanpuri, Delhi",039-SULTANPUR MAJRA,28.68995626,77.0703093,TRUE,2015-16,1295,0,1295,121,131,33,39.24242424,0.633507853,0.727777778,FALSE,2
1412085,NORTH WEST DELHI,110086,7010103903,"Govt. Boys Sr. Sec. School, Block-D, Sultanpuri, Delhi",039-SULTANPUR MAJRA,28.70174527,77.07714173,FALSE,2015-16,902,0,902,96,98,23,39.2173913,0.732824427,0.748091603,FALSE,0
1104003,NORTH EAST DELHI,110053,7030125610,"Govt. Sarvodaya Bal Vidyalaya No.2, Yamuna Vihar, B-Block, Delhi",256-YAMUNA VIHAR,28.69970293,77.27024285,TRUE,2015-16,3678,289,3389,456,376,94,39.12765957,0.527777778,0.659649123,FALSE,4
1002005,EAST DELHI,110092,7040121701,"Govt. Sarvodaya Bal Vidyalaya, West Vinod Nagar, Delhi",217-VINOD NAGAR,28.62164984,77.29751809,FALSE,2015-16,1677,339,1338,138,173,43,39,0.582278481,0.535603715,FALSE,0
1413319,NORTH WEST DELHI,110085,7010102107,"Govt. Boys Middle School, Sect-16, Pkt-D, Rohini, Delhi",021-ROHINI,NA,NA,FALSE,2015-16,273,0,273,0,0,7,39,NA,NA,FALSE,1
1412131,NORTH WEST DELHI,110086,7010103501,"Govt. Girls Sr. Sec. School, Nithari Delhi",035-KIRARI SULEMAN NGR.,28.70822832,77.05634514,TRUE,2015-16,4045,0,4045,459,490,104,38.89423077,0.754934211,0.839041096,FALSE,2
1413316,NORTH WEST DELHI,110085,7010102110,"Govt. Girls Middle School, Sect-24, Rohini, Delhi",021-ROHINI,28.7443932,77.1002004,FALSE,2015-16,583,0,583,0,0,15,38.86666667,#N/A,#N/A,#N/A,0
1822245,SOUTH WEST DELHI,110043,7080113403,"Govt. Co-ed. Sec. School, Vill. Nangli Sakrawati , New Delhi",134-NANGLI SAKRAWATI,28.62473591,77.01986015,TRUE,2015-16,1976,0,1976,231,0,51,38.74509804,0.553956835,NA,FALSE,2
1104021,NORTH EAST DELHI,110094,7030126202,"Govt. Sarvodaya Kanya Vidyalaya, Gokal Pur Village, Delhi",262-GOKULPUR,28.70241373,77.28730741,TRUE,2015-16,4182,292,3890,1045,644,108,38.72222222,0.957836847,0.99229584,FALSE,3
1412092,NORTH WEST DELHI,110086,7010103403,"Govt. Sarvodaya Bal Vidyalaya, Nithari Delhi",034-NITHARI,28.70871332,77.05533258,TRUE,2015-16,2744,79,2665,213,330,71,38.64788732,0.505938242,0.617977528,FALSE,1
1104417,NORTH EAST DELHI,110094,7030127104,"Govt. Boys Sr. Sec. School, Sabhapur, Delhi",271-KARAWAL NAGAR (WEST),28.74785772,77.25718203,TRUE,2015-16,1813,0,1813,183,151,47,38.57446809,0.544642857,0.68018018,FALSE,3
1821022,SOUTH WEST DELHI,110037,7080114303,"Govt. Sarvodaya Kanya Vidyalaya, Samalka New Delhi",143-KAPASHERA,28.53194295,77.08588815,FALSE,2015-16,4200,389,3811,304,223,109,38.53211009,0.551724138,0.825925926,FALSE,6
1310458,NORTH WEST DELHI,110040,7010100406,"Govt. Sarvodaya Bal Vidyalaya , Tikri Khurd, Delhi",004-BAKHTAWARPUR,28.8504108,77.0731084,FALSE,2015-16,1037,110,927,99,67,27,38.40740741,#N/A,#N/A,#N/A,5
1309262,NORTH WEST DELHI,110042,7010101802,"Govt. Boys Sr. Sec. School, Libaspur, Delhi",018-LIBASPUR,28.74901062,77.14312873,TRUE,2015-16,2607,0,2607,280,165,68,38.33823529,0.775623269,0.574912892,FALSE,0
1617001,WEST DELHI,110041,7070103005,"Govt. Boys Sr. Sec. School, Tikri Kalan, Delhi",030-MUNDKA,28.68621722,76.96313363,FALSE,2015-16,1684,0,1684,164,110,44,38.27272727,0.901098901,0.859375,FALSE,1
1618281,WEST DELHI,110059,7070112406,"Govt. Sarvodaya Bal Vidyalaya, Hastsal, Janta Flats, New Delhi",124-VIKAS NAGAR,28.62617056,77.06338467,TRUE,2015-16,1721,115,1606,160,152,45,38.24444444,0.535117057,0.591439689,FALSE,6
1104024,NORTH EAST DELHI,110053,7030125605,"Govt. Sarvodaya Kanya Vidyalaya No.2, Yamuna Vihar, C-Block, Delhi",256-YAMUNA VIHAR,28.69970479,77.27682924,TRUE,2015-16,3472,344,3128,438,340,91,38.15384615,0.658646617,0.7852194,FALSE,3
1925340,SOUTH DELHI,110076,7090120701,"Govt. Girls Sec. School, Madanpur Khadar Extn. J.J.Colony New Delhi",207-MADANPUR KHADAR,28.53108193,77.30992432,TRUE,2015-16,2402,0,2402,357,0,63,38.12698413,0.854066986,NA,FALSE,2
1925359,SOUTH DELHI,110044,7090120306,"Govt. Girls Sr. Sec. School, Tajpur Pahri, Badarpur, New Delhi",203-BADARPUR,28.4947856,77.3058772,TRUE,2015-16,1334,0,1334,103,53,35,38.11428571,0.609467456,0.5,FALSE,2
1925345,SOUTH DELHI,110025,7090120801,"Govt. Girls Sr. Sec. School, Jasola Village Shaheen Bagh, New Delhi",208-SARITA VIHAR,28.54557551,77.29617237,TRUE,2015-16,1749,0,1749,142,108,46,38.02173913,0.531835206,0.486486486,FALSE,2
1411035,NORTH WEST DELHI,110052,7010106701,"Govt. Sarvodaya Vidyalaya , Wazirpur Village, Delhi",067-WAZIRPUR,28.69013242,77.17228595,FALSE,2015-16,1061,238,823,61,41,28,37.89285714,0.535087719,0.445652174,FALSE,0
1104150,NORTH EAST DELHI,110053,7030125601,"Govt. Boys Sr. Sec. School (RDJK), Bhajanpura, D- Block, Delhi",256-YAMUNA VIHAR,28.69845256,77.26049958,FALSE,2015-16,1015,0,1015,106,76,27,37.59259259,0.394052045,0.503311258,FALSE,2
1618063,WEST DELHI,110059,7070112504,"Govt. Sarvodaya Kanya Vidyalaya, Mohan Garden, Uttam Nagar, New Delhi",125-MOHAN GARDEN,28.62564938,77.04628469,TRUE,2015-16,4395,362,4033,440,400,117,37.56410256,0.573663625,0.747663551,FALSE,4
1925035,SOUTH DELHI,110025,7090120603,"Govt. Sarvodaya Kanya Vidyalaya, Noor Nagar, Jamia Nagar, New Delhi",206-OKHLA,28.55868946,77.28760664,TRUE,2015-16,2738,511,2227,201,311,73,37.50684932,0.555248619,0.767901235,FALSE,3
1617021,WEST DELHI,110041,7070104304,"Govt. Girls Sr. Sec. School, Nangloi Delhi",043-NANGLOI EAST,28.68474347,77.06646811,TRUE,2015-16,1987,0,1987,190,126,53,37.49056604,0.591900312,0.594339623,FALSE,0
1208095,NORTH DELHI,110052,7020107302,"Govt. Sarvodaya Kanya Vidyalaya, Lalita Block, Shastri Nagar Delhi",73-SHASTRI NAGAR,28.67717986,77.17822006,TRUE,2015-16,1462,260,1202,133,150,39,37.48717949,0.726775956,0.925925926,FALSE,1
1309255,NORTH WEST DELHI,110033,7010100506,"Govt. Boys Sr. Sec. School, D-Block,Jahangirpuri, Delhi",005-BHALASWA JAHANGIRPURI,28.72889265,77.17376125,TRUE,2015-16,2731,0,2731,334,205,73,37.4109589,0.53525641,0.554054054,FALSE,2
1925009,SOUTH DELHI,110044,7090120405,"Govt. Sarvodaya Bal Vidyalaya No.1 , Molar Band, New Delhi",204-MOLARBAND,28.49528621,77.32636202,TRUE,2015-16,3741,49,3692,322,703,100,37.41,0.274042553,0.616666667,FALSE,0
1516140,WEST DELHI,110008,7070109405,"Govt. Boys Sr. Sec. School, West Patel Nagar, New Delhi",094-WEST PATEL NAGAR,28.65424147,77.16527966,TRUE,2015-16,2207,0,2207,127,257,59,37.40677966,0.291954023,0.523421589,FALSE,1
1412248,NORTH WEST DELHI,110086,7010102504,"Govt. Sarvodaya Bal Vidyalaya, Pooth Kalan, Rohini Extn.,Sector 20, Delhi",025-POOTH KALA,28.71043096,77.07651414,TRUE,2015-16,2728,0,2728,261,121,73,37.36986301,0.48603352,0.630208333,FALSE,0
1925342,SOUTH DELHI,110020,7090120001,"Govt. Boys Sr. Sec. School, Harkesh Nagar New Delhi",200-HARKESH NAGAR,28.54404749,77.2764403,TRUE,2015-16,2352,0,2352,144,108,63,37.33333333,0.301886792,0.545454545,FALSE,4
1617030,WEST DELHI,110043,7070112201,"Govt. Co-ed. Sr. Sec. School, Baprola, New Delhi",122-HASTSAL,28.6396911,77.00848629,TRUE,2015-16,5071,0,5071,266,416,136,37.28676471,0.322033898,0.581818182,FALSE,9
1104015,NORTH EAST DELHI,110094,7030126903,"Govt. Boys Sr. Sec. School, Khajoori Khas, Delhi",269-KHAZOORI KHAS,28.71095384,77.25804352,TRUE,2015-16,2348,0,2348,297,210,63,37.26984127,0.700471698,0.573770492,FALSE,3
1516013,WEST DELHI,110008,7070109406,"Govt. Boys Sr. Sec. School, Prem Nagar, New Delhi",094-WEST PATEL NAGAR,28.6617736,77.16273952,TRUE,2015-16,1638,0,1638,108,82,44,37.22727273,0.241610738,0.759259259,FALSE,5
1104023,NORTH EAST DELHI,110053,7030125606,"Govt. Girls Sr. Sec. School No.1, B-Block, Yamuna Vihar, Delhi",256-YAMUNA VIHAR,28.69907818,77.27090305,TRUE,2015-16,2931,0,2931,263,478,79,37.10126582,0.422150883,0.829861111,FALSE,2
1618058,WEST DELHI,110059,7070112401,"Govt. Boys Sr. Sec. School, Hastsal, Janta Flats, New Delhi",124-VIKAS NAGAR,28.63767169,77.0575855,TRUE,2015-16,2410,0,2410,165,270,65,37.07692308,0.426356589,0.502793296,FALSE,5
1309279,NORTH WEST DELHI,110033,7010101602,"Govt. Sarvodaya Kanya Vidyalaya, Block-A, Plot No.5, Jahangirpuri, Delhi",016-JAHANGIRPURI - I,28.7115748,77.1860118,TRUE,2015-16,889,146,743,0,14,24,37.04166667,NA,0.424242424,FALSE,3
1923066,SOUTH DELHI,110062,7090118202,"Govt. Boys Sr. Sec. School No.3, Sect-V, Dr. Ambedkar Nagar, New Delhi",182-AMBEDKAR NGR.,28.51965383,77.24192231,FALSE,2015-16,1259,0,1259,164,115,34,37.02941176,0.788461538,0.727848101,FALSE,1
1310008,NORTH WEST DELHI,110039,7010102705,"Govt. Boys Sr. Sec. School, Pooth Khurd, Delhi",027-BEGUMPUR,28.76555937,77.04809204,FALSE,2015-16,740,0,740,76,49,20,37,0.775510204,0.662162162,FALSE,2
1413268,NORTH WEST DELHI,110086,7010102701,"Govt. Girls Sr. Sec. School, Begampur, Delhi",027-BEGUMPUR,28.72374643,77.06698602,FALSE,2015-16,3057,0,3057,265,255,83,36.8313253,0.505725191,0.6,FALSE,0
1411038,NORTH WEST DELHI,110034,7010106301,"Govt. Girls Sr. Sec. School, Anandwas, (Currently at Kohat Enclave), Delhi",063-KOHAT ENCLAVE,28.68693657,77.14438997,FALSE,2015-16,1252,0,1252,127,64,34,36.82352941,0.579908676,0.603773585,FALSE,5
1923042,SOUTH DELHI,110062,7090117801,"Govt. Sarvodaya Kanya Vidyalaya (Bachan Prasad) , Deoli, New Delhi",178-DEVLI,28.49965274,77.23830555,TRUE,2015-16,4629,402,4227,518,409,126,36.73809524,0.687915007,0.749084249,FALSE,1
1925045,SOUTH DELHI,110019,7090119601,"Govt. Girls Sec. School, DDA Flats, Phase-II, Kalkaji, New Delhi",196-KALKAJI,28.53412997,77.25612929,TRUE,2015-16,1322,0,1322,212,0,36,36.72222222,0.818532819,NA,FALSE,0
1925049,SOUTH DELHI,110025,7090120602,"Govt. Girls Sr. Sec. School, Joga Bai, Jamia Nagar New Delhi",206-OKHLA,28.56533137,77.2851853,TRUE,2015-16,2497,0,2497,174,203,68,36.72058824,0.491525424,0.640378549,FALSE,3
1925006,SOUTH DELHI,110076,7090120703,"Govt. Sarvodaya Bal Vidyalaya (Rama Krishna) , Madanpur Khadar New Delhi",207-MADANPUR KHADAR,28.52938126,77.28886567,TRUE,2015-16,2276,181,2095,153,581,62,36.70967742,0.30417495,0.690844233,FALSE,4
1309273,NORTH WEST DELHI,110088,7010105505,"Govt. Boys Sr. Sec. School, Shalamar Village, Delhi",055-SHALIMAR BAGH (NORTH),28.7192534,77.15974397,TRUE,2015-16,1502,0,1502,168,123,41,36.63414634,0.664031621,0.621212121,FALSE,4
1002181,EAST DELHI,110092,7040122002,"Govt. Boys Sr. Sec. School No.3, Joshi Colony, Mandawali, Delhi",220-PATPARGANJ,28.63072449,77.29508196,FALSE,2015-16,1354,0,1354,72,99,37,36.59459459,0.322869955,0.475961538,FALSE,1
1207111,NORTH DELHI,110084,7020100704,"Govt. Girls Sr. Sec. School, Near Sant Nagar, Tomer Colony, Nathupura, Delhi",7-BURARI,28.74982213,77.19700267,TRUE,2015-16,2084,0,2084,226,231,57,36.56140351,0.591623037,0.73566879,FALSE,5
1309259,NORTH WEST DELHI,110033,7010100505,"Govt. Boys Sr. Sec. School, Block-K, Jahangirpuri, Delhi",005-BHALASWA JAHANGIRPURI,28.73025361,77.16716632,TRUE,2015-16,4419,0,4419,577,764,121,36.52066116,0.712345679,1.166412214,FALSE,5
1412259,NORTH WEST DELHI,110081,7010103405,"Govt. Boys Sec. School, Nithari Delhi",034-NITHARI,28.6158702,77.0906212,TRUE,2015-16,2336,0,2336,373,0,64,36.5,0.663701068,NA,FALSE,2
1412132,NORTH WEST DELHI,110086,7010103401,"Govt. Boys Sr. Sec. School No.2, Nithari Delhi",034-NITHARI,28.6809646,77.1957825,TRUE,2015-16,2514,0,2514,230,371,69,36.43478261,0.424354244,0.687037037,FALSE,6
1207117,NORTH DELHI,110084,7020100702,"Govt. Girls Sec. School, Burari, Delhi",7-BURARI,28.74897173,77.19750007,TRUE,2015-16,2693,0,2693,409,0,74,36.39189189,0.798828125,NA,FALSE,1
1309022,NORTH WEST DELHI,110009,7010101002,"Govt. Boys Secondary School, Dhakka, Delhi",010-TIMARPUR,28.7084651,77.20742091,FALSE,2015-16,727,0,727,87,0,20,36.35,0.639705882,NA,FALSE,3
1105008,NORTH EAST DELHI,110053,7030125002,"Govt. Sarvodaya Bal Vidyalaya, Jafrabad, Delhi",250-JAFFRABAD,28.68337636,77.27383097,TRUE,2015-16,2977,130,2847,388,213,82,36.30487805,0.725233645,0.540609137,FALSE,11
1105023,NORTH EAST DELHI,110053,7030125103,"Govt. Girls Sr. Sec. School, Gautam Puri, Near Water Tank, Delhi",251-NEW USMANPUR,28.68058701,77.26233174,TRUE,2015-16,1231,0,1231,184,127,34,36.20588235,0.691729323,0.729885057,FALSE,1
1310410,NORTH WEST DELHI,110040,7010100101,"Govt. Girls Sr. Sec. School, Sect. A-6, Pocket-2, Narela, Delhi",001-NARELA,28.8508005,77.10354023,FALSE,2015-16,1483,0,1483,148,136,41,36.17073171,0.751269036,0.804733728,FALSE,0
1105229,NORTH EAST DELHI,110053,7030125403,"Govt. Girls Sr. Sec. School, X-Block, Brahmpuri, Delhi",254-BRAHAMPURI,28.67906715,77.26616582,TRUE,2015-16,1302,0,1302,182,153,36,36.16666667,0.722222222,0.938650307,FALSE,0
1925062,SOUTH DELHI,110076,7090120702,"Govt. Sarvodaya Kanya Vidyalaya, Madanpur Khadar New Delhi",207-MADANPUR KHADAR,28.52948583,77.28879747,TRUE,2015-16,3833,302,3531,234,585,106,36.16037736,0.3046875,0.528933092,FALSE,1
1310395,NORTH WEST DELHI,110042,7010102602,"Govt. Boys Sr. Sec. School, Shahabad Dairy, Delhi",026-SAHIBABAD DAULATPUR,28.74422432,77.10052377,TRUE,2015-16,3001,0,3001,239,213,83,36.15662651,0.456978967,0.742160279,FALSE,5
1411018,NORTH WEST DELHI,110035,7010106204,"Govt. Boys Sr. Sec. School, Rampura, Delhi",062-RAM PURA,28.67667806,77.15309389,FALSE,2015-16,325,0,325,20,7,9,36.11111111,0.444444444,Inf,FALSE,2
1618277,WEST DELHI,110059,7070112505,"Govt. Boys Sr. Sec. School No.2, P-Block Mohan Garden, New Delhi",125-MOHAN GARDEN,28.62514046,77.04623013,FALSE,2015-16,1623,0,1623,131,128,45,36.06666667,0.374285714,0.695652174,FALSE,3
1309130,NORTH WEST DELHI,110033,7010101401,"Govt. Boys Sec. School, Azadpur Village Delhi",014-ADARSH NAGAR,28.70714156,77.17759511,TRUE,2015-16,1370,0,1370,202,0,38,36.05263158,0.759398496,NA,FALSE,2
1925061,SOUTH DELHI,110019,7090118504,"Govt. Sarvodaya Kanya Vidyalaya (Aruna Asif Ali), Tughlakabad Extn. New Delhi",185-TUGLAKABAD EXT.,28.52487321,77.26234423,TRUE,2015-16,2776,412,2364,189,361,77,36.05194805,0.697416974,0.699612403,FALSE,1
1412091,NORTH WEST DELHI,110081,7010103008,"Govt. Boys Sr. Sec. School, Mubarakpur Dabas Delhi",030-MUNDKA,28.71218163,77.0424112,TRUE,2015-16,1507,0,1507,162,137,42,35.88095238,0.432,0.619909502,FALSE,4
1925033,SOUTH DELHI,110025,7090120604,"Govt. Sarvodaya Kanya Vidyalaya, New Friends Colony New Delhi",206-OKHLA,28.56296286,77.27254701,TRUE,2015-16,1929,209,1720,177,125,54,35.72222222,0.463350785,0.555555556,FALSE,2
1309037,NORTH WEST DELHI,110009,7010101001,"Govt. Girls Sec. School, Dhakka, Delhi",010-TIMARPUR,28.7089783,77.20736046,TRUE,2015-16,893,0,893,109,0,25,35.72,0.605555556,NA,FALSE,0
1923017,SOUTH DELHI,110062,7090118209,"Govt. Boys Sr. Sec. School, Dr. Ambedkar Nagar, Sector-IV, (Tigari), New Delhi",182-AMBEDKAR NGR.,28.51798722,77.23352972,FALSE,2015-16,964,0,964,89,58,27,35.7037037,0.43627451,0.479338843,FALSE,1
1925341,SOUTH DELHI,110020,7090120002,"Govt. Girls Sr. Sec. School, Harkesh Nagar New Delhi",200-HARKESH NAGAR,28.54411636,77.27647186,TRUE,2015-16,2529,0,2529,254,97,71,35.61971831,0.513131313,0.373076923,FALSE,3
1618060,WEST DELHI,110059,7070112801,"Govt. Girls Sr. Sec. School, Near DDA Flats, Bindapur, New Delhi",128-BINDAPUR (WEST),28.6098459,77.06823915,FALSE,2015-16,2276,0,2276,290,297,64,35.5625,0.755208333,0.846153846,FALSE,0
1002006,EAST DELHI,110091,7040120902,"Govt. Sarvodaya Bal Vidyalaya (Prem Chand), Mayur Vihar, Phase I, Pkt. II, Delhi",209-MAYUR VIHAR PHASE-I,28.60989819,77.30251337,FALSE,2015-16,2346,423,1923,111,257,66,35.54545455,0.275434243,0.744927536,FALSE,0
1104004,NORTH EAST DELHI,110094,7030126206,"Govt. Boys Sr. Sec. School, Gokalpur Village, Delhi",262-GOKULPUR,28.70234783,77.2866141,TRUE,2015-16,2663,0,2663,258,295,75,35.50666667,0.568281938,0.423242468,FALSE,4
1310429,NORTH WEST DELHI,110082,7010100311,"Govt. Boys Sr. Sec. School, Block B, Holambi Kalan, Delhi",003-ALIPUR,28.81101048,77.09402807,TRUE,2015-16,1207,0,1207,143,131,34,35.5,0.641255605,0.642156863,FALSE,3
1106116,NORTH EAST DELHI,110093,7030124301,"Govt. Girls Sr. Sec. School, Block-A, Nand Nagri, Delhi",243-NANG NAGRI,28.69590791,77.30624838,TRUE,2015-16,2164,0,2164,139,235,61,35.47540984,0.317351598,0.741324921,FALSE,0
1617037,WEST DELHI,110041,7070103101,"Govt. Boys Sr. Sec. School, J. J. Colony, Nangloi, Delhi",031-NANGLOI JAT,28.68323886,77.05673984,TRUE,2015-16,3367,0,3367,307,259,95,35.44210526,0.565377532,0.580717489,FALSE,1
1310430,NORTH WEST DELHI,110040,7010100111,"Govt. Boys Sr. Sec. School, Sect. A-6, Pocket-2, Narela, Delhi",001-NARELA,28.8470921,77.0943522,TRUE,2015-16,1594,0,1594,214,110,45,35.42222222,0.990740741,0.662650602,FALSE,1
1618061,WEST DELHI,110058,7070112403,"Govt. Sarvodaya Kanya Vidyalaya, Hastasal Village, New Delhi",124-VIKAS NAGAR,28.63650616,77.05784351,TRUE,2015-16,3433,391,3042,312,365,97,35.39175258,0.78,0.858823529,FALSE,1
1105117,NORTH EAST DELHI,110053,7030125101,"Govt. Girls Sr. Sec. School, Gautam Puri (New Usmanpur), Delhi",251-NEW USMANPUR,28.68143803,77.2617524,TRUE,2015-16,2052,0,2052,238,188,58,35.37931034,0.7752443,0.917073171,FALSE,4
1002352,EAST DELHI,110096,7040121602,"Govt. Girls Sec. School, Gharoli, Mayur Vihar, Phase III, Delhi",216-GHAROLI,28.60485804,77.33467667,FALSE,2015-16,1449,0,1449,215,0,41,35.34146341,0.802238806,NA,FALSE,1
1106256,NORTH EAST DELHI,110093,7030126402,"Govt. Girls Sec. School, A-Block, Harsh Vihar, Delhi",264-HARSH VIHAR,28.70184741,77.32427808,TRUE,2015-16,1272,0,1272,286,0,36,35.33333333,0.953333333,NA,FALSE,0
1002354,EAST DELHI,110096,7040121601,"Govt. Boys Sec. School, Mayur Vihar, Phase III, Delhi",216-GHAROLI,28.6088946,77.32922631,TRUE,2015-16,1554,0,1554,276,0,44,35.31818182,0.92,NA,FALSE,3
1105014,NORTH EAST DELHI,110053,7030125006,"Govt. Boys Sec. School, New Seelam Pur, Delhi",250-JAFFRABAD,28.67344127,77.26433362,TRUE,2015-16,600,0,600,44,0,17,35.29411765,0.4,NA,FALSE,0
1412087,NORTH WEST DELHI,110086,7010103701,"Govt. Sarvodaya Bal Vidyalaya, Block-A, Sultanpuri, Delhi",037-SULTANPURI EAST,28.69913272,77.07681117,TRUE,2015-16,1623,12,1611,199,75,46,35.2826087,0.603030303,0.614754098,FALSE,4
1412090,NORTH WEST DELHI,110083,7010104601,"Govt. Sarvodaya Bal Vidyalaya, Block P, Mangolpuri, Delhi",046-MANGOLPURI EAST,28.69344762,77.08715477,TRUE,2015-16,1129,0,1129,155,104,32,35.28125,0.654008439,0.562162162,FALSE,5
1514004,WEST DELHI,110018,7070110803,"Govt. Boys Sr. Sec. School No.2, Khyala , New Delhi",108-KHYALA WEST,28.65620351,77.10391621,TRUE,2015-16,952,0,952,94,55,27,35.25925926,0.606451613,0.44,FALSE,2
1413267,NORTH WEST DELHI,110081,7010103001,"Govt. Sarvodaya Vidyalaya , Sawda Ghewara JJColonoy, H-Block, Delhi",030-MUNDKA,28.70053854,76.97628706,FALSE,2015-16,1126,261,865,74,44,32,35.1875,0.795698925,0.771929825,FALSE,1
1516010,WEST DELHI,110015,7070109902,"Govt. Sarvodaya Bal Vidyalaya, Block-18, Moti Nagar, New Delhi",099-MOTI NAGAR,28.6614484,77.13885455,TRUE,2015-16,1935,195,1740,181,206,55,35.18181818,0.515669516,0.78030303,FALSE,1
1105018,NORTH EAST DELHI,110053,7030125001,"Govt. Sarvodaya Kanya Vidyalaya (Zeenat Mahal) (Urdu Medium), Jafrabad, Delhi",250-JAFFRABAD,28.68342232,77.27364691,TRUE,2015-16,4850,456,4394,703,451,138,35.14492754,0.918954248,0.759259259,FALSE,5
1310025,NORTH WEST DELHI,110042,7010102811,"Govt. Girls Sr. Sec. School, Shahabad Dairy, Delhi",028-BAWANA,28.74415483,77.10052482,TRUE,2015-16,3690,0,3690,378,207,105,35.14285714,0.667844523,0.568681319,FALSE,4
1923052,SOUTH DELHI,110080,7090117701,"Govt. Girls Sr. Sec. School, Sangam Vihar, C-Block, New Delhi",177-SANGAM VIHAR,28.49891109,77.23921296,TRUE,2015-16,5867,0,5867,547,615,167,35.13173653,0.534701857,0.618712274,FALSE,0
1925024,SOUTH DELHI,110019,7090119606,"Govt. Boys Sec. School, DDA, Phase-II, Kalkaji, New Delhi",196-KALKAJI,28.53384951,77.25546896,FALSE,2015-16,701,0,701,83,0,20,35.05,0.399038462,NA,FALSE,0
1310002,NORTH WEST DELHI,110042,7010102603,"Govt. Sarvodaya Bal Vidyalaya, Prahalad Pur Delhi",026-SAHIBABAD DAULATPUR,28.75308343,77.07659985,TRUE,2015-16,1891,222,1669,185,193,54,35.01851852,0.844748858,0.750972763,FALSE,6
1106009,NORTH EAST DELHI,110095,7030124202,"Govt. Boys Sr. Sec. School, Seemapuri, Delhi",242-NEW SEEMA PURI,28.67875097,77.32730886,FALSE,2015-16,3115,0,3115,230,315,89,35,0.373376623,0.478723404,FALSE,1
1104018,NORTH EAST DELHI,110053,7030125607,"Govt. Sarvodaya Kanya Vidyalaya No.1, Yamuna Vihar, C-Block, Delhi",256-YAMUNA VIHAR,28.69870207,77.27646363,TRUE,2015-16,3880,337,3543,544,544,111,34.95495495,0.784992785,0.808320951,FALSE,1
1105238,NORTH EAST DELHI,110053,7030125008,"Govt. Girls Sec. School No.1, New Seelampur, Delhi",250-JAFFRABAD,28.67359176,77.26427653,TRUE,2015-16,769,0,769,121,0,22,34.95454545,0.902985075,NA,FALSE,1
1105003,NORTH EAST DELHI,110053,7030125402,"Govt. Sarvodaya Bal Vidyalaya, Braham Puri, Delhi",254-BRAHAMPURI,28.6754503,77.26240863,TRUE,2015-16,1537,374,1163,225,180,44,34.93181818,0.953389831,0.927835052,FALSE,0
1104027,NORTH EAST DELHI,110053,7030125604,"Govt. Girls Sr. Sec. School No.2, Yamuna Vihar, B-Block, Delhi",256-YAMUNA VIHAR,28.69967111,77.27054992,TRUE,2015-16,2792,0,2792,172,305,80,34.9,0.243281471,0.584291188,FALSE,5
1925057,SOUTH DELHI,110044,7090120201,"Govt. Boys Sr. Sec. School No.2, Molar Band, New Delhi",202-MITHA PUR,28.49458535,77.32619786,TRUE,2015-16,2756,0,2756,279,370,79,34.88607595,0.271929825,0.354745925,TRUE,0
1925046,SOUTH DELHI,110044,7090119702,"Govt. Girls Sr. Sec. School No.2, Railway Colony, Tughlakabad New Delhi",197-TUGLAKABAD,28.50687613,77.28998157,TRUE,2015-16,3449,0,3449,337,298,99,34.83838384,0.588132635,0.628691983,FALSE,1
1516143,WEST DELHI,110008,7070109402,"Govt. Sarvodaya Bal Vidyalaya, West Patel Nagar, New Delhi",094-WEST PATEL NAGAR,28.6537421,77.16636591,TRUE,2015-16,2331,374,1957,238,93,67,34.79104478,0.527716186,0.845454545,FALSE,4
1208016,NORTH DELHI,110006,7020108803,"Govt. Sarvodaya Kanya Vidyalaya, Ahata Kedara, Idgah Road Delhi",88-KASABPURA,28.65683283,77.20610222,TRUE,2015-16,1179,344,835,72,72,34,34.67647059,0.566929134,0.545454545,FALSE,2
1104009,NORTH EAST DELHI,110053,7030125608,"Govt. Boys Sr. Sec. School No.1, Yamuna Vihar, C-Block, Delhi",256-YAMUNA VIHAR,28.69887233,77.27600221,FALSE,2015-16,2600,0,2600,394,390,75,34.66666667,0.530282638,0.627009646,FALSE,0
1413013,NORTH WEST DELHI,110085,7010102205,"Govt. Boys Sr. Sec. School, Vill & P.O. Rithala, Delhi",022-RITHALA,28.71377023,77.10356718,FALSE,2015-16,2183,0,2183,310,239,63,34.65079365,0.647181628,0.667597765,FALSE,3
1002184,EAST DELHI,110096,7040122702,"Govt. Sarvodaya Kanya Vidyalaya, Gazipur, Delhi",227-I.P. EXTENSION,28.63622948,77.31861841,TRUE,2015-16,2215,489,1726,164,135,64,34.609375,0.555932203,0.741758242,FALSE,2
1923033,SOUTH DELHI,110068,7090117406,"Govt. Co-ed. Sec. School, Maidan Garhi, New Delhi",174-CHHATTARPUR,28.4987227,77.19855357,FALSE,2015-16,969,0,969,115,0,28,34.60714286,0.653409091,NA,FALSE,0
1925052,SOUTH DELHI,110025,7090120501,"Govt. Boys Sr. Sec. School, Joga Bai, Jamia Nagar New Delhi",205-ZAKIR NAGAR,28.56542781,77.28509305,TRUE,2015-16,1625,0,1625,84,91,47,34.57446809,0.254545455,0.705426357,FALSE,2
1925017,SOUTH DELHI,110044,7090119706,"Govt. Sarvodaya Bal Vidyalaya , Railway Colony, Tughlakabad New Delhi",197-TUGLAKABAD,28.50672503,77.28941205,TRUE,2015-16,2834,64,2770,164,226,82,34.56097561,0.348195329,0.582474227,FALSE,0
1617035,WEST DELHI,110041,7070104301,"Govt. Girls Sr. Sec. School, J. J. Colony, Nangloi, Delhi",043-NANGLOI EAST,28.68323886,77.05673984,TRUE,2015-16,3938,0,3938,311,366,114,34.54385965,0.390703518,0.724752475,FALSE,1
1413004,NORTH WEST DELHI,110085,7010102206,"Govt. Sarvodaya Vidyalaya , Sector-6, Rohini, Delhi",022-RITHALA,28.71033894,77.11216689,FALSE,2015-16,3799,416,3383,323,301,110,34.53636364,0.556896552,0.708235294,FALSE,3
1309011,NORTH WEST DELHI,110009,7010107205,"Govt. Boys Sr. Sec. School No.2, Block-R, Model Town-III, Delhi",072-MODEL TOWN,28.71219989,77.18618665,FALSE,2015-16,794,0,794,36,50,23,34.52173913,0.117647059,0.331125828,FALSE,0
1002013,EAST DELHI,110096,7040121403,"Govt. Sarvodaya Bal Vidyalaya, Dallupura, Delhi",214-KHICHRI PUR,28.60886386,77.32138046,TRUE,2015-16,2272,96,2176,206,217,66,34.42424242,0.555256065,0.923404255,FALSE,2
1309264,NORTH WEST DELHI,110036,7010100701,"Govt. Boys Sr. Sec. School, Qadipur, P. O. Alipur, Delhi",007-BURARI,28.7743286,77.17046905,TRUE,2015-16,1890,0,1890,294,248,55,34.36363636,0.91588785,0.867132867,FALSE,5
1104005,NORTH EAST DELHI,110094,7030126205,"Govt. Boys Sr. Sec. School, Gokal Puri, Delhi",262-GOKULPUR,28.7037034,77.28476025,TRUE,2015-16,2678,0,2678,327,319,78,34.33333333,0.522364217,0.634194831,FALSE,1
1106026,NORTH EAST DELHI,110093,7030124302,"Govt. Girls Sec. School, Nand Nagri Extn., Block FI-F2, Delhi",243-NANG NAGRI,28.69290251,77.31477889,TRUE,2015-16,1682,0,1682,230,0,49,34.32653061,0.534883721,NA,FALSE,0
1208219,NORTH DELHI,110035,7020107402,"Govt. Boys Sr. Sec. School, Tulsi Nagar, Delhi",74-INDERLOK COLONY,28.6725559,77.16418008,TRUE,2015-16,823,0,823,62,77,24,34.29166667,0.504065041,0.777777778,FALSE,3
1104025,NORTH EAST DELHI,110053,7030125504,"Govt. Girls Sr. Sec. School No.1, Ghonda, Yamuna Vihar, Delhi",255-GHONDA,28.69297196,77.26941315,TRUE,2015-16,1919,0,1919,234,196,56,34.26785714,0.747603834,0.682926829,FALSE,2
1412027,NORTH WEST DELHI,110086,7010102502,"Govt. Sarvodaya Kanya Vidyalaya, V. & P. O. Pooth Kalan, Nangoli Road, Delhi",025-POOTH KALA,28.70725882,77.07326798,TRUE,2015-16,3255,399,2856,361,357,95,34.26315789,0.820454545,0.952,FALSE,1
1207114,NORTH DELHI,110054,7020101001,"Govt. Boys Sr. Sec. School, Lancer Road, Near DU metro station, Delhi",10-TIMARPUR,28.69613523,77.21588703,FALSE,2015-16,959,0,959,117,66,28,34.25,0.473684211,0.536585366,FALSE,1
1923359,SOUTH DELHI,110047,7090117506,"Govt. Sarvodaya Bal Vidyalaya, Jonapur Village, New Delhi",175-AAYA NAGAR,28.5032915,77.1819575,TRUE,2015-16,1093,205,888,40,112,32,34.15625,0.27027027,0.903225806,FALSE,2
1923018,SOUTH DELHI,110062,7090117803,"Govt. Boys Sr. Sec. School, Deoli Village New Delhi",178-DEVLI,28.49955834,77.23830982,TRUE,2015-16,2766,0,2766,194,200,81,34.14814815,0.341549296,0.416666667,FALSE,0
1618267,WEST DELHI,110059,7070112404,"Govt. Boys Sec. School, Shiv Vihar Uttam Nagar, New Delhi",124-VIKAS NAGAR,28.6452342,77.05526107,TRUE,2015-16,1400,0,1400,156,0,41,34.14634146,0.545454545,NA,FALSE,3
1617018,WEST DELHI,110041,7070103001,"Govt. Boys Sr. Sec. School, Mundka Delhi",030-MUNDKA,28.68296659,77.02676716,TRUE,2015-16,1945,0,1945,176,76,57,34.12280702,0.511627907,0.584615385,FALSE,0
1002183,EAST DELHI,110096,7040121203,"Govt. Sarvodaya Kanya Vidyalaya, New Ashok Nagar,Delhi",212-NEW ASHOK NAGAR,28.58896416,77.30549811,TRUE,2015-16,2762,161,2601,285,284,81,34.09876543,0.602536998,0.747368421,FALSE,4
1105026,NORTH EAST DELHI,110053,7030125401,"Govt. Girls Sr. Sec. School, Braham Puri, Gautampuri Gali No -7, Delhi",254-BRAHAMPURI,28.67545801,77.26230458,TRUE,2015-16,2182,0,2182,299,353,64,34.09375,0.713603819,0.830588235,FALSE,3
1720028,SOUTH WEST DELHI,110038,7080117203,"Govt. Boys Sr. Sec. School, Rajokari (Near Shiv Mandir), New Delhi",172-KISHAN GARH,28.51806958,77.10957185,FALSE,2015-16,1124,0,1124,109,66,33,34.06060606,0.475982533,0.568965517,FALSE,0
1821242,SOUTH WEST DELHI,110078,7080113607,"Govt. Co-ed. Sec. School, Dwarka Sector-16A, New Delhi",136-MATIALA,28.61245798,77.02125852,FALSE,2015-16,783,0,783,69,0,23,34.04347826,0.503649635,NA,FALSE,0
1923074,SOUTH DELHI,110017,7090116901,"Govt. Boys Sr. Sec. School, Block-J, Saket, New Delhi",169-LADO SARAI,28.5237524,77.21295081,FALSE,2015-16,986,0,986,144,157,29,34,0.712871287,0.643442623,FALSE,0
1925014,SOUTH DELHI,110044,7090119707,"Govt. Boys Sr. Sec. School, Tuglakabad Village New Delhi",197-TUGLAKABAD,28.51106097,77.26600537,TRUE,2015-16,1598,0,1598,133,129,47,34,0.424920128,0.490494297,FALSE,3
1002368,EAST DELHI,110092,7040121805,"Govt. Sarvodaya Kanya Vidyalaya, No.2, I.P.Extn, Mandawali, Delhi",218-MANDAVALI,28.6305028,77.29796647,FALSE,2015-16,1290,180,1110,131,52,38,33.94736842,0.715846995,0.764705882,FALSE,1
1923027,SOUTH DELHI,110062,7090117802,"Govt. Boys Sr. Sec. School, Sangam Vihar, C-Block, New Delhi",178-DEVLI,28.49896667,77.23910812,TRUE,2015-16,3563,0,3563,336,334,105,33.93333333,0.397633136,0.680244399,FALSE,4
1309263,NORTH WEST DELHI,110042,7010101801,"Govt. Girls Sr. Sec. School, Libaspur, Delhi",018-LIBASPUR,28.75980956,77.16514303,TRUE,2015-16,2779,0,2779,273,168,82,33.8902439,0.608017817,0.541935484,FALSE,2
1516030,WEST DELHI,110008,7070109401,"Govt. Girls Sr. Sec. School, Prem Nagar, New Delhi",094-WEST PATEL NAGAR,28.66204192,77.16276811,TRUE,2015-16,2099,0,2099,167,92,62,33.85483871,0.469101124,0.427906977,FALSE,2
1104020,NORTH EAST DELHI,110094,7030126203,"Govt. Sarvodaya Kanya Vidyalaya, Gokalpuri, Delhi",262-GOKULPUR,28.70338474,77.28475668,TRUE,2015-16,3586,355,3231,427,569,106,33.83018868,0.647951442,0.86870229,FALSE,1
1002004,EAST DELHI,110092,7040122302,"Govt. Sarvodaya Bal Vidyalaya No.2 (Ishwar Chand), Shakarpur, Delhi",223-SHAKARPUR,28.63436138,77.28478859,FALSE,2015-16,1825,268,1557,172,146,54,33.7962963,0.417475728,0.45625,FALSE,0
1617211,WEST DELHI,110043,7070112203,"Govt. Co-ed. Sec. School, Baprola Vihar, New Delhi",122-HASTSAL,28.63220536,77.01603665,TRUE,2015-16,1621,0,1621,249,0,48,33.77083333,0.565909091,NA,FALSE,8
1720173,SOUTH DELHI,110070,7090116404,"Govt. Boys Sr. Sec. School, B-1, Vasant Kunj, New Delhi",164-HAUZ KHAS,28.52153463,77.16208866,TRUE,2015-16,1587,0,1587,73,46,47,33.76595745,#N/A,#N/A,#N/A,1
1923005,SOUTH DELHI,110062,7090118213,"Govt. Sarvodaya Vidyalaya (Yogi Arvind), Sect-IV, Dr. Ambedkar Nagar, New Delhi",182-AMBEDKAR NGR.,28.52105682,77.23551287,TRUE,2015-16,2057,375,1682,287,229,61,33.72131148,0.797222222,0.617250674,FALSE,0
1105109,NORTH EAST DELHI,110094,7030125802,"Govt. Boys Sr. Sec. School, West Jyoti Nagar, Shahdara, Delhi",258-KARDAMPURI,28.69124862,77.28877829,FALSE,2015-16,1382,0,1382,114,72,41,33.70731707,0.378737542,0.648648649,FALSE,1
1104151,NORTH EAST DELHI,110053,7030125202,"Govt. Boys Sr. Sec. School, Maujpur, Vijay Park, Delhi",252-MAUZPUR,28.69669788,77.27593694,FALSE,2015-16,1112,0,1112,139,122,33,33.6969697,0.628959276,0.655913978,FALSE,0
1923069,SOUTH DELHI,110062,7090118101,"Govt. Boys Sec. School No.2, Khanpur, New Delhi",181-KHANPUR,28.51005164,77.22810111,FALSE,2015-16,1280,0,1280,211,0,38,33.68421053,0.790262172,NA,FALSE,0
1106263,NORTH EAST DELHI,110095,7030124002,"Govt. Boys Sec. School, Old Seemapuri, Block GH, Delhi",240-DILSHAD COLONY,28.68101041,77.32877336,FALSE,2015-16,1684,0,1684,224,0,50,33.68,0.871595331,NA,FALSE,1
1105011,NORTH EAST DELHI,110053,7030125105,"Govt. Boys Sr. Sec. School, Shastri Park, Delhi",251-NEW USMANPUR,28.67626983,77.2584965,TRUE,2015-16,1785,0,1785,201,150,53,33.67924528,0.628125,0.815217391,FALSE,6
1310036,NORTH WEST DELHI,110040,7010100108,"Govt. Sarvodaya Kanya Vidyalaya No.1, Narela, Delhi",001-NARELA,28.84641838,77.08987478,TRUE,2015-16,3332,394,2938,350,370,99,33.65656566,0.983146067,0.927318296,FALSE,2
1923070,SOUTH DELHI,110030,7090117002,"Govt. Boys Sec. School No.3, DESU Office Road, Mehrauli, New Delhi",170-MEHRAULI,28.52741822,77.18764417,FALSE,2015-16,807,0,807,122,0,24,33.625,0.767295597,NA,FALSE,1
1923031,SOUTH DELHI,110068,7090117301,"Govt. Co-ed. Sec. School, Near IGNOU, Neb Sarai New Delhi",173-SAID-UL-AJAIB,28.50374778,77.20063156,FALSE,2015-16,1513,0,1513,230,0,45,33.62222222,0.809859155,NA,FALSE,0
1002197,EAST DELHI,110091,7040121101,"Govt. Boys Sec. School, Block-27, Trilokpuri, Delhi",211-TRILOK PURI,28.60713763,77.30487306,TRUE,2015-16,1244,0,1244,131,0,37,33.62162162,0.447098976,NA,FALSE,2
1412093,NORTH WEST DELHI,110086,7010103402,"Govt. Sarvodaya Kanya Vidyalaya, Nithari Delhi",034-NITHARI,28.70871085,77.05541782,TRUE,2015-16,4366,402,3964,324,566,130,33.58461538,0.385255648,0.629588432,FALSE,4
1720005,SOUTH WEST DELHI,110012,7080115002,"Govt. Boys Sec. School, I.A.R.I. Campus, PUSA New Delhi",150-PUSA,28.63618966,77.16247319,FALSE,2015-16,873,0,873,94,0,26,33.57692308,0.467661692,NA,FALSE,2
1310049,NORTH WEST DELHI,110040,7010100202,"Govt. Girls Sr. Sec. School, Bankner, Delhi",002-BANKNER,28.85043049,77.07313832,FALSE,2015-16,1274,0,1274,184,130,38,33.52631579,0.948453608,0.948905109,FALSE,4
1310045,NORTH WEST DELHI,110042,7010101702,"Govt. Girls Sr. Sec. School, Samaipur, Delhi",017-SAMAYPUR BADLI,28.74235603,77.14269116,TRUE,2015-16,3151,0,3151,401,263,94,33.5212766,0.853191489,0.894557823,FALSE,1
1002187,EAST DELHI,110096,7040121202,"Govt. Boys Sr. Sec. School, New Ashok Nagar, Delhi",212-NEW ASHOK NAGAR,28.58897873,77.30556178,TRUE,2015-16,1776,0,1776,291,172,53,33.50943396,0.786486486,0.778280543,FALSE,4
1617017,WEST DELHI,110041,7070104310,"Govt. Boys Sr. Sec. School, S. P. Road, Nangloi Delhi",043-NANGLOI EAST,28.68460985,77.06890597,TRUE,2015-16,1306,0,1306,119,132,39,33.48717949,0.61025641,0.666666667,FALSE,0
1002028,EAST DELHI,110091,7040121902,"Govt. Sarvodaya Kanya Vidyalaya (Ravindra Nath Thakur), East Vinod Nagar Delhi",219-MAYUR VIHAR PHASE-II,28.62081823,77.30608516,FALSE,2015-16,2409,312,2097,220,350,72,33.45833333,0.455486542,0.815850816,FALSE,1
1617028,WEST DELHI,110087,7070104201,"Govt. Sarvodaya Vidyalaya, Peera Garhi Village, New Delhi",042-PEERA GARHI,28.6743765,77.08713575,FALSE,2015-16,2308,155,2153,116,233,69,33.44927536,0.483333333,0.487447699,FALSE,1
1310031,NORTH WEST DELHI,110036,7010100306,"Govt. Sarvodaya Kanya Vidyalaya, Alipur Delhi",003-ALIPUR,28.79690502,77.13835168,TRUE,2015-16,2473,306,2167,273,188,74,33.41891892,0.701799486,0.912621359,FALSE,4
1925250,SOUTH DELHI,110019,7090118502,"Govt. Girls Sr. Sec. School No.2, Tughlakabad Extn. New Delhi",185-TUGLAKABAD EXT.,28.5245103,77.26265131,TRUE,2015-16,2339,0,2339,300,372,70,33.41428571,0.746268657,0.678832117,FALSE,2
1002263,EAST DELHI,110096,7040121501,"Govt. Boys Sec. School, Gharoli, Mayur vihar, Phase-III, Delhi",215-KONDLI,28.60884332,77.32959921,FALSE,2015-16,969,0,969,201,0,29,33.4137931,0.901345291,NA,FALSE,1
1413006,NORTH WEST DELHI,110085,7010104501,"Govt. Sarvodaya Vidyalaya , Sector-2, Rohini, Delhi",045-ROHINI SOUTH,28.69955283,77.10076533,FALSE,2015-16,2773,49,2724,356,318,83,33.40963855,0.684615385,0.637274549,FALSE,0
1207116,NORTH DELHI,110084,7020100703,"Govt. Boys Sec. School, Burari, Delhi",7-BURARI,28.74897173,77.19676733,FALSE,2015-16,1502,0,1502,251,0,45,33.37777778,0.699164345,NA,FALSE,0
1002363,EAST DELHI,110096,7040122703,"Govt. Boys Sr. Sec. School, Gazipur, Delhi",227-I.P. EXTENSION,28.63626107,77.31859219,TRUE,2015-16,1635,0,1635,116,112,49,33.36734694,0.444444444,0.466666667,FALSE,1
1310014,NORTH WEST DELHI,110036,7010100309,"Govt. Boys Sr. Sec. School, Aalipur, Delhi",003-ALIPUR,28.79750737,77.13830457,TRUE,2015-16,2201,0,2201,225,238,66,33.34848485,0.614754098,0.621409922,FALSE,6
1925058,SOUTH DELHI,110044,7090119801,"Govt. Boys Sr. Sec. School No.2, Railway Colony, Tughlakabad New Delhi",198-PRAHLADPUR,28.50670039,77.29001105,FALSE,2015-16,1967,0,1967,205,172,59,33.33898305,0.548128342,0.589041096,FALSE,1
1720029,SOUTH WEST DELHI,110037,7080114402,"Govt. Boys Sr. Sec. School, Mahipalpur New Delhi",144-MAHIPAL PUR,28.54494049,77.12665909,FALSE,2015-16,2667,0,2667,216,139,80,33.3375,0.395604396,0.574380165,FALSE,2
1821234,SOUTH WEST DELHI,110045,7080112902,"Govt. Boys Sr. Sec. School, Pappan Kalan, Sect. -I, Pkt. VII, Dabri Extn New Delhi",129-DABRI,28.60169812,77.08387785,FALSE,2015-16,1933,0,1933,138,78,58,33.32758621,0.378082192,0.369668246,FALSE,1
1207008,NORTH DELHI,110054,7020107704,"Govt. Sarvodaya Vidyalaya (Shaeed Bhai Bal Mukund), Shankaracharya Marg, Delhi",77-KASHMERE GATE,28.68029887,77.22666855,FALSE,2015-16,1233,217,1016,125,135,37,33.32432432,0.612745098,0.636792453,FALSE,2
1925016,SOUTH DELHI,110019,7090119201,"Govt. Boys Sr. Sec. School, DDA Flats, Phase-II, Kalkaji, New Delhi",192-GREATER KAILASH-I,28.53349264,77.2568578,TRUE,2015-16,1299,0,1299,129,155,39,33.30769231,0.589041096,0.756097561,FALSE,1
1617219,WEST DELHI,110041,7070103202,"Govt. Sarvodaya Bal Vidyalaya, Nilothi, Delhi",032-NILOTHI,28.64599268,77.05982693,TRUE,2015-16,1498,193,1305,105,98,45,33.28888889,0.466666667,0.644736842,FALSE,2
1411001,NORTH WEST DELHI,110034,7010106302,"Govt. Sarvodaya Bal Vidyalaya, Anandvas, Lok Vihar Delhi",063-KOHAT ENCLAVE,28.69066752,77.13788667,TRUE,2015-16,2230,164,2066,194,162,67,33.28358209,0.615873016,0.710526316,FALSE,2
1720002,SOUTH WEST DELHI,110028,7080115203,"Govt. Sarvodaya Bal Vidyalaya (1st Shift), Naraina, New Delhi",152-NARAINA,28.62586179,77.13936415,TRUE,2015-16,1925,369,1556,92,157,58,33.18965517,0.262857143,0.513071895,FALSE,8
1923048,SOUTH DELHI,110074,7090117405,"Govt. Girls Sr. Sec. School, Chattarpur, New Delhi",174-CHHATTARPUR,28.50352881,77.1816601,FALSE,2015-16,2821,0,2821,270,310,85,33.18823529,0.556701031,0.704545455,FALSE,0
1207036,NORTH DELHI,110084,7020100705,"Govt. Sarvodaya Kanya Vidyalaya, Burari, Delhi",7-BURARI,28.74967238,77.19655875,FALSE,2015-16,3086,399,2687,319,566,93,33.1827957,0.617021277,0.730322581,FALSE,2
1002014,EAST DELHI,110096,7040121505,"Govt. Boys Sr. Sec. School, B-Block ,New Kondli Delhi",215-KONDLI,28.60406299,77.33311721,TRUE,2015-16,3115,0,3115,255,324,94,33.13829787,0.382882883,0.69527897,FALSE,1
1618067,WEST DELHI,110059,7070112101,"Govt. Co-ed. Sec. School, Vikas Nagar, New Delhi",121-KANWAR SINGH NAGAR,28.63696321,77.03229319,FALSE,2015-16,1124,0,1124,181,0,34,33.05882353,0.621993127,NA,FALSE,1
1309257,NORTH WEST DELHI,110033,7010100504,"Govt. Boys Sec. School, Block-E, Jahangirpuri, Delhi",005-BHALASWA JAHANGIRPURI,28.73191886,77.17582422,TRUE,2015-16,760,0,760,101,0,23,33.04347826,0.655844156,NA,FALSE,0
1207110,NORTH DELHI,110084,7020100701,"Govt. Boys Sr. Sec. School, Near Sant Nagar, Tomer Colony, Nathupura, Delhi",7-BURARI,28.74987937,77.19673244,FALSE,2015-16,1553,0,1553,140,99,47,33.04255319,0.471380471,0.502538071,FALSE,0
1720174,SOUTH WEST DELHI,110057,7080116502,"Govt. Co-ed. Middle School, Vasant Vihar, C-4, New Delhi",165-VASANT VIHAR,28.6111445,77.0974604,FALSE,2015-16,594,0,594,0,0,18,33,NA,NA,FALSE,1
1411015,NORTH WEST DELHI,110052,7010106805,"Govt. Boys Sr. Sec. School, B-1, Ashok Vihar Phase-II, Delhi",068-ASHOK VIHAR,28.69600983,77.17790956,TRUE,2015-16,1416,0,1416,128,95,43,32.93023256,0.449122807,0.463414634,FALSE,3
1618269,WEST DELHI,110059,7070112803,"Govt. Co-ed. Sec. School, Binda Pur, Pocket-III, New Delhi",128-BINDAPUR (WEST),28.60896766,77.06721649,FALSE,2015-16,1020,0,1020,160,0,31,32.90322581,0.816326531,NA,FALSE,0
1515019,WEST DELHI,110027,7070110603,"Govt. Co-ed. Sec. School, Raghubir Nagar, New Delhi",106-TAGORE GARDEN,28.65684638,77.11311845,FALSE,2015-16,954,0,954,64,0,29,32.89655172,0.653061224,NA,FALSE,0
1002027,EAST DELHI,110096,7040121402,"Govt. Sarvodaya Kanya Vidyalaya, Dallupura, Delhi",214-KHICHRI PUR,28.60834295,77.32069012,TRUE,2015-16,2730,240,2490,300,190,83,32.89156627,0.632911392,0.542857143,FALSE,1
1309027,NORTH WEST DELHI,110009,7010101202,"Govt. Sarvodaya Kanya Vidyalaya, Guru Teg Bahadur Nagar, Delhi",012-G.T.B. NAGAR,28.7011589,77.20953237,TRUE,2015-16,2368,340,2028,285,222,72,32.88888889,0.95959596,0.813186813,FALSE,3
1923019,SOUTH DELHI,110062,7090118208,"Govt. Sarvodaya Bal Vidyalaya, Sect-IV, Dr. Ambedkar Nagar New Delhi",182-AMBEDKAR NGR.,28.51931773,77.23311812,FALSE,2015-16,789,40,749,88,0,24,32.875,0.494382022,NA,FALSE,0
1411011,NORTH WEST DELHI,110034,7010106402,"Govt. Boys Sr. Sec. School No.2, Shakurpur Delhi",064-SHAKAR PUR,28.68165738,77.14112654,FALSE,2015-16,1149,0,1149,109,83,35,32.82857143,0.592391304,0.754545455,FALSE,2
1618059,WEST DELHI,110058,7070112802,"Govt. Boys Sr. Sec. School, DDA Flats, Bindapur, New Delhi",128-BINDAPUR (WEST),28.61007271,77.06852621,FALSE,2015-16,1870,0,1870,123,141,57,32.80701754,0.403278689,0.530075188,FALSE,0
1923071,SOUTH DELHI,110017,7090118401,"Govt. Sarvodaya Kanya Vidyalaya, Sec-I, M.B.Road, Pushp Vihar, New Delhi",184-PUSHP VIHAR,28.52510011,77.22130752,FALSE,2015-16,1640,384,1256,203,120,50,32.8,0.818548387,0.736196319,FALSE,4
1413074,NORTH WEST DELHI,110085,7010105201,"Govt. Sarvodaya Vidyalaya , Sector-7, Rohini, Delhi",052-NAHARPUR,28.70950408,77.11706298,FALSE,2015-16,2488,379,2109,174,208,76,32.73684211,0.497142857,0.643962848,FALSE,2
1310169,NORTH WEST DELHI,110082,7010100303,"Govt. Girls Sr. Sec. School, Block B, Holambi Kalan, Delhi",003-ALIPUR,28.81101009,77.09399174,TRUE,2015-16,1309,0,1309,195,141,40,32.725,0.919811321,0.875776398,FALSE,2
1002010,EAST DELHI,110091,7040120904,"Govt. Sarvodaya Bal Vidyalaya, Trilokpuri, Block 20, Delhi",209-MAYUR VIHAR PHASE-I,28.60453808,77.30613999,TRUE,2015-16,1896,353,1543,124,74,58,32.68965517,0.307692308,0.402173913,FALSE,4
1413027,NORTH WEST DELHI,110085,7010105101,"Govt. Sarvodaya Vidyalaya , Scct-8, Rohini, Delhi",051-ROHINI EAST,28.70436438,77.12326706,FALSE,2015-16,1893,351,1542,97,145,58,32.63793103,0.400826446,0.630434783,FALSE,3
1412086,NORTH WEST DELHI,110086,7010104001,"Govt. Boys Sr. Sec. School, Block-E, Sultanpuri, Delhi",040-SULTANPURI SOUTH,28.69356047,77.06919828,TRUE,2015-16,1305,0,1305,164,75,40,32.625,0.658634538,0.72815534,FALSE,1
1105020,NORTH EAST DELHI,110053,7030125003,"Govt. Sarvodaya Kanya Vidyalaya No.1 (C.R.Dass), New Seelampur, Delhi",250-JAFFRABAD,28.67336913,77.26460767,TRUE,2015-16,1598,397,1201,98,125,49,32.6122449,0.553672316,0.534188034,FALSE,3
1925005,SOUTH DELHI,110025,7090120605,"Govt. Boys Sr. Sec. School (Chander Shekhar Azad), New Friends Colony, New Delhi",206-OKHLA,28.56293737,77.27296845,TRUE,2015-16,1597,0,1597,97,104,49,32.59183673,0.246819338,0.364912281,FALSE,2
1002182,EAST DELHI,110091,7040121201,"Govt. Co-ed. Sr. Sec. School, Chilla Village, Delhi",212-NEW ASHOK NAGAR,28.59809098,77.29613096,FALSE,2015-16,1921,0,1921,220,194,59,32.55932203,0.556962025,0.700361011,FALSE,3
1003009,EAST DELHI,110031,7040123003,"Govt. Boys Sr. Sec. School, Block-13, Geeta Colony, Delhi",230-GEETA COLONY,28.64742439,77.27638791,FALSE,2015-16,944,0,944,83,97,29,32.55172414,0.477011494,0.801652893,FALSE,0
1411008,NORTH WEST DELHI,110034,7010105403,"Govt. Sarvodaya Vidyalaya , FU Block, Pitampura, Delhi",054-PITAMPURA (NORTH),28.71149517,77.14327939,FALSE,2015-16,2082,338,1744,136,209,64,32.53125,0.422360248,0.665605096,FALSE,1
1106122,NORTH EAST DELHI,110095,7030124001,"Govt. Girls Sec. School, GH Block, Old Seemapuri, Delhi",240-DILSHAD COLONY,28.68097634,77.3287073,TRUE,2015-16,1658,0,1658,266,0,51,32.50980392,0.707446809,NA,FALSE,0
1617015,WEST DELHI,110087,7070104309,"Govt. Boys Sr. Sec. School, Amalwas, Jawalapuri Camp No.4, New Delhi",043-NANGLOI EAST,28.67806723,77.07864175,TRUE,2015-16,2405,0,2405,252,135,74,32.5,0.515337423,0.373961219,FALSE,3
1002002,EAST DELHI,110091,7040122005,"Govt. Sarvodaya Bal Vidyalaya (Genda Lal Dixit), Patpar Ganj, Delhi",220-PATPARGANJ,28.6140064,77.29089993,FALSE,2015-16,1819,326,1493,151,198,56,32.48214286,0.470404984,0.614906832,FALSE,3
1618070,WEST DELHI,110059,7070113601,"Govt. Sarvodaya Kanya Vidyalaya, Matiala Village, New Delhi",136-MATIALA,28.61307921,77.04636894,FALSE,2015-16,2662,316,2346,160,231,82,32.46341463,0.371229698,0.568965517,FALSE,2
1617003,WEST DELHI,110063,7070105805,"Govt. Sarvodaya Vidyalaya, A-2,Paschim Vihar, New Delhi",058-PASCHIM VIHAR (NORTH),28.67231599,77.10093303,FALSE,2015-16,1492,279,1213,118,193,46,32.43478261,0.519823789,0.717472119,FALSE,1
1104010,NORTH EAST DELHI,110094,7030127004,"Govt. Boys Sr. Sec. School, Dayalpur Village, Delhi",270-TUKHMIRPUR,28.71729168,77.26388624,FALSE,2015-16,2431,0,2431,215,231,75,32.41333333,0.330261137,0.606299213,FALSE,3
1309129,NORTH WEST DELHI,110033,7010101402,"Govt. Girls Sec. School, Azadpur Village Delhi",014-ADARSH NAGAR,28.70725472,77.17747612,TRUE,2015-16,1393,0,1393,212,0,43,32.39534884,0.890756303,NA,FALSE,0
1413318,NORTH WEST DELHI,110085,7010102108,"Govt. Girls Middle School, Sect-16, Pkt-D, Rohini, Delhi",021-ROHINI,28.6765018,77.0785712,FALSE,2015-16,259,0,259,0,0,8,32.375,NA,NA,FALSE,1
1412084,NORTH WEST DELHI,110086,7010102501,"Govt. Sarvodaya Kanya Vidyalaya, Pooth Kalan, Rohini Extn. Sec-20, Delhi",025-POOTH KALA,28.7103923,77.07651337,TRUE,2015-16,2751,0,2751,337,173,85,32.36470588,0.73580786,0.652830189,FALSE,0
1106261,NORTH EAST DELHI,110094,7030126304,"Govt. Boys Sec. School, Meet Nagar, Block B, Delhi",263-SABOLI,28.70026989,77.30028486,FALSE,2015-16,712,0,712,77,0,22,32.36363636,0.463855422,NA,FALSE,0
1412014,NORTH WEST DELHI,110083,7010104706,"Govt. Sarvodaya Bal Vidyalaya, Block-O, Mangolpuri, Delhi",047-MANGOLPURI,28.69260906,77.08740467,TRUE,2015-16,1261,0,1261,136,74,39,32.33333333,0.405970149,0.355769231,FALSE,2
1310431,NORTH WEST DELHI,110042,7010102604,"Govt. Boys Sr. Sec. School, Shahbad Daulatpur, Delhi",026-SAHIBABAD DAULATPUR,NA,NA,TRUE,2015-16,903,0,903,76,53,28,32.25,0.393782383,0.509615385,FALSE,4
1309253,NORTH WEST DELHI,110033,7010101501,"Govt. Sarvodaya Bal Vidyalaya, A-Block, Jahangirpuri, Delhi",015-SARAI PEPAL THALLA,28.72800753,77.16633771,TRUE,2015-16,2869,129,2740,319,311,89,32.23595506,0.725,0.820580475,FALSE,2
1515017,WEST DELHI,110027,7070110202,"Govt. Boys Sec. School, J. J. Colony, Raghubir Nagar, New Delhi",102-RAGHUBIR NAGAR,28.65692084,77.11309376,FALSE,2015-16,838,0,838,59,0,26,32.23076923,0.421428571,NA,FALSE,1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment