In Swiftmap, you can use multiple schemes to apply just the right styles to a layer.
This demo is based on the map in "On Delhi’s outskirts, schools urgently need teachers", published on 7 August, 2017 in the Hindustan Times.
license: gpl-3.0 |
In Swiftmap, you can use multiple schemes to apply just the right styles to a layer.
This demo is based on the map in "On Delhi’s outskirts, schools urgently need teachers", published on 7 August, 2017 in the Hindustan Times.
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body { | |
margin: 0; | |
font-family: "Helvetica Neue", sans-serif; | |
} | |
#select-wrapper { | |
position: absolute; | |
padding: 5px; | |
background: rgba(255, 255, 255, .75); | |
} | |
#select-wrapper .select-title { | |
font-size: .8em; | |
} | |
#map { | |
width: 100%; | |
height: 100vh; | |
} | |
#map .polygon { | |
fill: #fff; | |
stroke: #555; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="map"></div> | |
<!-- Modules for d3-request and 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.1.23/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.student_teacher_ratio) | |
.to([1, 30]); | |
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 geospatial data to your map. | |
// Then draw the polygons and bubbles. | |
map | |
.layerPolygons(districts) | |
.draw() | |
.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); | |
// It's easy to resize a Swiftmap. | |
window.onresize = () => map.resize(); | |
} | |
</script> | |
</body> | |
</html> |
{ | |
"type": "Topology", | |
"arcs": [], | |
"objects": { | |
"places": { | |
"type": "GeometryCollection", | |
"geometries": [{ | |
"type": "Point", | |
"coordinates": [77.196767, 28.748972], | |
"properties": { | |
"cartodb_id": 274, | |
"edudel_code": 1207116, | |
"distname": "NORTH DELHI", | |
"pincode": 110084, | |
"school_code": "7020100703", | |
"school_name": "Govt. Boys Sec. School, Burari, Delhi", | |
"village_name": "7-BURARI", | |
"lat": 28.74897173, | |
"lng": 77.19676733, | |
"most_urgent": false, | |
"students": 1502, | |
"student_teacher_ratio": 33.37777778 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.209532, 28.701159], | |
"properties": { | |
"cartodb_id": 323, | |
"edudel_code": 1309027, | |
"distname": "NORTH WEST DELHI", | |
"pincode": 110009, | |
"school_code": "7010101202", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Guru Teg Bahadur Nagar, Delhi", | |
"village_name": "012-G.T.B. NAGAR", | |
"lat": 28.7011589, | |
"lng": 77.20953237, | |
"most_urgent": true, | |
"students": 2368, | |
"student_teacher_ratio": 32.88888889 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.205233, 28.51818], | |
"properties": { | |
"cartodb_id": 848, | |
"edudel_code": 1923063, | |
"distname": "SOUTH DELHI", | |
"pincode": 110047, | |
"school_code": "7090117501", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Aya Nagar New Delhi", | |
"village_name": "175-AAYA NAGAR", | |
"lat": 28.51817973, | |
"lng": 77.20523267, | |
"most_urgent": false, | |
"students": 1837, | |
"student_teacher_ratio": 29.15873016 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.219244, 28.587973], | |
"properties": { | |
"cartodb_id": 966, | |
"edudel_code": 2026005, | |
"distname": "NEW DELHI", | |
"pincode": 110003, | |
"school_code": "070501ND403", | |
"school_name": "Govt. Sarvodaya Vidyalaya, Jor Bagh, New Delhi", | |
"village_name": "NDMC-CHARGE NO.4", | |
"lat": 28.58797267, | |
"lng": 77.21924355, | |
"most_urgent": false, | |
"students": 1139, | |
"student_teacher_ratio": 19.98245614 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.289827, 28.667306], | |
"properties": { | |
"cartodb_id": 1, | |
"edudel_code": 1001001, | |
"distname": "EAST DELHI", | |
"pincode": 110032, | |
"school_code": "7040123707", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya (Babu Ram), Bhola Nath Nagar, Shahadara, Delhi", | |
"village_name": "237-SHAHDARA", | |
"lat": 28.66730577, | |
"lng": 77.28982717, | |
"most_urgent": false, | |
"students": 959, | |
"student_teacher_ratio": 23.3902439 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.317967, 28.668428], | |
"properties": { | |
"cartodb_id": 2, | |
"edudel_code": 1001002, | |
"distname": "EAST DELHI", | |
"pincode": 110095, | |
"school_code": "7040123806", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Near Ram Mandir, Vivek Vihar, Delhi", | |
"village_name": "238-JHIL MIL", | |
"lat": 28.6684278, | |
"lng": 77.31796661, | |
"most_urgent": false, | |
"students": 2008, | |
"student_teacher_ratio": 31.87301587 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.280696, 28.666709], | |
"properties": { | |
"cartodb_id": 3, | |
"edudel_code": 1001004, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040123503", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Kanti Nagar, Delhi", | |
"village_name": "235-AZAD NAGAR", | |
"lat": 28.66670886, | |
"lng": 77.28069572, | |
"most_urgent": true, | |
"students": 1612, | |
"student_teacher_ratio": 29.85185185 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305509, 28.657456], | |
"properties": { | |
"cartodb_id": 4, | |
"edudel_code": 1001006, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122601", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, A-Block, Surajmal Vihar, Delhi", | |
"village_name": "226-VISHWAS NAGAR", | |
"lat": 28.65745551, | |
"lng": 77.30550888, | |
"most_urgent": false, | |
"students": 1344, | |
"student_teacher_ratio": 27.42857143 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.288878, 28.666429], | |
"properties": { | |
"cartodb_id": 5, | |
"edudel_code": 1001008, | |
"distname": "EAST DELHI", | |
"pincode": 110032, | |
"school_code": "7040123706", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya No.1, Bhola Nath Nagar, Delhi", | |
"village_name": "237-SHAHDARA", | |
"lat": 28.66642936, | |
"lng": 77.28887846, | |
"most_urgent": false, | |
"students": 640, | |
"student_teacher_ratio": 24.61538462 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.316268, 28.652589], | |
"properties": { | |
"cartodb_id": 6, | |
"edudel_code": 1001009, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122502", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Anand Vihar (Near Railway Station), Delhi", | |
"village_name": "225-ANAND VIHAR", | |
"lat": 28.65258927, | |
"lng": 77.3162682, | |
"most_urgent": false, | |
"students": 1780, | |
"student_teacher_ratio": 29.18032787 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.290262, 28.667486], | |
"properties": { | |
"cartodb_id": 7, | |
"edudel_code": 1001010, | |
"distname": "EAST DELHI", | |
"pincode": 110032, | |
"school_code": "7040123705", | |
"school_name": "Govt. Boys Sr. Sec. School No.3, Bhola Nath Nagar, Shahadara, Delhi", | |
"village_name": "237-SHAHDARA", | |
"lat": 28.66748592, | |
"lng": 77.29026194, | |
"most_urgent": false, | |
"students": 869, | |
"student_teacher_ratio": 21.725 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305419, 28.668817], | |
"properties": { | |
"cartodb_id": 8, | |
"edudel_code": 1001012, | |
"distname": "EAST DELHI", | |
"pincode": 110095, | |
"school_code": "7040123804", | |
"school_name": "Govt. Boys Sec. School, C-Block , Vivek Vihar, Delhi", | |
"village_name": "238-JHIL MIL", | |
"lat": 28.66881733, | |
"lng": 77.30541861, | |
"most_urgent": false, | |
"students": 557, | |
"student_teacher_ratio": 25.31818182 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.288839, 28.666115], | |
"properties": { | |
"cartodb_id": 9, | |
"edudel_code": 1001018, | |
"distname": "EAST DELHI", | |
"pincode": 110032, | |
"school_code": "7040123704", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya No.1, Bhola Nath Nagar, Shahadara, Delhi", | |
"village_name": "237-SHAHDARA", | |
"lat": 28.66611499, | |
"lng": 77.28883904, | |
"most_urgent": false, | |
"students": 1579, | |
"student_teacher_ratio": 25.8852459 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.289592, 28.667451], | |
"properties": { | |
"cartodb_id": 10, | |
"edudel_code": 1001020, | |
"distname": "EAST DELHI", | |
"pincode": 110032, | |
"school_code": "7040123703", | |
"school_name": "Govt. Girls Sr. Sec. School No.2, Bhola Nath Nagar, Shahadara, Delhi", | |
"village_name": "237-SHAHDARA", | |
"lat": 28.6674511, | |
"lng": 77.28959238, | |
"most_urgent": false, | |
"students": 474, | |
"student_teacher_ratio": 16.92857143 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305061, 28.669411], | |
"properties": { | |
"cartodb_id": 11, | |
"edudel_code": 1001022, | |
"distname": "EAST DELHI", | |
"pincode": 110095, | |
"school_code": "7040123805", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya No.1, C-Block, Vivek Vihar, Delhi", | |
"village_name": "238-JHIL MIL", | |
"lat": 28.66941069, | |
"lng": 77.30506118, | |
"most_urgent": false, | |
"students": 2459, | |
"student_teacher_ratio": 29.62650602 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.290489, 28.6675], | |
"properties": { | |
"cartodb_id": 12, | |
"edudel_code": 1001023, | |
"distname": "EAST DELHI", | |
"pincode": 110032, | |
"school_code": "7040123702", | |
"school_name": "Govt. Girls Sr. Sec. School No.3, Bhola Nath Nagar, Shahadara, Delhi", | |
"village_name": "237-SHAHDARA", | |
"lat": 28.6674998, | |
"lng": 77.29048903, | |
"most_urgent": false, | |
"students": 646, | |
"student_teacher_ratio": 21.53333333 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.280525, 28.666385], | |
"properties": { | |
"cartodb_id": 13, | |
"edudel_code": 1001024, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040123501", | |
"school_name": "Govt. Girls Sr. Sec. School, Kanti Nagar, Delhi", | |
"village_name": "235-AZAD NAGAR", | |
"lat": 28.66638532, | |
"lng": 77.28052512, | |
"most_urgent": false, | |
"students": 1702, | |
"student_teacher_ratio": 28.84745763 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.30922, 28.670135], | |
"properties": { | |
"cartodb_id": 14, | |
"edudel_code": 1001026, | |
"distname": "EAST DELHI", | |
"pincode": 110095, | |
"school_code": "7040123802", | |
"school_name": "Govt. Girls Sr. Sec. School, Jhilmil Colony, Vivek Vihar, Phase-II, Delhi", | |
"village_name": "238-JHIL MIL", | |
"lat": 28.67013518, | |
"lng": 77.30921967, | |
"most_urgent": false, | |
"students": 1065, | |
"student_teacher_ratio": 27.30769231 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305991, 28.6572], | |
"properties": { | |
"cartodb_id": 15, | |
"edudel_code": 1001102, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122603", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Surajmal Vihar, Delhi", | |
"village_name": "226-VISHWAS NAGAR", | |
"lat": 28.65720002, | |
"lng": 77.30599078, | |
"most_urgent": false, | |
"students": 1341, | |
"student_teacher_ratio": 25.78846154 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.307908, 28.665871], | |
"properties": { | |
"cartodb_id": 16, | |
"edudel_code": 1001104, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122604", | |
"school_name": "Rajkiya Pratibha Vikas Vidyalaya, Surajmal Vihar, Delhi", | |
"village_name": "226-VISHWAS NAGAR", | |
"lat": 28.66587096, | |
"lng": 77.30790799, | |
"most_urgent": false, | |
"students": 796, | |
"student_teacher_ratio": 18.95238095 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.309174, 28.670539], | |
"properties": { | |
"cartodb_id": 17, | |
"edudel_code": 1001105, | |
"distname": "EAST DELHI", | |
"pincode": 110095, | |
"school_code": "7040123801", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Jhilmil Colony, Delhi", | |
"village_name": "238-JHIL MIL", | |
"lat": 28.67053939, | |
"lng": 77.30917356, | |
"most_urgent": false, | |
"students": 1408, | |
"student_teacher_ratio": 26.07407407 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.301196, 28.652875], | |
"properties": { | |
"cartodb_id": 18, | |
"edudel_code": 1001106, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122504", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Kiran Vihar, Delhi", | |
"village_name": "225-ANAND VIHAR", | |
"lat": 28.65287457, | |
"lng": 77.30119582, | |
"most_urgent": false, | |
"students": 1210, | |
"student_teacher_ratio": 28.13953488 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.30159, 28.652673], | |
"properties": { | |
"cartodb_id": 19, | |
"edudel_code": 1001109, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122503", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Kiran Vihar, Delhi", | |
"village_name": "225-ANAND VIHAR", | |
"lat": 28.65267268, | |
"lng": 77.30159036, | |
"most_urgent": false, | |
"students": 1224, | |
"student_teacher_ratio": 27.81818182 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.272675, 28.659612], | |
"properties": { | |
"cartodb_id": 20, | |
"edudel_code": 1001110, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040123602", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Rajgarh Colony, Delhi", | |
"village_name": "236-RAGHUVARPURA", | |
"lat": 28.65961189, | |
"lng": 77.27267488, | |
"most_urgent": false, | |
"students": 1176, | |
"student_teacher_ratio": 27.34883721 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.309358, 28.670399], | |
"properties": { | |
"cartodb_id": 21, | |
"edudel_code": 1001111, | |
"distname": "EAST DELHI", | |
"pincode": 110095, | |
"school_code": "7040123803", | |
"school_name": "Govt. Girls Sr. Sec. School, Jhilmil Colony, Delhi", | |
"village_name": "238-JHIL MIL", | |
"lat": 28.67039865, | |
"lng": 77.30935829, | |
"most_urgent": false, | |
"students": 1025, | |
"student_teacher_ratio": 22.2826087 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.288533, 28.671041], | |
"properties": { | |
"cartodb_id": 22, | |
"edudel_code": 1001151, | |
"distname": "EAST DELHI", | |
"pincode": 110032, | |
"school_code": "7040123701", | |
"school_name": "Govt. Co-ed. Sec. School, Teliwara, Shahdara, Delhi", | |
"village_name": "237-SHAHDARA", | |
"lat": 28.67104097, | |
"lng": 77.2885332, | |
"most_urgent": false, | |
"students": 315, | |
"student_teacher_ratio": 18.52941176 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.27803, 28.663292], | |
"properties": { | |
"cartodb_id": 23, | |
"edudel_code": 1001194, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040123502", | |
"school_name": "Govt. Co-ed. Sec. School, West Azad Nagar, Delhi", | |
"village_name": "235-AZAD NAGAR", | |
"lat": 28.6632924, | |
"lng": 77.2780303, | |
"most_urgent": false, | |
"students": 640, | |
"student_teacher_ratio": 26.66666667 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.295583, 28.661625], | |
"properties": { | |
"cartodb_id": 24, | |
"edudel_code": 1001196, | |
"distname": "EAST DELHI", | |
"pincode": 110032, | |
"school_code": "7040122602", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Vishwas Nagar, Delhi", | |
"village_name": "226-VISHWAS NAGAR", | |
"lat": 28.66162547, | |
"lng": 77.2955829, | |
"most_urgent": false, | |
"students": 1038, | |
"student_teacher_ratio": 22.08510638 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.295145, 28.66154], | |
"properties": { | |
"cartodb_id": 25, | |
"edudel_code": 1001204, | |
"distname": "EAST DELHI", | |
"pincode": 110032, | |
"school_code": "7040122605", | |
"school_name": "Govt. Boys Sr. Sec. School, Vishwas Nagar, Delhi", | |
"village_name": "226-VISHWAS NAGAR", | |
"lat": 28.66154032, | |
"lng": 77.29514503, | |
"most_urgent": false, | |
"students": 705, | |
"student_teacher_ratio": 23.5 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.316344, 28.65251], | |
"properties": { | |
"cartodb_id": 26, | |
"edudel_code": 1001208, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122505", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Anand Vihar, Near Railway Station, Delhi", | |
"village_name": "225-ANAND VIHAR", | |
"lat": 28.6525104, | |
"lng": 77.31634359, | |
"most_urgent": false, | |
"students": 1108, | |
"student_teacher_ratio": 27.02439024 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.298064, 28.63068], | |
"properties": { | |
"cartodb_id": 27, | |
"edudel_code": 1002001, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040121803", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya (Veer Udham Singh), I.P. Extn, Mandawali, Delhi", | |
"village_name": "218-MANDAVALI", | |
"lat": 28.63067955, | |
"lng": 77.29806439, | |
"most_urgent": false, | |
"students": 1243, | |
"student_teacher_ratio": 23.01851852 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.2909, 28.614006], | |
"properties": { | |
"cartodb_id": 28, | |
"edudel_code": 1002002, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040122005", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya (Genda Lal Dixit), Patpar Ganj, Delhi", | |
"village_name": "220-PATPARGANJ", | |
"lat": 28.6140064, | |
"lng": 77.29089993, | |
"most_urgent": false, | |
"students": 1819, | |
"student_teacher_ratio": 32.48214286 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.309224, 28.61979], | |
"properties": { | |
"cartodb_id": 29, | |
"edudel_code": 1002003, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121909", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya (Raj Bihari Bose), Kalyanvas, Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.61979034, | |
"lng": 77.30922361, | |
"most_urgent": false, | |
"students": 1717, | |
"student_teacher_ratio": 26.828125 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.284789, 28.634361], | |
"properties": { | |
"cartodb_id": 30, | |
"edudel_code": 1002004, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122302", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya No.2 (Ishwar Chand), Shakarpur, Delhi", | |
"village_name": "223-SHAKARPUR", | |
"lat": 28.63436138, | |
"lng": 77.28478859, | |
"most_urgent": false, | |
"students": 1825, | |
"student_teacher_ratio": 33.7962963 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.297518, 28.62165], | |
"properties": { | |
"cartodb_id": 31, | |
"edudel_code": 1002005, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040121701", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, West Vinod Nagar, Delhi", | |
"village_name": "217-VINOD NAGAR", | |
"lat": 28.62164984, | |
"lng": 77.29751809, | |
"most_urgent": false, | |
"students": 1677, | |
"student_teacher_ratio": 39 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.302513, 28.609898], | |
"properties": { | |
"cartodb_id": 32, | |
"edudel_code": 1002006, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040120902", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya (Prem Chand), Mayur Vihar, Phase I, Pkt. II, Delhi", | |
"village_name": "209-MAYUR VIHAR PHASE-I", | |
"lat": 28.60989819, | |
"lng": 77.30251337, | |
"most_urgent": false, | |
"students": 2346, | |
"student_teacher_ratio": 35.54545455 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305436, 28.621078], | |
"properties": { | |
"cartodb_id": 33, | |
"edudel_code": 1002007, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121908", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya (Jai Prakash Narayan), East Vinod Nagar, Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.62107819, | |
"lng": 77.30543587, | |
"most_urgent": false, | |
"students": 2115, | |
"student_teacher_ratio": 31.10294118 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.319288, 28.614506], | |
"properties": { | |
"cartodb_id": 34, | |
"edudel_code": 1002008, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121301", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Kalyan Puri, Delhi", | |
"village_name": "213-KALYAN PURI", | |
"lat": 28.61450553, | |
"lng": 77.31928826, | |
"most_urgent": false, | |
"students": 1565, | |
"student_teacher_ratio": 24.07692308 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.30614, 28.604538], | |
"properties": { | |
"cartodb_id": 35, | |
"edudel_code": 1002010, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040120904", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Trilokpuri, Block 20, Delhi", | |
"village_name": "209-MAYUR VIHAR PHASE-I", | |
"lat": 28.60453808, | |
"lng": 77.30613999, | |
"most_urgent": true, | |
"students": 1896, | |
"student_teacher_ratio": 32.68965517 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.314689, 28.618034], | |
"properties": { | |
"cartodb_id": 36, | |
"edudel_code": 1002012, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121901", | |
"school_name": "Govt. Boys Sr. Sec. School, Khichripur, Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.61803404, | |
"lng": 77.31468874, | |
"most_urgent": false, | |
"students": 776, | |
"student_teacher_ratio": 28.74074074 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.32138, 28.608864], | |
"properties": { | |
"cartodb_id": 37, | |
"edudel_code": 1002013, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121403", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Dallupura, Delhi", | |
"village_name": "214-KHICHRI PUR", | |
"lat": 28.60886386, | |
"lng": 77.32138046, | |
"most_urgent": true, | |
"students": 2272, | |
"student_teacher_ratio": 34.42424242 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.333117, 28.604063], | |
"properties": { | |
"cartodb_id": 38, | |
"edudel_code": 1002014, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121505", | |
"school_name": "Govt. Boys Sr. Sec. School, B-Block ,New Kondli Delhi", | |
"village_name": "215-KONDLI", | |
"lat": 28.60406299, | |
"lng": 77.33311721, | |
"most_urgent": true, | |
"students": 3115, | |
"student_teacher_ratio": 33.13829787 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.302992, 28.617639], | |
"properties": { | |
"cartodb_id": 39, | |
"edudel_code": 1002015, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121907", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Mayur Vihar, Phase II, Pocket-B, Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.61763887, | |
"lng": 77.30299167, | |
"most_urgent": false, | |
"students": 894, | |
"student_teacher_ratio": 23.52631579 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.294277, 28.602736], | |
"properties": { | |
"cartodb_id": 40, | |
"edudel_code": 1002016, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040122004", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya (Shaheed Capt.Hanifuddin) Mayur Vihar Ph-I Pocket-IV, Delhi", | |
"village_name": "220-PATPARGANJ", | |
"lat": 28.60273634, | |
"lng": 77.29427713, | |
"most_urgent": false, | |
"students": 1156, | |
"student_teacher_ratio": 31.24324324 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.319062, 28.614056], | |
"properties": { | |
"cartodb_id": 41, | |
"edudel_code": 1002020, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121304", | |
"school_name": "Govt. Boys Sr. Sec. School, Kalyanpuri, Delhi", | |
"village_name": "213-KALYAN PURI", | |
"lat": 28.61405624, | |
"lng": 77.31906206, | |
"most_urgent": false, | |
"students": 947, | |
"student_teacher_ratio": 30.5483871 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.319125, 28.614195], | |
"properties": { | |
"cartodb_id": 42, | |
"edudel_code": 1002022, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121303", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya (Mother Teresa), Kalyanpuri, Delhi", | |
"village_name": "213-KALYAN PURI", | |
"lat": 28.61419536, | |
"lng": 77.31912454, | |
"most_urgent": true, | |
"students": 2145, | |
"student_teacher_ratio": 26.48148148 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.297779, 28.63097], | |
"properties": { | |
"cartodb_id": 43, | |
"edudel_code": 1002023, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040121802", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Mandawali Fazalpur, Delhi", | |
"village_name": "218-MANDAVALI", | |
"lat": 28.63096971, | |
"lng": 77.29777861, | |
"most_urgent": false, | |
"students": 1451, | |
"student_teacher_ratio": 21.65671642 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305588, 28.606148], | |
"properties": { | |
"cartodb_id": 44, | |
"edudel_code": 1002024, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121104", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Trilokpuri, Block -27, Delhi", | |
"village_name": "211-TRILOK PURI", | |
"lat": 28.60614757, | |
"lng": 77.30558813, | |
"most_urgent": false, | |
"students": 2422, | |
"student_teacher_ratio": 26.61538462 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.306446, 28.604778], | |
"properties": { | |
"cartodb_id": 45, | |
"edudel_code": 1002025, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040120903", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya (Sharda Sen), Trilokpuri, Block 20, Delhi", | |
"village_name": "209-MAYUR VIHAR PHASE-I", | |
"lat": 28.60477816, | |
"lng": 77.30644554, | |
"most_urgent": true, | |
"students": 2216, | |
"student_teacher_ratio": 27.02439024 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.322717, 28.613496], | |
"properties": { | |
"cartodb_id": 46, | |
"edudel_code": 1002026, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121504", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya (Jeeja Bai), Kondli, Near Kalyanpuri Bus Terminal, Delhi", | |
"village_name": "215-KONDLI", | |
"lat": 28.61349559, | |
"lng": 77.32271686, | |
"most_urgent": true, | |
"students": 2961, | |
"student_teacher_ratio": 32.18478261 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.32069, 28.608343], | |
"properties": { | |
"cartodb_id": 47, | |
"edudel_code": 1002027, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121402", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Dallupura, Delhi", | |
"village_name": "214-KHICHRI PUR", | |
"lat": 28.60834295, | |
"lng": 77.32069012, | |
"most_urgent": true, | |
"students": 2730, | |
"student_teacher_ratio": 32.89156627 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.306085, 28.620818], | |
"properties": { | |
"cartodb_id": 48, | |
"edudel_code": 1002028, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121902", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya (Ravindra Nath Thakur), East Vinod Nagar Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.62081823, | |
"lng": 77.30608516, | |
"most_urgent": false, | |
"students": 2409, | |
"student_teacher_ratio": 33.45833333 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.303331, 28.617753], | |
"properties": { | |
"cartodb_id": 49, | |
"edudel_code": 1002029, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121906", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Mayur Vihar, Phase II, Pkt. B, Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.61775328, | |
"lng": 77.30333063, | |
"most_urgent": false, | |
"students": 1202, | |
"student_teacher_ratio": 26.71111111 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.291288, 28.613904], | |
"properties": { | |
"cartodb_id": 50, | |
"edudel_code": 1002031, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122003", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Patpar Ganj, Delhi", | |
"village_name": "220-PATPARGANJ", | |
"lat": 28.61390391, | |
"lng": 77.29128829, | |
"most_urgent": false, | |
"students": 1935, | |
"student_teacher_ratio": 29.76923077 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.296975, 28.621475], | |
"properties": { | |
"cartodb_id": 51, | |
"edudel_code": 1002032, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040121703", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, West Vinod Nagar, Delhi", | |
"village_name": "217-VINOD NAGAR", | |
"lat": 28.62147524, | |
"lng": 77.29697454, | |
"most_urgent": false, | |
"students": 2912, | |
"student_teacher_ratio": 27.73333333 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.309229, 28.619918], | |
"properties": { | |
"cartodb_id": 52, | |
"edudel_code": 1002033, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121905", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Kalyan Vas Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.61991814, | |
"lng": 77.30922876, | |
"most_urgent": false, | |
"students": 1886, | |
"student_teacher_ratio": 26.56338028 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.302122, 28.609735], | |
"properties": { | |
"cartodb_id": 53, | |
"edudel_code": 1002034, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040120901", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya (Janki Devi), Pocket II Mayur Vihar Phase I, Delhi", | |
"village_name": "209-MAYUR VIHAR PHASE-I", | |
"lat": 28.60973482, | |
"lng": 77.30212191, | |
"most_urgent": false, | |
"students": 2715, | |
"student_teacher_ratio": 27.42424242 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.294564, 28.602791], | |
"properties": { | |
"cartodb_id": 54, | |
"edudel_code": 1002036, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040122001", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Mayur Vihar, Phase I, Pkt. IV, Delhi", | |
"village_name": "220-PATPARGANJ", | |
"lat": 28.60279122, | |
"lng": 77.29456431, | |
"most_urgent": false, | |
"students": 1220, | |
"student_teacher_ratio": 28.37209302 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.314689, 28.618034], | |
"properties": { | |
"cartodb_id": 55, | |
"edudel_code": 1002037, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121904", | |
"school_name": "Govt. Girls Sr. Sec. School, Khichripur, Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.61803404, | |
"lng": 77.31468874, | |
"most_urgent": false, | |
"students": 831, | |
"student_teacher_ratio": 23.74285714 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.318826, 28.613929], | |
"properties": { | |
"cartodb_id": 56, | |
"edudel_code": 1002039, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121302", | |
"school_name": "Govt. Girls Sr. Sec. School, Kalyanpuri, Delhi", | |
"village_name": "213-KALYAN PURI", | |
"lat": 28.61392864, | |
"lng": 77.31882586, | |
"most_urgent": false, | |
"students": 1052, | |
"student_teacher_ratio": 28.43243243 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305131, 28.606668], | |
"properties": { | |
"cartodb_id": 57, | |
"edudel_code": 1002175, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121103", | |
"school_name": "Govt. Girls Sec. School, Block-27, Trilokpuri, Delhi", | |
"village_name": "211-TRILOK PURI", | |
"lat": 28.60666802, | |
"lng": 77.30513146, | |
"most_urgent": false, | |
"students": 1172, | |
"student_teacher_ratio": 27.9047619 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305359, 28.606577], | |
"properties": { | |
"cartodb_id": 58, | |
"edudel_code": 1002177, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121102", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Block-27, Trilokpuri, Delhi", | |
"village_name": "211-TRILOK PURI", | |
"lat": 28.60657674, | |
"lng": 77.30535893, | |
"most_urgent": true, | |
"students": 2092, | |
"student_teacher_ratio": 25.51219512 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.292571, 28.622617], | |
"properties": { | |
"cartodb_id": 59, | |
"edudel_code": 1002180, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040121702", | |
"school_name": "Govt. Co-ed. Sr. Sec. School, West Vinod Nagar, E Block, Delhi", | |
"village_name": "217-VINOD NAGAR", | |
"lat": 28.62261682, | |
"lng": 77.29257104, | |
"most_urgent": false, | |
"students": 1311, | |
"student_teacher_ratio": 29.79545455 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.295082, 28.630724], | |
"properties": { | |
"cartodb_id": 60, | |
"edudel_code": 1002181, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122002", | |
"school_name": "Govt. Boys Sr. Sec. School No.3, Joshi Colony, Mandawali, Delhi", | |
"village_name": "220-PATPARGANJ", | |
"lat": 28.63072449, | |
"lng": 77.29508196, | |
"most_urgent": false, | |
"students": 1354, | |
"student_teacher_ratio": 36.59459459 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.296131, 28.598091], | |
"properties": { | |
"cartodb_id": 61, | |
"edudel_code": 1002182, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121201", | |
"school_name": "Govt. Co-ed. Sr. Sec. School, Chilla Village, Delhi", | |
"village_name": "212-NEW ASHOK NAGAR", | |
"lat": 28.59809098, | |
"lng": 77.29613096, | |
"most_urgent": false, | |
"students": 1921, | |
"student_teacher_ratio": 32.55932203 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305498, 28.588964], | |
"properties": { | |
"cartodb_id": 62, | |
"edudel_code": 1002183, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121203", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, New Ashok Nagar,Delhi", | |
"village_name": "212-NEW ASHOK NAGAR", | |
"lat": 28.58896416, | |
"lng": 77.30549811, | |
"most_urgent": true, | |
"students": 2762, | |
"student_teacher_ratio": 34.09876543 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.318618, 28.636229], | |
"properties": { | |
"cartodb_id": 63, | |
"edudel_code": 1002184, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040122702", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Gazipur, Delhi", | |
"village_name": "227-I.P. EXTENSION", | |
"lat": 28.63622948, | |
"lng": 77.31861841, | |
"most_urgent": true, | |
"students": 2215, | |
"student_teacher_ratio": 34.609375 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.32169, 28.611304], | |
"properties": { | |
"cartodb_id": 64, | |
"edudel_code": 1002185, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121401", | |
"school_name": "Govt. Girls Sr. Sec. School, Vasundhara Enclave, Delhi", | |
"village_name": "214-KHICHRI PUR", | |
"lat": 28.61130355, | |
"lng": 77.32169012, | |
"most_urgent": false, | |
"students": 1673, | |
"student_teacher_ratio": 30.41818182 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.333881, 28.603718], | |
"properties": { | |
"cartodb_id": 65, | |
"edudel_code": 1002186, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121503", | |
"school_name": "Govt. Girls Sr. Sec. School, B-Block, New Kondli, Delhi", | |
"village_name": "215-KONDLI", | |
"lat": 28.60371777, | |
"lng": 77.33388093, | |
"most_urgent": true, | |
"students": 3855, | |
"student_teacher_ratio": 32.125 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.305562, 28.588979], | |
"properties": { | |
"cartodb_id": 66, | |
"edudel_code": 1002187, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121202", | |
"school_name": "Govt. Boys Sr. Sec. School, New Ashok Nagar, Delhi", | |
"village_name": "212-NEW ASHOK NAGAR", | |
"lat": 28.58897873, | |
"lng": 77.30556178, | |
"most_urgent": true, | |
"students": 1776, | |
"student_teacher_ratio": 33.50943396 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.313162, 28.631301], | |
"properties": { | |
"cartodb_id": 67, | |
"edudel_code": 1002189, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122701", | |
"school_name": "Govt. Sarvodaya Vidyalaya, I. P. Extn., Patparganj, Delhi", | |
"village_name": "227-I.P. EXTENSION", | |
"lat": 28.63130126, | |
"lng": 77.31316224, | |
"most_urgent": false, | |
"students": 1250, | |
"student_teacher_ratio": 26.59574468 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.295236, 28.628772], | |
"properties": { | |
"cartodb_id": 68, | |
"edudel_code": 1002190, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040121801", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, No.3, Joshi Colony, Mandawali, Delhi", | |
"village_name": "218-MANDAVALI", | |
"lat": 28.62877177, | |
"lng": 77.29523586, | |
"most_urgent": false, | |
"students": 1597, | |
"student_teacher_ratio": 30.71153846 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.287869, 28.634408], | |
"properties": { | |
"cartodb_id": 69, | |
"edudel_code": 1002191, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122402", | |
"school_name": "Govt. Girls Sr. Sec. School, School Block, Shakarpur, Delhi", | |
"village_name": "224-PANDAV NAGAR", | |
"lat": 28.63440781, | |
"lng": 77.28786876, | |
"most_urgent": false, | |
"students": 988, | |
"student_teacher_ratio": 26 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.28446, 28.633941], | |
"properties": { | |
"cartodb_id": 70, | |
"edudel_code": 1002192, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122301", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya No.1, Shakarpur,Vir Sawakar Block. Shakarpur,Delhi", | |
"village_name": "223-SHAKARPUR", | |
"lat": 28.63394148, | |
"lng": 77.28446037, | |
"most_urgent": false, | |
"students": 1145, | |
"student_teacher_ratio": 30.94594595 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.285445, 28.633909], | |
"properties": { | |
"cartodb_id": 71, | |
"edudel_code": 1002193, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122304", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya No.2, Madhuban Road, Shakarpur, Delhi", | |
"village_name": "223-SHAKARPUR", | |
"lat": 28.63390924, | |
"lng": 77.2854446, | |
"most_urgent": false, | |
"students": 1723, | |
"student_teacher_ratio": 26.10606061 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.288147, 28.634424], | |
"properties": { | |
"cartodb_id": 72, | |
"edudel_code": 1002195, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122401", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, School Block, Shakar Pur, Delhi", | |
"village_name": "224-PANDAV NAGAR", | |
"lat": 28.63442378, | |
"lng": 77.28814659, | |
"most_urgent": false, | |
"students": 946, | |
"student_teacher_ratio": 26.27777778 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.284196, 28.63369], | |
"properties": { | |
"cartodb_id": 73, | |
"edudel_code": 1002196, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122303", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya No.1, Shakarpur,Vir Sawakar Block, Shakarpur,Delhi", | |
"village_name": "223-SHAKARPUR", | |
"lat": 28.63369026, | |
"lng": 77.28419638, | |
"most_urgent": false, | |
"students": 1098, | |
"student_teacher_ratio": 25.53488372 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.304873, 28.607138], | |
"properties": { | |
"cartodb_id": 74, | |
"edudel_code": 1002197, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121101", | |
"school_name": "Govt. Boys Sec. School, Block-27, Trilokpuri, Delhi", | |
"village_name": "211-TRILOK PURI", | |
"lat": 28.60713763, | |
"lng": 77.30487306, | |
"most_urgent": true, | |
"students": 1244, | |
"student_teacher_ratio": 33.62162162 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.322817, 28.613342], | |
"properties": { | |
"cartodb_id": 75, | |
"edudel_code": 1002198, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121502", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Kondli, near Kalyan Puri Bus Terminal, Delhi", | |
"village_name": "215-KONDLI", | |
"lat": 28.6133419, | |
"lng": 77.32281681, | |
"most_urgent": false, | |
"students": 2025, | |
"student_teacher_ratio": 26.64473684 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.329205, 28.608926], | |
"properties": { | |
"cartodb_id": 76, | |
"edudel_code": 1002199, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121603", | |
"school_name": "Govt. Girls Sec. School, Mayur Vihar, Phase III, Delhi", | |
"village_name": "216-GHAROLI", | |
"lat": 28.60892647, | |
"lng": 77.32920511, | |
"most_urgent": false, | |
"students": 1343, | |
"student_teacher_ratio": 27.97916667 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.329599, 28.608843], | |
"properties": { | |
"cartodb_id": 77, | |
"edudel_code": 1002263, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121501", | |
"school_name": "Govt. Boys Sec. School, Gharoli, Mayur vihar, Phase-III, Delhi", | |
"village_name": "215-KONDLI", | |
"lat": 28.60884332, | |
"lng": 77.32959921, | |
"most_urgent": false, | |
"students": 969, | |
"student_teacher_ratio": 33.4137931 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.313254, 28.620738], | |
"properties": { | |
"cartodb_id": 78, | |
"edudel_code": 1002350, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121903", | |
"school_name": "Govt. Co-ed. Sec. School, Khichripur Village, Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.62073776, | |
"lng": 77.31325429, | |
"most_urgent": false, | |
"students": 672, | |
"student_teacher_ratio": 26.88 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.29528, 28.636034], | |
"properties": { | |
"cartodb_id": 79, | |
"edudel_code": 1002351, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122801", | |
"school_name": "Govt. Co-ed. Sr. Sec. School, D-Block, Preet Vihar, Delhi", | |
"village_name": "228-PREET VIHAR", | |
"lat": 28.63603368, | |
"lng": 77.29528039, | |
"most_urgent": false, | |
"students": 942, | |
"student_teacher_ratio": 27.70588235 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.334677, 28.604858], | |
"properties": { | |
"cartodb_id": 80, | |
"edudel_code": 1002352, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121602", | |
"school_name": "Govt. Girls Sec. School, Gharoli, Mayur Vihar, Phase III, Delhi", | |
"village_name": "216-GHAROLI", | |
"lat": 28.60485804, | |
"lng": 77.33467667, | |
"most_urgent": false, | |
"students": 1449, | |
"student_teacher_ratio": 35.34146341 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.329226, 28.608895], | |
"properties": { | |
"cartodb_id": 81, | |
"edudel_code": 1002354, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121601", | |
"school_name": "Govt. Boys Sec. School, Mayur Vihar, Phase III, Delhi", | |
"village_name": "216-GHAROLI", | |
"lat": 28.6088946, | |
"lng": 77.32922631, | |
"most_urgent": true, | |
"students": 1554, | |
"student_teacher_ratio": 35.31818182 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.314857, 28.617991], | |
"properties": { | |
"cartodb_id": 82, | |
"edudel_code": 1002360, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121910", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Khichri Pur, J.J Colony, Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.61799124, | |
"lng": 77.31485748, | |
"most_urgent": false, | |
"students": 671, | |
"student_teacher_ratio": 22.36666667 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.321541, 28.611259], | |
"properties": { | |
"cartodb_id": 83, | |
"edudel_code": 1002362, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040121404", | |
"school_name": "Govt. Boys Sr. Sec. School, Vasundhra Enclave, Delhi", | |
"village_name": "214-KHICHRI PUR", | |
"lat": 28.61125882, | |
"lng": 77.3215408, | |
"most_urgent": true, | |
"students": 1740, | |
"student_teacher_ratio": 31.63636364 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.318592, 28.636261], | |
"properties": { | |
"cartodb_id": 84, | |
"edudel_code": 1002363, | |
"distname": "EAST DELHI", | |
"pincode": 110096, | |
"school_code": "7040122703", | |
"school_name": "Govt. Boys Sr. Sec. School, Gazipur, Delhi", | |
"village_name": "227-I.P. EXTENSION", | |
"lat": 28.63626107, | |
"lng": 77.31859219, | |
"most_urgent": true, | |
"students": 1635, | |
"student_teacher_ratio": 33.36734694 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.297698, 28.630997], | |
"properties": { | |
"cartodb_id": 85, | |
"edudel_code": 1002367, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040121804", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, No.2, Mandawali Fazalpur, Delhi", | |
"village_name": "218-MANDAVALI", | |
"lat": 28.63099735, | |
"lng": 77.29769849, | |
"most_urgent": true, | |
"students": 969, | |
"student_teacher_ratio": 31.25806452 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.297966, 28.630503], | |
"properties": { | |
"cartodb_id": 86, | |
"edudel_code": 1002368, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040121805", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, No.2, I.P.Extn, Mandawali, Delhi", | |
"village_name": "218-MANDAVALI", | |
"lat": 28.6305028, | |
"lng": 77.29796647, | |
"most_urgent": false, | |
"students": 1290, | |
"student_teacher_ratio": 33.94736842 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.31926, 28.614635], | |
"properties": { | |
"cartodb_id": 87, | |
"edudel_code": 1002369, | |
"distname": "EAST DELHI", | |
"pincode": 110091, | |
"school_code": "7040121911", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Khichri Pur, J.J Colony, Delhi", | |
"village_name": "219-MAYUR VIHAR PHASE-II", | |
"lat": 28.61463483, | |
"lng": 77.31925967, | |
"most_urgent": false, | |
"students": 598, | |
"student_teacher_ratio": 23.92 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.28357, 28.638786], | |
"properties": { | |
"cartodb_id": 88, | |
"edudel_code": 1003001, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122201", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Laxmi Nagar, Delhi", | |
"village_name": "222-LAXMI NAGAR", | |
"lat": 28.6387859, | |
"lng": 77.28356984, | |
"most_urgent": false, | |
"students": 1462, | |
"student_teacher_ratio": 25.64912281 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.273362, 28.648244], | |
"properties": { | |
"cartodb_id": 89, | |
"edudel_code": 1003002, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040123004", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Rani Garden, Delhi", | |
"village_name": "230-GEETA COLONY", | |
"lat": 28.64824448, | |
"lng": 77.27336156, | |
"most_urgent": false, | |
"students": 1315, | |
"student_teacher_ratio": 25.78431373 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.266186, 28.655249], | |
"properties": { | |
"cartodb_id": 90, | |
"edudel_code": 1003003, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040122909", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya No.1, Jheel Khurenja, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.65524893, | |
"lng": 77.2661863, | |
"most_urgent": false, | |
"students": 760, | |
"student_teacher_ratio": 21.11111111 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.259355, 28.663336], | |
"properties": { | |
"cartodb_id": 91, | |
"edudel_code": 1003004, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040123402", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Kailash Nagar, Gandhi Nagar, Delhi", | |
"village_name": "234-GANDHI NAGAR", | |
"lat": 28.66333583, | |
"lng": 77.25935457, | |
"most_urgent": false, | |
"students": 714, | |
"student_teacher_ratio": 23.03225806 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.282164, 28.65684], | |
"properties": { | |
"cartodb_id": 92, | |
"edudel_code": 1003007, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040122908", | |
"school_name": "Govt. Boys Sr. Sec. School, Chander Nagar, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.65683983, | |
"lng": 77.28216449, | |
"most_urgent": false, | |
"students": 767, | |
"student_teacher_ratio": 20.72972973 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.276388, 28.647424], | |
"properties": { | |
"cartodb_id": 93, | |
"edudel_code": 1003009, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040123003", | |
"school_name": "Govt. Boys Sr. Sec. School, Block-13, Geeta Colony, Delhi", | |
"village_name": "230-GEETA COLONY", | |
"lat": 28.64742439, | |
"lng": 77.27638791, | |
"most_urgent": false, | |
"students": 944, | |
"student_teacher_ratio": 32.55172414 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.268228, 28.654408], | |
"properties": { | |
"cartodb_id": 94, | |
"edudel_code": 1003012, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040122907", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Gandhi Nagar, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.65440808, | |
"lng": 77.26822792, | |
"most_urgent": false, | |
"students": 795, | |
"student_teacher_ratio": 22.08333333 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.282524, 28.659439], | |
"properties": { | |
"cartodb_id": 95, | |
"edudel_code": 1003013, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040122906", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Krishna Nagar, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.65943944, | |
"lng": 77.28252362, | |
"most_urgent": false, | |
"students": 1278, | |
"student_teacher_ratio": 27.7826087 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.276402, 28.647124], | |
"properties": { | |
"cartodb_id": 96, | |
"edudel_code": 1003024, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040123002", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, B-13, Geeta Colony, Delhi", | |
"village_name": "230-GEETA COLONY", | |
"lat": 28.64712423, | |
"lng": 77.27640224, | |
"most_urgent": false, | |
"students": 1720, | |
"student_teacher_ratio": 26.06060606 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.281236, 28.653411], | |
"properties": { | |
"cartodb_id": 97, | |
"edudel_code": 1003025, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040123104", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Chander Nagar, Delhi", | |
"village_name": "231-GHONDLI", | |
"lat": 28.65341115, | |
"lng": 77.28123649, | |
"most_urgent": false, | |
"students": 1555, | |
"student_teacher_ratio": 26.81034483 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.27076, 28.658436], | |
"properties": { | |
"cartodb_id": 98, | |
"edudel_code": 1003026, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040122905", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Shankar Nagar, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.65843562, | |
"lng": 77.27075952, | |
"most_urgent": false, | |
"students": 892, | |
"student_teacher_ratio": 22.3 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.269457, 28.6587], | |
"properties": { | |
"cartodb_id": 99, | |
"edudel_code": 1003027, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040122911", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya No.1, Gandhi Nagar, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.65869987, | |
"lng": 77.26945738, | |
"most_urgent": false, | |
"students": 1792, | |
"student_teacher_ratio": 24.54794521 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.283567, 28.638878], | |
"properties": { | |
"cartodb_id": 100, | |
"edudel_code": 1003028, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122202", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Laxmi Nagar, Delhi", | |
"village_name": "222-LAXMI NAGAR", | |
"lat": 28.63887757, | |
"lng": 77.28356676, | |
"most_urgent": false, | |
"students": 2010, | |
"student_teacher_ratio": 25.76923077 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.272585, 28.648166], | |
"properties": { | |
"cartodb_id": 101, | |
"edudel_code": 1003030, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040123001", | |
"school_name": "Govt. Girls Sr. Sec. School, Rani Garden, Block-12, Geeta Colony, Delhi", | |
"village_name": "230-GEETA COLONY", | |
"lat": 28.64816603, | |
"lng": 77.27258465, | |
"most_urgent": false, | |
"students": 1044, | |
"student_teacher_ratio": 23.2 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.259582, 28.663245], | |
"properties": { | |
"cartodb_id": 102, | |
"edudel_code": 1003033, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040123401", | |
"school_name": "Govt. Girls Sr. Sec. School, Kailash Nagar, Delhi", | |
"village_name": "234-GANDHI NAGAR", | |
"lat": 28.66324482, | |
"lng": 77.25958163, | |
"most_urgent": false, | |
"students": 796, | |
"student_teacher_ratio": 25.67741935 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.268357, 28.657613], | |
"properties": { | |
"cartodb_id": 103, | |
"edudel_code": 1003034, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040122904", | |
"school_name": "Govt. Girls Sr. Sec. School No.2, Gandhi Nagar, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.65761311, | |
"lng": 77.26835661, | |
"most_urgent": false, | |
"students": 634, | |
"student_teacher_ratio": 21.86206897 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.269198, 28.65825], | |
"properties": { | |
"cartodb_id": 104, | |
"edudel_code": 1003035, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040122910", | |
"school_name": "Govt. Girls Sr. Sec. School No.3, Gandhi Nagar, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.65824974, | |
"lng": 77.26919786, | |
"most_urgent": false, | |
"students": 569, | |
"student_teacher_ratio": 17.78125 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.282618, 28.659184], | |
"properties": { | |
"cartodb_id": 105, | |
"edudel_code": 1003036, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040122903", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Krishna Nagar, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.6591838, | |
"lng": 77.28261778, | |
"most_urgent": false, | |
"students": 1517, | |
"student_teacher_ratio": 24.07936508 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.283728, 28.645824], | |
"properties": { | |
"cartodb_id": 106, | |
"edudel_code": 1003152, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040123103", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Radhey Shyam Park, Parwana Road, Khurenji, Delhi", | |
"village_name": "231-GHONDLI", | |
"lat": 28.6458238, | |
"lng": 77.28372823, | |
"most_urgent": false, | |
"students": 1242, | |
"student_teacher_ratio": 25.34693878 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.283492, 28.646032], | |
"properties": { | |
"cartodb_id": 107, | |
"edudel_code": 1003153, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040123102", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Radehy Shyam Park, Parwana Road, Khurenji, Delhi", | |
"village_name": "231-GHONDLI", | |
"lat": 28.64603191, | |
"lng": 77.28349151, | |
"most_urgent": false, | |
"students": 2002, | |
"student_teacher_ratio": 29.44117647 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.27268, 28.654521], | |
"properties": { | |
"cartodb_id": 108, | |
"edudel_code": 1003202, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040122902", | |
"school_name": "Govt. Co-ed. Sec. School, Block-2, Geeta Colony, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.6545211, | |
"lng": 77.27267993, | |
"most_urgent": false, | |
"students": 615, | |
"student_teacher_ratio": 25.625 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.267699, 28.668379], | |
"properties": { | |
"cartodb_id": 109, | |
"edudel_code": 1003204, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040123601", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Old Seelampur, Delhi", | |
"village_name": "236-RAGHUVARPURA", | |
"lat": 28.66837897, | |
"lng": 77.26769888, | |
"most_urgent": false, | |
"students": 740, | |
"student_teacher_ratio": 25.51724138 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.278804, 28.650752], | |
"properties": { | |
"cartodb_id": 110, | |
"edudel_code": 1003205, | |
"distname": "EAST DELHI", | |
"pincode": 110051, | |
"school_code": "7040123101", | |
"school_name": "Govt. Co-ed. Sr. Sec. School, Shivpuri, Delhi", | |
"village_name": "231-GHONDLI", | |
"lat": 28.65075171, | |
"lng": 77.278804, | |
"most_urgent": false, | |
"students": 834, | |
"student_teacher_ratio": 29.78571429 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.271407, 28.636869], | |
"properties": { | |
"cartodb_id": 111, | |
"edudel_code": 1003260, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122101", | |
"school_name": "Govt. Girls Sr. Sec. School, Lalita Park, Delhi", | |
"village_name": "221-KISHAN KUNJ", | |
"lat": 28.63686874, | |
"lng": 77.27140651, | |
"most_urgent": false, | |
"students": 795, | |
"student_teacher_ratio": 24.84375 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.271846, 28.657966], | |
"properties": { | |
"cartodb_id": 112, | |
"edudel_code": 1003261, | |
"distname": "EAST DELHI", | |
"pincode": 110031, | |
"school_code": "7040122901", | |
"school_name": "Rajkiya Pratibha Vikas Vidyalaya, Gandhi Nagar, Delhi", | |
"village_name": "229-KRISHNA NAGAR", | |
"lat": 28.65796635, | |
"lng": 77.27184628, | |
"most_urgent": false, | |
"students": 701, | |
"student_teacher_ratio": 20.61764706 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.271401, 28.636943], | |
"properties": { | |
"cartodb_id": 113, | |
"edudel_code": 1003264, | |
"distname": "EAST DELHI", | |
"pincode": 110092, | |
"school_code": "7040122102", | |
"school_name": "Govt. Boys Sr. Sec. School, Lalita Park, Delhi", | |
"village_name": "221-KISHAN KUNJ", | |
"lat": 28.63694332, | |
"lng": 77.27140081, | |
"most_urgent": false, | |
"students": 928, | |
"student_teacher_ratio": 25.08108108 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.272563, 28.659467], | |
"properties": { | |
"cartodb_id": 114, | |
"edudel_code": 1003265, | |
"distname": "EAST DELHI", | |
"pincode": 110033, | |
"school_code": "7040123301", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Old Seelampur, Delhi", | |
"village_name": "233-DHARAMPURA", | |
"lat": 28.6594665, | |
"lng": 77.2725625, | |
"most_urgent": false, | |
"students": 698, | |
"student_teacher_ratio": 22.51612903 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.270098, 28.701609], | |
"properties": { | |
"cartodb_id": 115, | |
"edudel_code": 1104001, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125611", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya No.1, B- Block, Yamuna Vihar, Delhi", | |
"village_name": "256-YAMUNA VIHAR", | |
"lat": 28.70160939, | |
"lng": 77.27009803, | |
"most_urgent": false, | |
"students": 2940, | |
"student_teacher_ratio": 30.625 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.257525, 28.71019], | |
"properties": { | |
"cartodb_id": 116, | |
"edudel_code": 1104002, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126904", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya, Khajoori Khas, Delhi", | |
"village_name": "269-KHAZOORI KHAS", | |
"lat": 28.71019039, | |
"lng": 77.25752471, | |
"most_urgent": true, | |
"students": 3992, | |
"student_teacher_ratio": 43.86813187 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.270243, 28.699703], | |
"properties": { | |
"cartodb_id": 117, | |
"edudel_code": 1104003, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125610", | |
"school_name": "Govt. Sarvodaya Bal Vidyalaya No.2, Yamuna Vihar, B-Block, Delhi", | |
"village_name": "256-YAMUNA VIHAR", | |
"lat": 28.69970293, | |
"lng": 77.27024285, | |
"most_urgent": true, | |
"students": 3678, | |
"student_teacher_ratio": 39.12765957 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.286614, 28.702348], | |
"properties": { | |
"cartodb_id": 118, | |
"edudel_code": 1104004, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126206", | |
"school_name": "Govt. Boys Sr. Sec. School, Gokalpur Village, Delhi", | |
"village_name": "262-GOKULPUR", | |
"lat": 28.70234783, | |
"lng": 77.2866141, | |
"most_urgent": true, | |
"students": 2663, | |
"student_teacher_ratio": 35.50666667 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.28476, 28.703703], | |
"properties": { | |
"cartodb_id": 119, | |
"edudel_code": 1104005, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126205", | |
"school_name": "Govt. Boys Sr. Sec. School, Gokal Puri, Delhi", | |
"village_name": "262-GOKULPUR", | |
"lat": 28.7037034, | |
"lng": 77.28476025, | |
"most_urgent": true, | |
"students": 2678, | |
"student_teacher_ratio": 34.33333333 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.269661, 28.693132], | |
"properties": { | |
"cartodb_id": 120, | |
"edudel_code": 1104006, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125503", | |
"school_name": "Govt. Boys Sr. Sec. School No.1, Ghonda, Delhi", | |
"village_name": "255-GHONDA", | |
"lat": 28.69313205, | |
"lng": 77.26966067, | |
"most_urgent": true, | |
"students": 1732, | |
"student_teacher_ratio": 31.49090909 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.270029, 28.693386], | |
"properties": { | |
"cartodb_id": 121, | |
"edudel_code": 1104007, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125502", | |
"school_name": "Govt. Boys Sr. Sec. School No.2, Ghonda, Delhi", | |
"village_name": "255-GHONDA", | |
"lat": 28.69338638, | |
"lng": 77.27002904, | |
"most_urgent": false, | |
"students": 934, | |
"student_teacher_ratio": 28.3030303 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.276814, 28.700374], | |
"properties": { | |
"cartodb_id": 122, | |
"edudel_code": 1104008, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125609", | |
"school_name": "Govt. Boys Sr. Sec. School No.2, Yamuna Vihar, C-Block, Delhi", | |
"village_name": "256-YAMUNA VIHAR", | |
"lat": 28.70037397, | |
"lng": 77.2768138, | |
"most_urgent": false, | |
"students": 3768, | |
"student_teacher_ratio": 54.60869565 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.276002, 28.698872], | |
"properties": { | |
"cartodb_id": 123, | |
"edudel_code": 1104009, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125608", | |
"school_name": "Govt. Boys Sr. Sec. School No.1, Yamuna Vihar, C-Block, Delhi", | |
"village_name": "256-YAMUNA VIHAR", | |
"lat": 28.69887233, | |
"lng": 77.27600221, | |
"most_urgent": false, | |
"students": 2600, | |
"student_teacher_ratio": 34.66666667 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.263886, 28.717292], | |
"properties": { | |
"cartodb_id": 124, | |
"edudel_code": 1104010, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030127004", | |
"school_name": "Govt. Boys Sr. Sec. School, Dayalpur Village, Delhi", | |
"village_name": "270-TUKHMIRPUR", | |
"lat": 28.71729168, | |
"lng": 77.26388624, | |
"most_urgent": false, | |
"students": 2431, | |
"student_teacher_ratio": 32.41333333 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.256994, 28.747868], | |
"properties": { | |
"cartodb_id": 125, | |
"edudel_code": 1104011, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030127103", | |
"school_name": "Govt. Girls Sr. Sec. School, Sabhapur, Delhi", | |
"village_name": "271-KARAWAL NAGAR (WEST)", | |
"lat": 28.74786787, | |
"lng": 77.25699393, | |
"most_urgent": true, | |
"students": 1746, | |
"student_teacher_ratio": 48.5 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.260351, 28.698362], | |
"properties": { | |
"cartodb_id": 126, | |
"edudel_code": 1104012, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125301", | |
"school_name": "Govt. Co-ed. Sr. Sec. School (RDJK) , Bhajanpura, D- Block, Delhi", | |
"village_name": "253-BHAJANPURA", | |
"lat": 28.69836152, | |
"lng": 77.26035052, | |
"most_urgent": false, | |
"students": 1315, | |
"student_teacher_ratio": 28.58695652 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.275597, 28.710925], | |
"properties": { | |
"cartodb_id": 127, | |
"edudel_code": 1104014, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126802", | |
"school_name": "Govt. Boys Sec. School, Mustafabad, Gali No.19, Delhi", | |
"village_name": "268-MUSTAFABAD", | |
"lat": 28.71092521, | |
"lng": 77.27559674, | |
"most_urgent": true, | |
"students": 2369, | |
"student_teacher_ratio": 50.40425532 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.258044, 28.710954], | |
"properties": { | |
"cartodb_id": 128, | |
"edudel_code": 1104015, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126903", | |
"school_name": "Govt. Boys Sr. Sec. School, Khajoori Khas, Delhi", | |
"village_name": "269-KHAZOORI KHAS", | |
"lat": 28.71095384, | |
"lng": 77.25804352, | |
"most_urgent": true, | |
"students": 2348, | |
"student_teacher_ratio": 37.26984127 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.284745, 28.713907], | |
"properties": { | |
"cartodb_id": 129, | |
"edudel_code": 1104017, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126204", | |
"school_name": "Govt. Co-ed. Middle School, Johripur, Delhi", | |
"village_name": "262-GOKULPUR", | |
"lat": 28.71390692, | |
"lng": 77.28474504, | |
"most_urgent": true, | |
"students": 1570, | |
"student_teacher_ratio": 25.73770492 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.276464, 28.698702], | |
"properties": { | |
"cartodb_id": 130, | |
"edudel_code": 1104018, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125607", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya No.1, Yamuna Vihar, C-Block, Delhi", | |
"village_name": "256-YAMUNA VIHAR", | |
"lat": 28.69870207, | |
"lng": 77.27646363, | |
"most_urgent": true, | |
"students": 3880, | |
"student_teacher_ratio": 34.95495495 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.269932, 28.69364], | |
"properties": { | |
"cartodb_id": 131, | |
"edudel_code": 1104019, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125501", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya No.2, A Block, Ghonda, Delhi", | |
"village_name": "255-GHONDA", | |
"lat": 28.69364003, | |
"lng": 77.26993175, | |
"most_urgent": true, | |
"students": 1541, | |
"student_teacher_ratio": 28.01818182 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.284757, 28.703385], | |
"properties": { | |
"cartodb_id": 132, | |
"edudel_code": 1104020, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126203", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Gokalpuri, Delhi", | |
"village_name": "262-GOKULPUR", | |
"lat": 28.70338474, | |
"lng": 77.28475668, | |
"most_urgent": true, | |
"students": 3586, | |
"student_teacher_ratio": 33.83018868 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.287307, 28.702414], | |
"properties": { | |
"cartodb_id": 133, | |
"edudel_code": 1104021, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126202", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Gokal Pur Village, Delhi", | |
"village_name": "262-GOKULPUR", | |
"lat": 28.70241373, | |
"lng": 77.28730741, | |
"most_urgent": true, | |
"students": 4182, | |
"student_teacher_ratio": 38.72222222 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.257767, 28.709996], | |
"properties": { | |
"cartodb_id": 134, | |
"edudel_code": 1104022, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126902", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya, Khajoori Khas Delhi", | |
"village_name": "269-KHAZOORI KHAS", | |
"lat": 28.70999607, | |
"lng": 77.25776651, | |
"most_urgent": true, | |
"students": 5234, | |
"student_teacher_ratio": 50.32692308 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.270903, 28.699078], | |
"properties": { | |
"cartodb_id": 135, | |
"edudel_code": 1104023, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125606", | |
"school_name": "Govt. Girls Sr. Sec. School No.1, B-Block, Yamuna Vihar, Delhi", | |
"village_name": "256-YAMUNA VIHAR", | |
"lat": 28.69907818, | |
"lng": 77.27090305, | |
"most_urgent": true, | |
"students": 2931, | |
"student_teacher_ratio": 37.10126582 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.276829, 28.699705], | |
"properties": { | |
"cartodb_id": 136, | |
"edudel_code": 1104024, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125605", | |
"school_name": "Govt. Sarvodaya Kanya Vidyalaya No.2, Yamuna Vihar, C-Block, Delhi", | |
"village_name": "256-YAMUNA VIHAR", | |
"lat": 28.69970479, | |
"lng": 77.27682924, | |
"most_urgent": true, | |
"students": 3472, | |
"student_teacher_ratio": 38.15384615 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.269413, 28.692972], | |
"properties": { | |
"cartodb_id": 137, | |
"edudel_code": 1104025, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125504", | |
"school_name": "Govt. Girls Sr. Sec. School No.1, Ghonda, Yamuna Vihar, Delhi", | |
"village_name": "255-GHONDA", | |
"lat": 28.69297196, | |
"lng": 77.26941315, | |
"most_urgent": true, | |
"students": 1919, | |
"student_teacher_ratio": 34.26785714 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.264051, 28.717158], | |
"properties": { | |
"cartodb_id": 138, | |
"edudel_code": 1104026, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030127003", | |
"school_name": "Govt. Girls Sr. Sec. School, Dayalpur, Delhi", | |
"village_name": "270-TUKHMIRPUR", | |
"lat": 28.71715797, | |
"lng": 77.26405095, | |
"most_urgent": true, | |
"students": 3810, | |
"student_teacher_ratio": 32.01680672 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.27055, 28.699671], | |
"properties": { | |
"cartodb_id": 139, | |
"edudel_code": 1104027, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125604", | |
"school_name": "Govt. Girls Sr. Sec. School No.2, Yamuna Vihar, B-Block, Delhi", | |
"village_name": "256-YAMUNA VIHAR", | |
"lat": 28.69967111, | |
"lng": 77.27054992, | |
"most_urgent": true, | |
"students": 2792, | |
"student_teacher_ratio": 34.9 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.275717, 28.710868], | |
"properties": { | |
"cartodb_id": 140, | |
"edudel_code": 1104028, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110094, | |
"school_code": "7030126801", | |
"school_name": "Govt. Girls Sec. School, Mustufabad, Delhi", | |
"village_name": "268-MUSTAFABAD", | |
"lat": 28.71086778, | |
"lng": 77.27571727, | |
"most_urgent": true, | |
"students": 2826, | |
"student_teacher_ratio": 43.47692308 | |
} | |
}, { | |
"type": "Point", | |
"coordinates": [77.276543, 28.696161], | |
"properties": { | |
"cartodb_id": 141, | |
"edudel_code": 1104029, | |
"distname": "NORTH EAST DELHI", | |
"pincode": 110053, | |
"school_code": "7030125203", | |
"school_name": "Govt. Girls Sr. Sec. School, Vijay Park, Maujpur, Delhi", | |
"village_name": "252-MAUZPUR", | |
"lat": 28.6961607, | |
"lng": 77.27654287, | |