Spaces:
Sleeping
Sleeping
Commit ·
3a134c0
1
Parent(s): ab5ad7f
Added cleanup
Browse files
app.py
CHANGED
|
@@ -57,6 +57,32 @@ EMISSION_HOTSPOTS_PATH = os.path.join(STATIC_DIR, 'emission_map_hotspots.png')
|
|
| 57 |
# Default map path (alias to heatmap for backward compat)
|
| 58 |
MAP_IMAGE_PATH = HEATMAP_PATH
|
| 59 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
@app.route('/api/aqi-map', methods=['GET'])
|
| 61 |
def get_aqi_map_html():
|
| 62 |
"""Returns the Interactive Heatmap HTML (Default)"""
|
|
|
|
| 57 |
# Default map path (alias to heatmap for backward compat)
|
| 58 |
MAP_IMAGE_PATH = HEATMAP_PATH
|
| 59 |
|
| 60 |
+
# ============================================================================
|
| 61 |
+
# STARTUP CLEANUP - Remove orphaned temp files from crashed runs
|
| 62 |
+
# ============================================================================
|
| 63 |
+
def cleanup_temp_files():
|
| 64 |
+
"""Remove orphaned temp_*.html files from previous crashed runs."""
|
| 65 |
+
import glob
|
| 66 |
+
backend_dir = os.path.dirname(os.path.abspath(__file__))
|
| 67 |
+
patterns = [
|
| 68 |
+
os.path.join(backend_dir, 'temp_map_*.html'),
|
| 69 |
+
os.path.join(backend_dir, 'temp_emission_map_*.html'),
|
| 70 |
+
]
|
| 71 |
+
cleaned = 0
|
| 72 |
+
for pattern in patterns:
|
| 73 |
+
for temp_file in glob.glob(pattern):
|
| 74 |
+
try:
|
| 75 |
+
os.remove(temp_file)
|
| 76 |
+
cleaned += 1
|
| 77 |
+
print(f"Cleaned up orphaned temp file: {os.path.basename(temp_file)}")
|
| 78 |
+
except Exception as e:
|
| 79 |
+
print(f"Failed to cleanup {temp_file}: {e}")
|
| 80 |
+
if cleaned > 0:
|
| 81 |
+
print(f"Startup cleanup: Removed {cleaned} orphaned temp file(s)")
|
| 82 |
+
|
| 83 |
+
# Run cleanup on startup
|
| 84 |
+
cleanup_temp_files()
|
| 85 |
+
|
| 86 |
@app.route('/api/aqi-map', methods=['GET'])
|
| 87 |
def get_aqi_map_html():
|
| 88 |
"""Returns the Interactive Heatmap HTML (Default)"""
|
temp_emission_map_04987211-cd5e-44f3-bc05-a241e8232513.html
DELETED
|
@@ -1,412 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html>
|
| 3 |
-
<head>
|
| 4 |
-
|
| 5 |
-
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
| 6 |
-
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
|
| 7 |
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
| 8 |
-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
|
| 9 |
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
|
| 10 |
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
|
| 11 |
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
|
| 12 |
-
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
|
| 13 |
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
|
| 14 |
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
|
| 15 |
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
|
| 16 |
-
|
| 17 |
-
<meta name="viewport" content="width=device-width,
|
| 18 |
-
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
| 19 |
-
<style>
|
| 20 |
-
#map_b08c72729d1cab533b26701a1d925eeb {
|
| 21 |
-
position: relative;
|
| 22 |
-
width: 100.0%;
|
| 23 |
-
height: 100.0%;
|
| 24 |
-
left: 0.0%;
|
| 25 |
-
top: 0.0%;
|
| 26 |
-
}
|
| 27 |
-
.leaflet-container { font-size: 1rem; }
|
| 28 |
-
</style>
|
| 29 |
-
|
| 30 |
-
<style>html, body {
|
| 31 |
-
width: 100%;
|
| 32 |
-
height: 100%;
|
| 33 |
-
margin: 0;
|
| 34 |
-
padding: 0;
|
| 35 |
-
}
|
| 36 |
-
</style>
|
| 37 |
-
|
| 38 |
-
<style>#map {
|
| 39 |
-
position:absolute;
|
| 40 |
-
top:0;
|
| 41 |
-
bottom:0;
|
| 42 |
-
right:0;
|
| 43 |
-
left:0;
|
| 44 |
-
}
|
| 45 |
-
</style>
|
| 46 |
-
|
| 47 |
-
<script>
|
| 48 |
-
L_NO_TOUCH = false;
|
| 49 |
-
L_DISABLE_3D = false;
|
| 50 |
-
</script>
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
</head>
|
| 54 |
-
<body>
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
<div style="position: fixed; bottom: 50px; left: 50px; z-index: 1000; background: white; padding: 10px; border-radius: 5px; font-size: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.3);">
|
| 58 |
-
<b>🏠 Residential Emissions</b><br>
|
| 59 |
-
<span style="color: #22c55e;">●</span> 7 locations<br>
|
| 60 |
-
Baseline Data
|
| 61 |
-
</div>
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
<div class="folium-map" id="map_b08c72729d1cab533b26701a1d925eeb" ></div>
|
| 65 |
-
|
| 66 |
-
</body>
|
| 67 |
-
<script>
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
var map_b08c72729d1cab533b26701a1d925eeb = L.map(
|
| 71 |
-
"map_b08c72729d1cab533b26701a1d925eeb",
|
| 72 |
-
{
|
| 73 |
-
center: [28.7041, 77.1025],
|
| 74 |
-
crs: L.CRS.EPSG3857,
|
| 75 |
-
...{
|
| 76 |
-
"zoom": 11,
|
| 77 |
-
"zoomControl": true,
|
| 78 |
-
"preferCanvas": false,
|
| 79 |
-
}
|
| 80 |
-
|
| 81 |
-
}
|
| 82 |
-
);
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
var tile_layer_e5392953fac1295fe033786d1d024262 = L.tileLayer(
|
| 89 |
-
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
|
| 90 |
-
{
|
| 91 |
-
"minZoom": 0,
|
| 92 |
-
"maxZoom": 19,
|
| 93 |
-
"maxNativeZoom": 19,
|
| 94 |
-
"noWrap": false,
|
| 95 |
-
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors",
|
| 96 |
-
"subdomains": "abc",
|
| 97 |
-
"detectRetina": false,
|
| 98 |
-
"tms": false,
|
| 99 |
-
"opacity": 1,
|
| 100 |
-
}
|
| 101 |
-
|
| 102 |
-
);
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
tile_layer_e5392953fac1295fe033786d1d024262.addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
function geo_json_5162a4c7a31a30a4d1c7f0ccb0f85830_styler(feature) {
|
| 109 |
-
switch(feature.properties.Id) {
|
| 110 |
-
default:
|
| 111 |
-
return {"color": "black", "dashArray": "5, 5", "fillColor": "none", "opacity": 0.6, "weight": 3};
|
| 112 |
-
}
|
| 113 |
-
}
|
| 114 |
-
|
| 115 |
-
function geo_json_5162a4c7a31a30a4d1c7f0ccb0f85830_onEachFeature(feature, layer) {
|
| 116 |
-
|
| 117 |
-
layer.on({
|
| 118 |
-
});
|
| 119 |
-
};
|
| 120 |
-
var geo_json_5162a4c7a31a30a4d1c7f0ccb0f85830 = L.geoJson(null, {
|
| 121 |
-
onEachFeature: geo_json_5162a4c7a31a30a4d1c7f0ccb0f85830_onEachFeature,
|
| 122 |
-
|
| 123 |
-
style: geo_json_5162a4c7a31a30a4d1c7f0ccb0f85830_styler,
|
| 124 |
-
...{
|
| 125 |
-
}
|
| 126 |
-
});
|
| 127 |
-
|
| 128 |
-
function geo_json_5162a4c7a31a30a4d1c7f0ccb0f85830_add (data) {
|
| 129 |
-
geo_json_5162a4c7a31a30a4d1c7f0ccb0f85830
|
| 130 |
-
.addData(data);
|
| 131 |
-
}
|
| 132 |
-
geo_json_5162a4c7a31a30a4d1c7f0ccb0f85830_add({"crs": {"properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}, "type": "name"}, "features": [{"geometry": {"coordinates": [[[77.33088732800013, 28.631718202000116], [77.3322527680001, 28.629952021000065], [77.33377092100005, 28.628950645000202], [77.33411228000017, 28.62829619799993], [77.33465127000017, 28.627460392000046], [77.3382265640002, 28.62528411100004], [77.33817266500012, 28.625213145000032], [77.33921471100018, 28.624590215000183], [77.33938539100006, 28.624203839000188], [77.33996031300006, 28.623896315000138], [77.34043642000012, 28.62368341200022], [77.34023879100016, 28.6218540120002], [77.34056218400019, 28.621822471000144], [77.34076879700012, 28.621538595000118], [77.34112812300003, 28.6214439700002], [77.34180185899999, 28.620127092000132], [77.34196355600017, 28.61942527600013], [77.34161321300019, 28.614141794000147], [77.34141558400012, 28.61358977300023], [77.34184677500019, 28.613447824000104], [77.34200847200015, 28.610474743000054], [77.3418288090001, 28.608873818000177], [77.34196355600017, 28.608384860000058], [77.34162219600017, 28.60692586200014], [77.3411999880002, 28.60523024300005], [77.34077778000011, 28.60525390300006], [77.34013099300012, 28.60448100700006], [77.33955607100017, 28.604086670000243], [77.33867572200006, 28.602950973000134], [77.33843317700018, 28.60319546400018], [77.33737316500003, 28.60209130400017], [77.33667247900013, 28.60173639300018], [77.33565738300018, 28.601633863000245], [77.33477703400007, 28.601917792000165], [77.3336900720002, 28.601476124000044], [77.33204615500017, 28.601168533000077], [77.32929731000019, 28.600277302000165], [77.32807560200018, 28.60003280300009], [77.32756356200008, 28.599685773000147], [77.32738389900004, 28.59987506200008], [77.32618015600019, 28.599054804000104], [77.32616219000016, 28.59888128700004], [77.3266832130002, 28.598652560000176], [77.32640473500004, 28.59837650900016], [77.3250123470001, 28.597942714000055], [77.32386250300004, 28.597840180000105], [77.32265876000014, 28.597501029000057], [77.32115857400004, 28.597729759000117], [77.32040398900006, 28.59769032300005], [77.31720598700008, 28.59689371000013], [77.3149691820002, 28.596948921000205], [77.31385527100014, 28.596664978000035], [77.31323543300005, 28.596317936000105], [77.3131366180001, 28.59581314600007], [77.31275034300006, 28.595481875000132], [77.31284915800012, 28.595371452000165], [77.31228321900011, 28.59462214600012], [77.3124, 28.594401297000047], [77.31221135400011, 28.594298760000186], [77.31205864000009, 28.593817622000188], [77.31124117300004, 28.59280801500006], [77.31114235900003, 28.591932488000168], [77.31026201000014, 28.590765108000028], [77.30751316500016, 28.588106903000096], [77.30417143200015, 28.585322421000114], [77.3016741150002, 28.583153155000048], [77.30157530100018, 28.58329514500025], [77.30082071600003, 28.58278240400017], [77.30132377200005, 28.581551814000136], [77.29967985600013, 28.580833964000078], [77.29946426000004, 28.580652528000144], [77.29923069800009, 28.57995833699999], [77.29923968100019, 28.57920103300006], [77.29978765300007, 28.578372725000065], [77.29983256900005, 28.57711841799994], [77.30007511400015, 28.57614020600022], [77.2999673160001, 28.575067317000162], [77.29903306900013, 28.57223515499993], [77.29905103500005, 28.571375235000232], [77.29995833300018, 28.569150456000045], [77.30639027100011, 28.561828867000088], [77.30975895300014, 28.55748932200015], [77.31672089600005, 28.550932326000122], [77.31758327900008, 28.549677691000113], [77.31829294800008, 28.54865977000003], [77.31908346600011, 28.54701844800013], [77.3198111010002, 28.544232879000106], [77.31975720200006, 28.543759403000024], [77.32016144400012, 28.54269407600009], [77.32082619700014, 28.54207065800017], [77.32354809300011, 28.541147359999968], [77.32464403700004, 28.540531824000027], [77.32604540900013, 28.53964797000009], [77.32701559000003, 28.53881935100003], [77.33051901900012, 28.53545745800011], [77.3312736040001, 28.533800147000193], [77.33150716600005, 28.533626522000134], [77.33308820100007, 28.53248217200013], [77.33415719600015, 28.52952258600004], [77.33438177500017, 28.527525804999925], [77.33610654000012, 28.524510832000146], [77.33635806900008, 28.524502939000115], [77.33730130000004, 28.52325588300016], [77.338343345, 28.522837563000166], [77.34164016200003, 28.521953561000032], [77.34664377900003, 28.52101430100015], [77.34747022900007, 28.520493364000117], [77.34723666700006, 28.518125433000023], [77.34706598700018, 28.517880744000138], [77.34666174500012, 28.51777813200016], [77.34611377300007, 28.51728085800005], [77.34661682900014, 28.516909874000078], [77.34659886300005, 28.516799368000193], [77.34600597500003, 28.515757449000034], [77.34563766500014, 28.51450239500008], [77.34544901900017, 28.513239434000127], [77.34512562600014, 28.51322364700019], [77.34457765300016, 28.512931584000057], [77.34405663100006, 28.512118543000042], [77.34240373000017, 28.510610846000077], [77.34226898300011, 28.51009775100016], [77.34186474100005, 28.50988461800023], [77.34093947700006, 28.508716328000162], [77.3399064140001, 28.507879572000036], [77.33929556000004, 28.506940187000225], [77.33740909700015, 28.505337686000246], [77.33675332700011, 28.504564057000096], [77.33621433800016, 28.504240394000192], [77.33602569200019, 28.503624642000034], [77.33547772000014, 28.502827317000083], [77.335226191, 28.502416811000046], [77.33531602300019, 28.502187874000185], [77.33412126399998, 28.500814242000047], [77.33430092700002, 28.50067214100011], [77.33413024700013, 28.500301099000126], [77.3329624370001, 28.49912480800009], [77.33118377300002, 28.496740608000152], [77.32937815900004, 28.494964265000192], [77.32923442800012, 28.494285299000126], [77.32844391100019, 28.492666816000053], [77.32777017400014, 28.49184572300004], [77.32691677500014, 28.491206213000112], [77.3268179600002, 28.48980875300009], [77.32547947000012, 28.489721904000135], [77.32521895900015, 28.489287661000162], [77.32308995200015, 28.488600762999965], [77.32215570400012, 28.48813493299997], [77.32012551100007, 28.488000711000097], [77.31931702800006, 28.487819116000082], [77.3192990610001, 28.487479610000037], [77.31872414000003, 28.487479610000037], [77.31761921200012, 28.486634789999925], [77.31631665500004, 28.486421610000093], [77.31647835100011, 28.484589823000135], [77.31550817100015, 28.484360848000108], [77.31389120300008, 28.483571273000052], [77.31067523500013, 28.486563730000114], [77.30977691900006, 28.4873138050001], [77.30914809900008, 28.487645415000145], [77.30833063200004, 28.488071770000204], [77.30751316500016, 28.487850697000113], [77.30753113100019, 28.488458646000026], [77.30656993400015, 28.488924474000044], [77.30658790000007, 28.489263975000142], [77.30434211200003, 28.489335033000145], [77.30299463900019, 28.489587684000185], [77.30040749099999, 28.489611370000034], [77.3005063060001, 28.494127399000035], [77.29975172100012, 28.494151084000123], [77.29879950700018, 28.49410371400012], [77.2987456080001, 28.494293194000136], [77.29830543300017, 28.494348459000037], [77.29789220800018, 28.494664257000238], [77.29766762900016, 28.494411618000186], [77.29561947000008, 28.49439582800011], [77.29527811100013, 28.495011634000093], [77.29440674500017, 28.49526427100011], [77.29401148600004, 28.4945221480001], [77.29384080600016, 28.49454583300019], [77.29402945200013, 28.495587962000172], [77.29373300800012, 28.49564322600014], [77.29378690700003, 28.49600639000016], [77.28984330300005, 28.496448500000156], [77.28777717800011, 28.49597481], [77.28737293600005, 28.496030074000146], [77.28579190100004, 28.495816913], [77.28536969300012, 28.495556382000245], [77.285172064, 28.494893210000043], [77.284902569, 28.494672152000078], [77.28434561400019, 28.494695837000165], [77.2829532250002, 28.494308984000043], [77.28274661200004, 28.494435303000103], [77.2820998250001, 28.494285299000126], [77.28116557800018, 28.49370896400012], [77.28004268300009, 28.49396160400005], [77.27891978900004, 28.493669488999956], [77.277886727, 28.493622119000122], [77.27740163600015, 28.493298422000066], [77.27708722600005, 28.493290527000056], [77.27598229800009, 28.492785243000185], [77.27588348400013, 28.49285629900021], [77.27396108900012, 28.491735191000146], [77.27360176300004, 28.49134832700014], [77.27270344800007, 28.49100883300008], [77.27197581200011, 28.48691113400008], [77.26651405500019, 28.48582944100019], [77.26385504200016, 28.485624155000096], [77.26213027699998, 28.485292538000067], [77.25662360400008, 28.483863416000133], [77.25362323100012, 28.482639567000035], [77.25286864600008, 28.4822052950002], [77.25174575200009, 28.481865771000173], [77.24895199100013, 28.480523459000096], [77.24741587200015, 28.480231306000178], [77.24583483700013, 28.47872315400008], [77.24498143800014, 28.478067773000134], [77.24298717800019, 28.47753872700008], [77.24269073400018, 28.477325528000108], [77.24153190700008, 28.476291115000038], [77.24008562000006, 28.475398827000106], [77.23892679300019, 28.47444336000018], [77.23764220200007, 28.47292722900005], [77.23658219000009, 28.472074396000096], [77.23469572800013, 28.471174175000158], [77.23406690700011, 28.4702976370001], [77.2330697770002, 28.466570296000157], [77.2331955410001, 28.464667090999967], [77.23314164200019, 28.463774704000116], [77.23292604700003, 28.46362465600015], [77.23355486700018, 28.461855654000146], [77.23336622100004, 28.461184372000048], [77.23370758100003, 28.46044990700011], [77.23314164200019, 28.45987338800012], [77.23304282800018, 28.45787528900007], [77.2332674070002, 28.457156596], [77.23397707600003, 28.456793299000083], [77.23427352000004, 28.456414205000158], [77.23456098100013, 28.454542408000066], [77.2363126950001, 28.454242286000124], [77.23738169100011, 28.454226490000053], [77.23775000000012, 28.45369732400013], [77.23945679899998, 28.453744712000173], [77.23974426000007, 28.453989550000188], [77.24022036700012, 28.453918468000154], [77.2409749520001, 28.453326117000074], [77.24153190700008, 28.452180895000197], [77.24234937400013, 28.451201524000055], [77.24283446400017, 28.45099617000011], [77.24527788200015, 28.45046698900012], [77.24545754500019, 28.450174753000113], [77.24641874200006, 28.44994570300014], [77.24790994600016, 28.447426118000124], [77.24923046900011, 28.4461386590001], [77.24949996400011, 28.44621764400017], [77.25021861600004, 28.445475176000173], [77.25029946400014, 28.445214521000025], [77.25041624500017, 28.443658477000042], [77.2501916670002, 28.44239466800002], [77.25023658200013, 28.441375711000035], [77.250380313, 28.441375711000035], [77.250380313, 28.44104395500011], [77.2510091330002, 28.440917572000046], [77.25091031900018, 28.440396239000165], [77.2510091330002, 28.440017086000125], [77.25040726200018, 28.439061299000173], [77.25012878400008, 28.436557254000036], [77.24989522200013, 28.436557254000036], [77.24980539100005, 28.434519218000162], [77.24997607100016, 28.430996008000136], [77.25336271900005, 28.431106604000092], [77.25294949400006, 28.429700448000062], [77.25236559000007, 28.4284364720001], [77.24958081200003, 28.424083540000026], [77.24471194300014, 28.421958359000143], [77.23846865200005, 28.420054351000147], [77.23488437400016, 28.417462948000036], [77.23395012600008, 28.41586699200019], [77.23285418200004, 28.415835388000062], [77.23089585400015, 28.4147134640001], [77.22758107100009, 28.41363103200007], [77.22693428400015, 28.41361523], [77.22600003600007, 28.41277772000018], [77.22491307400003, 28.412477480000234], [77.22189473500015, 28.412485381000067], [77.21769960300014, 28.411766379000085], [77.21787028300008, 28.41035206600003], [77.21589398900016, 28.41051799200011], [77.21222886300012, 28.40918267500018], [77.21035138400009, 28.408961437000187], [77.2079079660001, 28.409356504000073], [77.20515912100012, 28.40917477399995], [77.20232044500005, 28.407863144000146], [77.201062804, 28.40844784900014], [77.19888888100019, 28.408534764000137], [77.19473866400006, 28.40866118600013], [77.19465781600013, 28.408392538999976], [77.19173829100009, 28.407973764000076], [77.19127116700014, 28.407634002], [77.19129811600016, 28.406891264000024], [77.19024708800004, 28.406654218000142], [77.18845045700016, 28.407333747000166], [77.185899242, 28.40776042600021], [77.18596212400007, 28.407855243000142], [77.18579144400019, 28.40791845400014], [77.18559381400013, 28.408597975000134], [77.18527940400008, 28.40903255000012], [77.18249462700015, 28.409356504000073], [77.18090460900004, 28.408534764000137], [77.1796829000001, 28.408163398000113], [77.17778745500004, 28.40725473200007], [77.17564946400017, 28.40549268800015], [77.17453555300011, 28.404378556000154], [77.17419419300012, 28.4042521290001], [77.17377198500014, 28.40497908300017], [77.17159806200016, 28.406188027999917], [77.17133755100019, 28.408558468000138], [77.17091534300005, 28.409585642000025], [77.17024160600016, 28.410107127000117], [77.16864260500012, 28.412185139000087], [77.1653727370001, 28.414152497000146], [77.16500442800009, 28.414831977000063], [77.16508527700012, 28.416743981000195], [77.16575901300013, 28.420236063000118], [77.16575901300013, 28.42225067300018], [77.16603749100005, 28.42565567200006], [77.16477086600014, 28.42646938000007], [77.16467205100003, 28.426809081000044], [77.1635401740001, 28.42836537300019], [77.16301915100007, 28.42877616700008], [77.16245321300016, 28.42878406700021], [77.15980318300007, 28.430237633000218], [77.15652433200012, 28.43137519300018], [77.15574279800012, 28.4320150650002], [77.15496126300019, 28.43196766700015], [77.15464685300014, 28.43241794500011], [77.15342514400004, 28.433073610000122], [77.15294005400006, 28.433610777999945], [77.15239208200018, 28.433800366000185], [77.15187105900014, 28.434171642000024], [77.15179021000012, 28.43474040200016], [77.15099071000003, 28.43540395100007], [77.1503529060002, 28.435704127000065], [77.14928391100011, 28.436557254000036], [77.1476669430001, 28.43730768400013], [77.14482826700004, 28.43750516500006], [77.14419046300003, 28.437299785000107], [77.14231298400006, 28.437039110000114], [77.14168416300015, 28.436675742999967], [77.14141466900003, 28.436683643000094], [77.13981566799998, 28.43713390100004], [77.14002228000004, 28.4374735680002], [77.1387376890001, 28.437813234000032], [77.1387376890001, 28.437900125000056], [77.13778547500016, 28.437963318000186], [77.13625833900011, 28.43846096600015], [77.1348390010001, 28.43862684800024], [77.13281779099998, 28.43947995100018], [77.13156913300008, 28.44041993600007], [77.13173083000004, 28.440688502000114], [77.13161404900006, 28.440917572000046], [77.12873045700019, 28.442821205000087], [77.12660145000018, 28.443295134000095], [77.12323276700005, 28.443437311999958], [77.12239733400014, 28.44367427500015], [77.12187631100011, 28.458507103000102], [77.11718710600019, 28.462526931000184], [77.11665710000017, 28.463577273000055], [77.11466284000005, 28.466428149000023], [77.11417774900013, 28.466720340000165], [77.11253383200011, 28.468647200000248], [77.11072821900018, 28.47115838200017], [77.11089889900006, 28.47132421200024], [77.11133907300007, 28.47137159300013], [77.11300993900011, 28.471292626000093], [77.11415080000012, 28.478091461000133], [77.11496826700017, 28.47941011600011], [77.11521979500003, 28.48122620099997], [77.11498623300002, 28.48137622400003], [77.11532759300007, 28.48230794100016], [77.11537250900005, 28.48284485900018], [77.11762728000019, 28.48582154500008], [77.11794169000007, 28.4869348200001], [77.11878610700006, 28.488577077000173], [77.11956764100006, 28.49182993300019], [77.11959459100012, 28.492485229000238], [77.12013358000007, 28.493969499000116], [77.12057375400008, 28.494751101000134], [77.1207264680001, 28.495769544000098], [77.12054680500006, 28.495951126000023], [77.117366769, 28.496330077999914], [77.11613607700014, 28.4969221880001], [77.11486046900012, 28.497309031000214], [77.11371062500018, 28.497940609000068], [77.11150077000008, 28.498714287000098], [77.10530239400003, 28.501406327000097], [77.102984741, 28.50281942300012], [77.10051437400017, 28.503640431000235], [77.0977116300001, 28.504816671000185], [77.09604974700017, 28.506742836000114], [77.09599584800003, 28.507090173000165], [77.09634619100018, 28.507934829000078], [77.09865486100006, 28.511439687000177], [77.09512448200007, 28.51330258200005], [77.09518736400014, 28.51341309200012], [77.09326497000006, 28.514139295000064], [77.08764151600019, 28.515591688000086], [77.08336553500015, 28.51685462100005], [77.08026634700002, 28.518062287000134], [77.07720309200016, 28.518520092000074], [77.07497527000004, 28.518701634000195], [77.07363678100006, 28.51936465700004], [77.072289308, 28.520264466000185], [77.07219049300011, 28.520051354000145], [77.07199286399998, 28.520098711999935], [77.07179523399998, 28.51860691600018], [77.07116641400017, 28.517296644000112], [77.06771688300017, 28.51311313700006], [77.06746535500014, 28.512718458000222], [77.06741145600017, 28.512165904000142], [77.06424938600003, 28.512663202000056], [77.06291089600012, 28.51254479800002], [77.06123104700015, 28.512189585000044], [77.05954221400015, 28.51234745800025], [77.05750303800016, 28.512892117000092], [77.05514046900015, 28.5140998280001], [77.05490690700003, 28.514076148000072], [77.05442181700005, 28.514336633000084], [77.05010990300013, 28.515654835000078], [77.04956193100008, 28.515931103000185], [77.0461034170001, 28.516625716000192], [77.04756767100008, 28.51985402799994], [77.0483761550002, 28.520730154000148], [77.04427983700003, 28.5229954200002], [77.04339948800009, 28.523832056000117], [77.04335457200011, 28.524850218000154], [77.04208794800013, 28.525434275000066], [77.04201608300014, 28.525726303000113], [77.04172862200005, 28.52586047699998], [77.04147709300014, 28.525576343000125], [77.0408662390002, 28.525813122000102], [77.04103691900013, 28.5262630000002], [77.03245800800005, 28.531030012000087], [77.03056256300016, 28.531558790000133], [77.02489419300008, 28.532711043000177], [77.02418452400008, 28.532979374000092], [77.02098652200016, 28.535528485000043], [77.01807598000005, 28.537296253000136], [77.01761783900008, 28.53744619600019], [77.01690817000008, 28.53896140000012], [77.01442882000009, 28.539868934000083], [77.01386288200013, 28.540184596000074], [77.01352152200013, 28.54057128100021], [77.01223693100019, 28.540034657000035], [77.0100989410002, 28.540271403000077], [77.00966774900007, 28.539774235000152], [77.00831129300008, 28.540673871000138], [77.00771840500005, 28.54087905000017], [77.00745789400008, 28.54083959200011], [77.0070446690001, 28.54038188500016], [77.00602957200005, 28.53972688600004], [77.00487074600005, 28.539190258000076], [77.00192427100006, 28.534021123], [77.00147511400013, 28.53360284600012], [77.00134935000005, 28.533255596000174], [77.00119663600003, 28.531424623000134], [77.0029483510001, 28.53039863200007], [77.00435870600018, 28.529159538000044], [77.00708958400014, 28.527754687000026], [77.00830231000015, 28.526965437000115], [77.00952401900008, 28.526618165000173], [77.01065589600017, 28.525536880000118], [77.01447373600007, 28.524274050000088], [77.0164320630002, 28.522411349000095], [77.01694410300007, 28.52155102200004], [77.01693512000014, 28.52092747900025], [77.01177879, 28.51634155599993], [77.01049419900005, 28.51504704300004], [77.01048521600012, 28.514644478000037], [77.00999114300015, 28.514652371000068], [77.0061283870001, 28.515796915000067], [77.00270580600017, 28.517296644000112], [77.00014560699998, 28.51780970499999], [76.9968038740002, 28.519593556000075], [76.99638166600005, 28.51900946700016], [76.99546538499999, 28.516988807000132], [76.99484554700007, 28.51728085800005], [76.99452215400004, 28.51759658800006], [76.99312078200006, 28.515733768000132], [76.99295908500011, 28.515757449000034], [76.99230331500002, 28.514707625000028], [76.99100075800015, 28.513468347000185], [76.98588934400004, 28.515710088000105], [76.98335609500015, 28.5169809140001], [76.98110132300008, 28.519159436000052], [76.97846027600013, 28.521132696000052], [76.97631330300004, 28.518748993000088], [76.97565753300012, 28.518567451000195], [76.97421124500005, 28.517691306000074], [76.97351954200008, 28.516965127000105], [76.97144443400015, 28.515844276], [76.97038442200005, 28.51510229700017], [76.96999814600002, 28.515149657000165], [76.96870457200015, 28.51427348500016], [76.96517419300017, 28.512892117000092], [76.96117669000006, 28.510247733000142], [76.95498729800005, 28.505653452000047], [76.9531996500001, 28.504800883000144], [76.95224743600005, 28.504658787000096], [76.94321936800003, 28.504429855000183], [76.94047950600014, 28.505748181000172], [76.93715573900005, 28.507895360000077], [76.93418231600015, 28.51005038800008], [76.93210720800005, 28.51009775100016], [76.9276246140002, 28.51057927100004], [76.92679816400005, 28.509695167000075], [76.92382474100015, 28.50785589000003], [76.92285456000008, 28.50743750900017], [76.92075250200003, 28.50689282200011], [76.91929723200008, 28.508692646000156], [76.91649448800018, 28.510602952000113], [76.9149224360001, 28.51132917500007], [76.9121107090001, 28.512315883000213], [76.91016136500008, 28.512126436000074], [76.90787066100012, 28.513381518000187], [76.90632555900015, 28.512442181000154], [76.90371146100006, 28.509805680000056], [76.90274128100009, 28.50903208300008], [76.90147465600018, 28.50945835199991], [76.89994752000013, 28.509679379000204], [76.89830360300004, 28.508889993999958], [76.89403660600004, 28.503135196000073], [76.89276998100013, 28.50114581000014], [76.89236573900013, 28.500893187000088], [76.89206929500011, 28.5007826640001], [76.89121589600006, 28.500798453000073], [76.88826043900008, 28.501130021000165], [76.88548464399997, 28.501232649000144], [76.88597871799999, 28.502464177000036], [76.88428090200006, 28.503040464000037], [76.88192731599997, 28.504579845000137], [76.88163985500012, 28.504500903000178], [76.88057984300013, 28.505558722000046], [76.88057086000003, 28.505835017000095], [76.88156799000012, 28.509553078000124], [76.88332868800012, 28.51241850000008], [76.8841910700001, 28.514084041000103], [76.88530498100016, 28.51700459400007], [76.88691296600007, 28.519530412000165], [76.88718246000013, 28.52024078700009], [76.88643685900018, 28.520667010000068], [76.88503548700004, 28.521037980000244], [76.88228664200005, 28.522221920000106], [76.87995102200006, 28.523508452000158], [76.87721116100016, 28.524771290999922], [76.87490249000018, 28.52771522500018], [76.87421078800014, 28.528993798000158], [76.8739053600001, 28.529112184000212], [76.87362688300004, 28.529443663000166], [76.8734023040002, 28.52998034100017], [76.87361789900018, 28.530580154000177], [76.87257585400005, 28.530856383000184], [76.8724770390001, 28.5309195210001], [76.87322264100015, 28.532545308000238], [76.87271060100011, 28.53278207200009], [76.87283636500018, 28.533105647000127], [76.87216262900006, 28.53337397700011], [76.87187516800014, 28.53320824399998], [76.8704468460001, 28.533910635000097], [76.8692970030001, 28.53415528700009], [76.86867716500012, 28.534778753000182], [76.86891072700007, 28.535220700999957], [76.86745545700012, 28.536041456000135], [76.86619781500013, 28.54121049200006], [76.86547916300003, 28.542331073000128], [76.86551509600008, 28.542717750000065], [76.86455389800011, 28.543562121000036], [76.86138284500004, 28.545361320000154], [76.86034080000007, 28.5457558760001], [76.85877773100015, 28.54610308500014], [76.85595702100017, 28.547081577000085], [76.85404360900009, 28.547468236000213], [76.85025271900014, 28.5486360970001], [76.847656588, 28.549141114000065], [76.8462462330001, 28.549575111000195], [76.84583300800011, 28.550016996999943], [76.84516825400004, 28.550356301000136], [76.84522215300012, 28.5513820970001], [76.84506045700005, 28.552194836000126], [76.84459333300015, 28.552960225000106], [76.84430587200006, 28.553110146000165], [76.8436501020002, 28.554364740000096], [76.84310212900004, 28.55494863300015], [76.84301229800013, 28.555571976000124], [76.84250025800009, 28.555895481000164], [76.84228466200017, 28.55633734100013], [76.84225771300015, 28.556976455000097], [76.84205110000005, 28.556929113999956], [76.8421588980001, 28.558081089000154], [76.84183550500006, 28.560645373000057], [76.84232059500005, 28.562657305000073], [76.8417097410001, 28.56437728000003], [76.84119770100006, 28.566688944000134], [76.84017362100019, 28.569552814000133], [76.84017362100019, 28.57143834900012], [76.83890699700004, 28.572803171000032], [76.83877225000015, 28.573797192000143], [76.8390417440001, 28.575580096000238], [76.83898784500013, 28.577938847000098], [76.83941005300011, 28.582664078000164], [76.840416167, 28.582695632000082], [76.84134143100005, 28.58292439400003], [76.84207805000011, 28.583350363000193], [76.84413519200018, 28.58412341400009], [76.84620131700012, 28.584691366000186], [76.84867168400018, 28.584778136000125], [76.85390886200008, 28.58533819700017], [76.85708889800009, 28.585211986000104], [76.85855315200013, 28.584975341000188], [76.86098758700018, 28.585046335000186], [76.86275726800017, 28.585290868000072], [76.86343100400012, 28.585243539000146], [76.86363761700005, 28.58563005800005], [76.86449101600004, 28.585559065000155], [76.86497610600009, 28.58699469700008], [76.86597323600012, 28.588335653], [76.86689850100004, 28.589006125000083], [76.86811122700004, 28.591191045000187], [76.86834478900016, 28.592200668000146], [76.86877598000007, 28.593028867000044], [76.87026718300007, 28.59749314200019], [76.87065345900004, 28.599662111000157], [76.87154279100008, 28.60254085600002], [76.87180330300015, 28.60295885900007], [76.87218059500009, 28.603085049000015], [76.87398620900012, 28.604867455999965], [76.875378597, 28.605829627000105], [76.87817235799997, 28.60940220400022], [76.88074154000014, 28.61530891400008], [76.88152307400014, 28.617595802000096], [76.88171172000011, 28.61860517100024], [76.88252918700016, 28.61993783900016], [76.88314902500008, 28.621625335000203], [76.88403835700012, 28.62314721200005], [76.88407428900007, 28.623699183000156], [76.8838137780001, 28.624038248999966], [76.88420005300003, 28.625970118000055], [76.8850983690001, 28.62814638400016], [76.88665245400017, 28.63063011199995], [76.88728127500008, 28.63051184000011], [76.88740703900015, 28.631111081000086], [76.88838620300015, 28.631978396000136], [76.89005706900002, 28.63194685800022], [76.89189861500017, 28.631481662000056], [76.89285082999999, 28.631552624000108], [76.89457559500016, 28.63083511500014], [76.8975580020001, 28.628919105999955], [76.89945344700016, 28.62727903700005], [76.89965107600011, 28.627318462000062], [76.90145669000009, 28.626340717000062], [76.90279518000017, 28.62586761100016], [76.90658607000012, 28.623604560000047], [76.90755625100019, 28.625670483000192], [76.90772693100013, 28.625670483000192], [76.9085533810001, 28.626924211000187], [76.91134714100014, 28.629723361000174], [76.91419480100006, 28.632199166000134], [76.91625194300008, 28.631844357000148], [76.91746466800015, 28.63182070299996], [76.91928824800004, 28.631481662000056], [76.92077046900005, 28.630898193000235], [76.92392355500016, 28.628020225000114], [76.92794800800016, 28.623044703], [76.9317388980001, 28.62052136900013], [76.93345468000012, 28.619125623000116], [76.93508063100012, 28.61832917300012], [76.9370479420001, 28.621065468000154], [76.93931169600017, 28.62314721200005], [76.94235698500017, 28.626995177000026], [76.94278817600019, 28.62813849900016], [76.943102587, 28.629597204000106], [76.94445006000007, 28.63310589600019], [76.94320140100001, 28.63347647000012], [76.9410274780002, 28.634454148000202], [76.93923983100018, 28.635431818000086], [76.9375240490001, 28.636646008000184], [76.9337151920002, 28.640320029000122], [76.93160415100004, 28.642022965000194], [76.93076871800014, 28.642929609000248], [76.92978955400008, 28.644703456000173], [76.92864869400006, 28.64575198300014], [76.9281276710002, 28.646650711000063], [76.92667240000014, 28.648053974000106], [76.92528899500013, 28.648984217000077], [76.92497458400015, 28.649291668000217], [76.92488475300007, 28.649607001000106], [76.92568425300016, 28.65118365500018], [76.92856784500003, 28.655401088000133], [76.92899005400005, 28.65637856300009], [76.93106516200015, 28.659121748000132], [76.93163110000006, 28.660580022000033], [76.93254738200005, 28.66208556900017], [76.9331312870001, 28.664268969000148], [76.93323010200004, 28.665191185000083], [76.93489198500015, 28.667358756000112], [76.93585318200019, 28.667776501000105], [76.93733540300013, 28.667792265000173], [76.94082984900007, 28.66817848000005], [76.9424378330001, 28.66819424400012], [76.94295885600013, 28.668068133000077], [76.94373140700003, 28.66878538700007], [76.9444680260001, 28.66914795300005], [76.94720788700005, 28.66962874600017], [76.94828586600016, 28.669951900000058], [76.95070233400008, 28.66943958199994], [76.9524181160001, 28.669494755000187], [76.95369372400017, 28.668990316000077], [76.95383745400017, 28.668927261000135], [76.95505916300004, 28.67003071800019], [76.95583171400011, 28.672387348000143], [76.95606527600006, 28.674570533000235], [76.95598442800014, 28.6764778270001], [76.95662223200014, 28.67906286400023], [76.95663121500013, 28.680599670000163], [76.957924789, 28.685194191000107], [76.95962260500016, 28.687794774000054], [76.96254212900016, 28.69108087300009], [76.96328773100004, 28.692318059000115], [76.9633865460001, 28.6934685490001], [76.96506639500012, 28.696147725000117], [76.96648573300013, 28.698054626000044], [76.96805778500016, 28.69921293300007], [76.96691692500008, 28.699796022000044], [76.96357519200006, 28.70229381100006], [76.9591644640002, 28.705303685000047], [76.95725105200012, 28.706115233000048], [76.95641561900004, 28.706855864000147], [76.95133115500016, 28.709983789000034], [76.94816010200009, 28.712709813000174], [76.95108861000006, 28.717728349000083], [76.9530738860002, 28.720320245000153], [76.95419678000019, 28.721391649000168], [76.95606527600006, 28.723747122000077], [76.95805953600006, 28.727032092000115], [76.95920039700007, 28.728552439000055], [76.95968548700006, 28.729560740000068], [76.95974836900007, 28.730206677000126], [76.95967650400007, 28.7313173660001], [76.95988311600013, 28.732766755999933], [76.9594339590002, 28.733995572000026], [76.95822123300002, 28.73577575400003], [76.95633477100012, 28.737327480000204], [76.95600239400005, 28.7382175460001], [76.95699952400014, 28.73972985400019], [76.95859852500018, 28.74299856900018], [76.95583171400011, 28.745849750000104], [76.95293015600004, 28.748165293000113], [76.95180726200005, 28.74930729300013], [76.95106166000016, 28.74965382900018], [76.95057657000018, 28.750283891000095], [76.94497108200017, 28.75348139600004], [76.94487226800015, 28.75367828399999], [76.94443209300005, 28.753827918000127], [76.94524057700016, 28.756237787000146], [76.9464622860001, 28.758395596999947], [76.94962435600007, 28.762159845000042], [76.9507292830001, 28.763222945000052], [76.95062148600016, 28.763333192000232], [76.950783182, 28.763514311000165], [76.95093589600003, 28.763600933000077], [76.95132217100013, 28.763404065000145], [76.95362185900018, 28.765758591000065], [76.95549035400012, 28.767412240000226], [76.95576883200005, 28.76745161200006], [76.95558916900006, 28.767845333999958], [76.9551939100001, 28.768892628000117], [76.95524780900001, 28.769443830000057], [76.95195997500014, 28.773254924000128], [76.95151081800003, 28.77399507800004], [76.95044182300012, 28.77504231], [76.95012741200014, 28.775034436000055], [76.94974113700005, 28.776617074000114], [76.94928299600008, 28.776813918000073], [76.94952554100013, 28.778191815000127], [76.94953452400011, 28.77935710800017], [76.94998368200015, 28.780947554000136], [76.94983995100006, 28.781915982000157], [76.95011842899999, 28.783435530000077], [76.95116047500005, 28.786387955999942], [76.95223845300006, 28.788104261000115], [76.95322660000005, 28.78929306100008], [76.95406203300018, 28.790017357000124], [76.95309185300016, 28.791245498999956], [76.9502172440001, 28.794103235000193], [76.94842061300005, 28.795465158000127], [76.9465431340002, 28.79753556300011], [76.94413564900003, 28.79818895200009], [76.9427073280001, 28.798157463000052], [76.94207850700019, 28.79829916200015], [76.94332716500014, 28.80120393600015], [76.94452192500006, 28.802786177000087], [76.94530345900006, 28.804085013000076], [76.94592329699998, 28.80557275200016], [76.94596821200008, 28.80620247600018], [76.94556397100013, 28.80679283899991], [76.94551007200016, 28.80717066900013], [76.94573465000013, 28.80771379800018], [76.94592329699998, 28.809193614000037], [76.94580651600018, 28.810224749000042], [76.94610296000019, 28.81107483799991], [76.94644432000001, 28.811720271000127], [76.9468485610002, 28.81198001700011], [76.94712703900012, 28.81239718500018], [76.94706415700006, 28.813011125000173], [76.94738755100019, 28.813625063000188], [76.94806128700014, 28.81391628800003], [76.94832179800011, 28.814845056000138], [76.9489685850001, 28.81588400599992], [76.9491662150001, 28.816080776000035], [76.94965130500009, 28.81606503400019], [76.95108861000006, 28.818150770999978], [76.95683782700013, 28.81652940899994], [76.95807750200015, 28.81600993900014], [76.95911954800005, 28.815246469000044], [76.9603053240001, 28.815207115000135], [76.96044905500014, 28.815333049000117], [76.96108685899998, 28.814986731000033], [76.96176059500016, 28.814892281000027], [76.962092972, 28.815718719000188], [76.96244331500014, 28.81597058500006], [76.96282959000001, 28.816576634000057], [76.96398841700011, 28.818906348000098], [76.96482385000019, 28.819898035000165], [76.96490469900004, 28.820252206000248], [76.96470706900004, 28.82074804500013], [76.96485080000014, 28.821062861000087], [76.9640962150001, 28.821873510000103], [76.96378180400012, 28.822778596000205], [76.96436570900005, 28.82337673500001], [76.96502148000019, 28.8245572630002], [76.96451842300007, 28.824667445000046], [76.96482385000019, 28.825328534000164], [76.96566826700018, 28.825674817000106], [76.96566826700018, 28.827209467000046], [76.96586589600008, 28.82777610100004], [76.96664743000008, 28.827508524000052], [76.96698879000007, 28.82836634100005], [76.9691357640001, 28.82780758000007], [76.97121087200003, 28.827571482999986], [76.973160216, 28.826800229000128], [76.97370818800005, 28.826367379000033], [76.97466040300009, 28.82502947000006], [76.97492989700015, 28.824289678000184], [76.9756665160001, 28.823274422000168], [76.97565753300012, 28.822597579000046], [76.976987039, 28.82255035700024], [76.97841536000016, 28.822172583000054], [76.98023894000005, 28.821424899000192], [76.98283507200011, 28.82457300300007], [76.98348185900005, 28.825084561000097], [76.9834010100002, 28.82551741600014], [76.98622172000017, 28.831160102000183], [76.98658104600008, 28.832238237000126], [76.98659901300005, 28.833300622000024], [76.98685952400018, 28.834111176000135], [76.98710206900012, 28.83440234400024], [76.98765902500014, 28.83450464600014], [76.98880886799998, 28.83550405400007], [76.98902446400007, 28.83553553100012], [76.98960836900017, 28.836464105000175], [76.99014735800006, 28.83710938100012], [76.99029108900015, 28.83711724999995], [76.99036295400015, 28.83763661600011], [76.99099177400012, 28.83816384800025], [76.99196195500019, 28.838336968000192], [76.99436944000018, 28.83929699400022], [76.99450418700008, 28.839745527000105], [76.99766625700005, 28.838549433000082], [76.99922932600015, 28.838281884000025], [77.00407124500009, 28.839895038000122], [77.00661347700014, 28.840556030000073], [77.00822146200005, 28.840681932999928], [77.00863468700004, 28.84057176799996], [77.00960486700018, 28.84065045700021], [77.01166200900002, 28.84056389900013], [77.01166200900002, 28.84033569999997], [77.01233574600008, 28.84024127300006], [77.01431203900012, 28.84028848600019], [77.01512950600016, 28.84004454900014], [77.01754597400009, 28.839957990000187], [77.01759089000006, 28.839832086000058], [77.0192617560001, 28.83967470600021], [77.01918090800018, 28.839501588000076], [77.02036668400007, 28.839344208], [77.02042058300015, 28.839100268000095], [77.02106737000008, 28.838990100999922], [77.02334010800001, 28.83918682700005], [77.02604403700019, 28.83773891500016], [77.02713998100012, 28.836873304999926], [77.02877491500004, 28.836550667000097], [77.03018527000012, 28.835960473000114], [77.03100273700016, 28.835771610000165], [77.0312093500001, 28.83557487700017], [77.0324310580001, 28.835283713000024], [77.03360785200016, 28.834551862000183], [77.03508108900007, 28.83422134799997], [77.03639262900009, 28.833489490000204], [77.03856655200008, 28.832741888000157], [77.04015657000019, 28.83184475800016], [77.04124353100013, 28.83304879900004], [77.04173760499998, 28.833347839000112], [77.04199811600017, 28.83374918200019], [77.04238439200014, 28.83396165700009], [77.04277066700001, 28.83514993400007], [77.04226761100017, 28.836133597000185], [77.0422765940001, 28.836448367000116], [77.04185438600018, 28.83701495100013], [77.04185438600018, 28.83754218600012], [77.04271676900004, 28.83862025500008], [77.04501645600016, 28.840398652000033], [77.04542968100014, 28.842153411000027], [77.045519512, 28.843766505000076], [77.04548358000005, 28.844592714000157], [77.04514222000006, 28.844765824000092], [77.0452500180001, 28.84513564800011], [77.04506137100003, 28.84533236200025], [77.04548358000005, 28.846245112000076], [77.04566324300009, 28.847181460000115], [77.04585188900006, 28.84759848600015], [77.04658850700008, 28.848251561000097], [77.04703766500012, 28.849164285000143], [77.04838513800013, 28.85065138000016], [77.04944515000011, 28.852366626000162], [77.05123279700013, 28.854624729000193], [77.05104415100016, 28.855033857000137], [77.05171788800004, 28.856339910000088], [77.05175382000016, 28.85675689900023], [77.05207721400012, 28.85741778400012], [77.05191551700011, 28.857606608000083], [77.05196043300015, 28.858110135000118], [77.05184365200012, 28.85812587100014], [77.05205026400017, 28.85917225700024], [77.052957563, 28.860855893000064], [77.05325400700002, 28.86109978200011], [77.05325400700002, 28.861335803000202], [77.0553021660001, 28.86358584300018], [77.05697303199997, 28.866205583999943], [77.05830253900012, 28.867999243000156], [77.0597039110001, 28.86936806700004], [77.06003628700006, 28.86987153800004], [77.0602429, 28.869855804000167], [77.06115019800012, 28.87084700500003], [77.06371039700014, 28.86929726600016], [77.06919012000009, 28.867102417000183], [77.06951351300012, 28.867519364000145], [77.06989080600016, 28.86742496100004], [77.07043877800004, 28.86781043800005], [77.07128319499998, 28.868762325000034], [77.07212761100004, 28.868754458000183], [77.07211862800011, 28.86856565500011], [77.07336728600006, 28.867771104000155], [77.07455306200012, 28.867259756000124], [77.07547832699998, 28.868683657000076], [77.07546036100013, 28.86890392700019], [77.07665512000011, 28.869604069000047], [77.0784876830001, 28.871413402000087], [77.0792153180002, 28.871743798000068], [77.07936803200005, 28.873442964000162], [77.07793072800013, 28.877289584000096], [77.08108381400007, 28.879932577000034], [77.08224264100011, 28.88167093800007], [77.08242230400015, 28.883149701000093], [77.08265586600015, 28.883495792000076], [77.08412910300007, 28.882410322000112], [77.08636590800012, 28.881906912000034], [77.08715642599998, 28.881427097000028], [77.08759659999998, 28.880727035000234], [77.0876235500001, 28.88000337000011], [77.08817152200015, 28.877745819000097], [77.08829728600006, 28.876644557000134], [77.08798287600018, 28.876101788000028], [77.08785711200005, 28.876125386999945], [77.0877672800001, 28.875716341000043], [77.08791999400012, 28.87559834700005], [77.08785711200005, 28.874520661000076], [77.08791999400012, 28.87537022500021], [77.09208817700011, 28.87252258600023], [77.09464837500019, 28.871319003000167], [77.09675043300007, 28.87080767200007], [77.09689416300006, 28.870917805000033], [77.09745111900014, 28.87075260600011], [77.09967894100004, 28.87058740600014], [77.10219422300014, 28.87020193900014], [77.10219422300014, 28.870445806000134], [77.10324525200019, 28.87054807300018], [77.10585036700019, 28.86988727100004], [77.10736851900003, 28.869690603000095], [77.10900345300013, 28.869737803000078], [77.10979397100016, 28.870013138000047], [77.10999160000006, 28.869722070000137], [77.11016228000017, 28.869714203000115], [77.11047669000004, 28.86874659100016], [77.11109652800019, 28.86871512400012], [77.11096178100013, 28.868227381000167], [77.11108754500003, 28.867959909000092], [77.11180619700019, 28.86731482400006], [77.11218348900013, 28.867220421000184], [77.11212060700007, 28.866504529999986], [77.11245298400013, 28.86648092900009], [77.11245298400013, 28.866370791000236], [77.11311773700015, 28.866362924000214], [77.11311773700015, 28.86586730300013], [77.11378249100011, 28.865859436000108], [77.11380944000013, 28.865717830000108], [77.11415080000012, 28.865631292000046], [77.11398910300016, 28.865206472000068], [77.11562403700009, 28.86470297800014], [77.11552522200014, 28.86399493600021], [77.11664811600014, 28.86320035000017], [77.11666608300015, 28.86268111300012], [77.11786084200014, 28.86210680100004], [77.11959459100012, 28.860564799000144], [77.11963052300007, 28.860313041000097], [77.11990001800012, 28.860313041000097], [77.11990900100005, 28.859966873000076], [77.12087019800009, 28.8599511380001], [77.12089714799998, 28.85826748700015], [77.12146308600012, 28.858055062000062], [77.12393345300012, 28.857614475000105], [77.12429277900003, 28.85772462200009], [77.12423888100017, 28.85800785699996], [77.1245622740002, 28.85870807200007], [77.12462515600009, 28.859187992000216], [77.12476888700019, 28.859195859000238], [77.12485871800004, 28.85956563200017], [77.12508329700006, 28.859557764000044], [77.12509228, 28.859896066000147], [77.12537075800014, 28.860336643000096], [77.12676314600003, 28.860462522000148], [77.12809265300018, 28.86113125100013], [77.13020369400016, 28.861941587999922], [77.13054505400015, 28.862122536000186], [77.13061691900015, 28.862492298000234], [77.13209015600012, 28.863294757000062], [77.13230575199998, 28.863341960000184], [77.13234168400015, 28.86295646600007], [77.13574629900017, 28.862547369000083], [77.1391059980001, 28.86197305700017], [77.13980668400012, 28.862209076000056], [77.14009414500003, 28.861980924000193], [77.14013007800008, 28.861296466000226], [77.14047143800008, 28.860375981000175], [77.14100144400004, 28.859644307000224], [77.14114517400003, 28.858416972000157], [77.14238484900005, 28.858180944000196], [77.14205247300009, 28.857032268000182], [77.14216925400007, 28.856253364000224], [77.14340892900003, 28.854931575000194], [77.14447792400011, 28.854711275000057], [77.14513369400004, 28.85419986300019], [77.14549302000006, 28.85316916300019], [77.14530437400009, 28.85298819900015], [77.14467555300001, 28.85134377600008], [77.14219620300008, 28.847472590999928], [77.14172907900013, 28.84622937500012], [77.14153145000006, 28.84268062000001], [77.14227705100018, 28.84164980600019], [77.14233993400012, 28.840469472000052], [77.14220518600018, 28.839415029000122], [77.14472046899999, 28.838321230000133], [77.14677761100006, 28.837912036000205], [77.14861915699998, 28.838030073000084], [77.15092782800014, 28.837872689999926], [77.15772807400009, 28.836936259000197], [77.15686569200011, 28.837951381000153], [77.15686569200011, 28.8390373150001], [77.15950673900005, 28.84118554300005], [77.16474391700012, 28.847818801000187], [77.16610037300012, 28.849345256000106], [77.16690885700001, 28.849006920000136], [77.1686875210001, 28.850462544000152], [77.16906481300009, 28.850619907000123], [77.16984634800014, 28.850572698000235], [77.17205620300012, 28.85001405600019], [77.17264010800005, 28.854042505000166], [77.17293655200007, 28.855317099000104], [77.17323299600008, 28.85589144800008], [77.17301740000016, 28.857339107000087], [77.17498471100015, 28.85849564700021], [77.17552370000004, 28.857976386000132], [77.17679930800011, 28.85794491600018], [77.17785033700011, 28.858393369000055], [77.17809288199999, 28.85865299900007], [77.18044646800007, 28.8578190340001], [77.18190173900012, 28.857732490000217], [77.18332107700013, 28.85794491600018], [77.18456973500008, 28.857905578000157], [77.1879204510002, 28.858259620000126], [77.19070522800013, 28.858385501000157], [77.19196287000011, 28.858306825000227], [77.19202575200012, 28.858401236000134], [77.19298694900016, 28.858377634000135], [77.19304983100005, 28.858519250000086], [77.19357983700019, 28.858432707000134], [77.19380441600003, 28.859014906000084], [77.19532256900015, 28.85936894400004], [77.20364995200003, 28.85907784600016], [77.2069647350001, 28.85924306400011], [77.20693778600008, 28.859046376000038], [77.20646167800015, 28.857291901000053], [77.20713541500004, 28.856961459000104], [77.20772830300007, 28.85710307700009], [77.20828525900015, 28.8578741070001], [77.20971358000008, 28.85855072000004], [77.21103410300003, 28.858338296000056], [77.21167190700004, 28.857787563000045], [77.21191445200014, 28.857087342000113], [77.21212106500008, 28.85471914300018], [77.21239055900014, 28.853885147000085], [77.21326192500015, 28.85230368200007], [77.21309124500004, 28.849982583000156], [77.21412430800018, 28.846748695000088], [77.21430397100005, 28.8454425220001], [77.21450160000012, 28.84509630500014], [77.21465431400014, 28.843270776000168], [77.21513940400013, 28.84307405800007], [77.21519330300009, 28.842334394000147], [77.21608263500013, 28.84029635500019], [77.21618145000019, 28.839753396000106], [77.217376209, 28.83814024000003], [77.21810384500003, 28.836385413000073], [77.22104133600016, 28.833670487000177], [77.22163422400018, 28.832238237000126], [77.22228101100012, 28.831443409000087], [77.22286491600005, 28.82996390900007], [77.22361950000015, 28.828909360000125], [77.22396984300008, 28.827760361000173], [77.22352068600014, 28.825950268000042], [77.22403272500014, 28.82534427400003], [77.22403272500014, 28.824698925000177], [77.22377221400018, 28.823856818000024], [77.22288288200014, 28.822880909000048], [77.22257745500013, 28.822345730000052], [77.22241575800018, 28.82160591800016], [77.2224966060001, 28.821125825000138], [77.22195761700004, 28.82034665200007], [77.2220564320001, 28.820142020000162], [77.22110421800005, 28.81922117], [77.22027776800002, 28.81867023100017], [77.22009810499998, 28.81745028300014], [77.21897521000011, 28.816655341000057], [77.21848113700014, 28.813554224000086], [77.2185350360001, 28.812050857000145], [77.21893029500018, 28.81027984800005], [77.21884944600015, 28.80891811800018], [77.21868775000013, 28.808563908000167], [77.217079765, 28.80863475000018], [77.21582212400017, 28.807398941000145], [77.21451956700008, 28.80913851500003], [77.21143834500009, 28.810201136000103], [77.2075486400002, 28.81055534000012], [77.20685693700005, 28.81091741500012], [77.20252705800004, 28.81230273200009], [77.20193416900008, 28.812436540000135], [77.20015550500017, 28.81249950800003], [77.20014652200007, 28.81117716300014], [77.19884396500004, 28.807894841000177], [77.19870023400011, 28.80448646900004], [77.19820616100003, 28.803785888999982], [77.19777497000013, 28.801518811000165], [77.19704733400016, 28.800983522000024], [77.19688563800008, 28.79964528700009], [77.19704733400016, 28.79957443800015], [77.19683173900017, 28.79826767300011], [77.20221264700001, 28.797370247000117], [77.21002799000019, 28.792867254000157], [77.21227377800017, 28.790159066000058], [77.21329785800003, 28.788938785000084], [77.21524720200017, 28.78716738199995], [77.21685518599998, 28.786025796000217], [77.21819367600006, 28.785498300000086], [77.21999030700016, 28.786025796000217], [77.22053827899998, 28.785868335000032], [77.22846142000003, 28.78658478100016], [77.22909024000018, 28.786183257000175], [77.22955736400007, 28.786285606000035], [77.23255773700009, 28.784640130000128], [77.23139891100016, 28.78351426200004], [77.2317851860002, 28.783215078000183], [77.23137196100004, 28.782774174999986], [77.23132704600016, 28.782238789000132], [77.23108450000012, 28.78204195500018], [77.23055449400016, 28.78241200200017], [77.22752717200018, 28.78075859100005], [77.22736547500017, 28.78052238700019], [77.22650309200014, 28.780010611000137], [77.2254879960002, 28.779577567000217], [77.22469747900004, 28.77893193500006], [77.22442798400004, 28.778546128000187], [77.22437408500014, 28.778168194000216], [77.22596410300008, 28.775498994000145], [77.2261527500001, 28.770002904000137], [77.2261886820001, 28.769821796000087], [77.22829972300002, 28.76929421800014], [77.22961126300004, 28.76791620399996], [77.23103958500008, 28.767160257000057], [77.23124619700013, 28.765876710000157], [77.23523471700008, 28.761096735000194], [77.235656925, 28.760907736000092], [77.23795661200012, 28.75998636299994], [77.23889984300013, 28.759442985000135], [77.23944781600005, 28.75930910900007], [77.2424122560002, 28.757899463000115], [77.24579890500019, 28.756568550000054], [77.24689484900011, 28.75597790200004], [77.24877232800009, 28.75547388100017], [77.25043421200013, 28.755276996000134], [77.25701886300004, 28.756222037000043], [77.2572254750001, 28.754497332000085], [77.25717157600013, 28.753717661000167], [77.2564439410001, 28.75359165300023], [77.25758480100012, 28.753166375000035], [77.258770577, 28.752473326000143], [77.25875261100015, 28.74899226000008], [77.25841125100015, 28.74779512500004], [77.25756683500009, 28.7464325790001], [77.25705479500016, 28.74510152000022], [77.25661462100015, 28.744605322000155], [77.2563720760001, 28.74405398800019], [77.25493477100008, 28.74384133000018], [77.25520426600008, 28.74095071100004], [77.25566240700005, 28.739312396000116], [77.25594986700003, 28.73890281400014], [77.25908498800004, 28.735933290000105], [77.25930956700006, 28.735917537000148], [77.2592556680001, 28.735500064000178], [77.26018991600012, 28.735381911000047], [77.26045042700008, 28.73508258900017], [77.26061212400009, 28.734586344000036], [77.26101636600015, 28.734302774000014], [77.26206739500014, 28.734562713000116], [77.26314537300016, 28.734625727999912], [77.26442098100017, 28.734318528000074], [77.26574150400012, 28.734586344000036], [77.26823882100007, 28.73477539000004], [77.26835560200004, 28.734995943000115], [77.27055647400005, 28.735184989000118], [77.27189496400013, 28.73558670900013], [77.27199377800014, 28.735791507000215], [77.27340413300004, 28.73561034000005], [77.27388922400013, 28.736476790000154], [77.27525466300006, 28.736161718000176], [77.27651230400011, 28.7355788320001], [77.27706027700003, 28.73531101900005], [77.28047387500004, 28.733073962000162], [77.28020438000004, 28.732286254000144], [77.28145303800017, 28.731018032000236], [77.28208185900002, 28.730608417000155], [77.28208185900002, 28.73022243200012], [77.28265678100018, 28.729615881000086], [77.28288136000003, 28.72960012600015], [77.28300712400011, 28.72908810000024], [77.28313288800007, 28.729040836000024], [77.28351018000018, 28.728836025000078], [77.28352814700014, 28.728576071000248], [77.2837886580001, 28.728284608000195], [77.28466900700005, 28.72754412899991], [77.28539664300001, 28.727559884000073], [77.28544155800012, 28.72734719200008], [77.28572003600004, 28.72735506900011], [77.28572901900003, 28.727150255000026], [77.28506426600018, 28.727110867000135], [77.28589071600015, 28.726189196000178], [77.28608834500005, 28.7256377650001], [77.28634885700012, 28.725645643000064], [77.28636682300004, 28.725251762000084], [77.28651953700006, 28.725220251000223], [77.28634885700012, 28.725031188000116], [77.28650157000004, 28.724842124000077], [77.28733700400011, 28.7246136710001], [77.28774124500006, 28.724448240000186], [77.28770531300012, 28.724274930000036], [77.28914261699998, 28.72353442300016], [77.28916058400017, 28.723384745000033], [77.28965465700009, 28.72340050100007], [77.28966364000001, 28.723148412000114], [77.29012178100004, 28.723148412000114], [77.29081348400013, 28.722770277000166], [77.2905978880001, 28.72246304100014], [77.29106501200016, 28.722140049000075], [77.2906068710002, 28.72148618400007], [77.29030144400008, 28.721509818000072], [77.29028347800016, 28.721257724000168], [77.29055297200006, 28.72124196800013], [77.29043619100008, 28.721013508000055], [77.29028347800016, 28.721060775000126], [77.28969059000013, 28.720052393000174], [77.28952889300018, 28.720068149000042], [77.28971753900015, 28.716578125000126], [77.28928634800008, 28.716452072000095], [77.288585662, 28.715979373000152], [77.28864854400007, 28.715167901000143], [77.28824430200018, 28.714978820000056], [77.28832515000016, 28.714443087000063], [77.28838803200017, 28.71405704199998], [77.28859464500016, 28.713560695999945], [77.28830718400008, 28.713292825999986], [77.288927022, 28.712993442000084], [77.28885515600012, 28.71278072000007], [77.28842396500005, 28.712126796000177], [77.28751666700015, 28.71256012000015], [77.28720225600011, 28.712126796000177], [77.28736395300012, 28.712048010000046], [77.28730107100006, 28.71193770900004], [77.28801972300016, 28.71168559300014], [77.28777717800011, 28.710606211000027], [77.28799277399997, 28.710558938000133], [77.28784904300011, 28.709920758000067], [77.28801972300016, 28.709511060000068], [77.28869346000005, 28.709613485000148], [77.28908871800007, 28.70885711600016], [77.28899888699999, 28.708683781000104], [77.28913363400005, 28.70848680800009], [77.2899511010001, 28.70795892100017], [77.28974448800017, 28.70768315800018], [77.2903912750001, 28.707265572000097], [77.29032839300004, 28.706966170000044], [77.2909302650001, 28.706651009000154], [77.29237655200018, 28.70602856300019], [77.29417318300005, 28.705713399000217], [77.2952691270001, 28.70488609000006], [77.29555658800018, 28.705256410000118], [77.29618540900009, 28.705035794000196], [77.29624829100015, 28.705138223000233], [77.29653575200001, 28.705090948000134], [77.29708372400006, 28.70483093500019], [77.2982425510001, 28.707107992000033], [77.29835933200008, 28.707068597000045], [77.29865577600009, 28.7077934630002], [77.2985479780001, 28.707943163000152], [77.29886238900008, 28.708329230000174], [77.29893425400007, 28.70910924000009], [77.2987456080001, 28.709337725999944], [77.2986198430001, 28.70929045300005], [77.29865577600009, 28.709849849000136], [77.3019436100002, 28.710748028000125], [77.30355159400017, 28.711803772000053], [77.3043331290001, 28.712449820000074], [77.30492601700013, 28.71328494800008], [77.30570755100013, 28.71390735100016], [77.30612077600011, 28.714080677000084], [77.30788147400017, 28.71320616200012], [77.30814198600001, 28.713600089000124], [77.30865402500001, 28.713347976000136], [77.30891453700008, 28.713631603000067], [77.30957030700017, 28.713316462000023], [77.30976793600007, 28.713576452999916], [77.3110165940002, 28.712969806000103], [77.31155558400002, 28.71377341600015], [77.31260661200014, 28.713261312000043], [77.31254373000007, 28.71312737700009], [77.31311865200007, 28.712946170000123], [77.31337018000005, 28.71321404100013], [77.31309170300005, 28.713426761000164], [77.31501409700013, 28.715128509000124], [77.31687993923993, 28.713694719832006], [77.31732276800011, 28.71414370500014], [77.31990093300016, 28.71321404100013], [77.32107772600011, 28.71291465600018], [77.32147298400008, 28.71266254200009], [77.32185027700012, 28.71241830500003], [77.32295520500008, 28.713694631000124], [77.32421284600014, 28.712867385000038], [77.32409606500016, 28.712733449000154], [77.32471590200004, 28.712426184000037], [77.32609032500017, 28.713261312000043], [77.32617117300009, 28.71311162000012], [77.32714135400016, 28.71344251900024], [77.32807560200018, 28.713182527000185], [77.33077054800003, 28.712843749000058], [77.32761746100005, 28.71095287500009], [77.32618015600019, 28.709747425000216], [77.3253896390001, 28.708644386000174], [77.32476980100012, 28.707336483], [77.32449132400006, 28.705792190000068], [77.32507522900016, 28.70496488100008], [77.32544353800017, 28.70477578100008], [77.32591066200013, 28.704255754000144], [77.3259555780001, 28.702750813000023], [77.32528184100005, 28.70179740900022], [77.32551540300017, 28.701694977000045], [77.32526387500013, 28.701230090999957], [77.32540760500012, 28.701033105000192], [77.32533574000013, 28.700828238000042], [77.32345826100016, 28.69866136], [77.32370080600003, 28.69799946800009], [77.32521895900015, 28.69577737300017], [77.32498539700003, 28.69557249600018], [77.3259555780001, 28.695099703000096], [77.32722220200009, 28.693783750000193], [77.32856069200017, 28.692058014000224], [77.33018664300016, 28.689985518000128], [77.33014172700018, 28.689851553000153], [77.32976443400014, 28.68971758800018], [77.33202818900008, 28.685075981000068], [77.3321988690002, 28.684256389000154], [77.33213598700013, 28.68297182300006], [77.33264802600013, 28.682309833000204], [77.33245938000016, 28.682112811000025], [77.33314210000015, 28.681647837000128], [77.330617834, 28.678653045000146], [77.33002494599998, 28.678266868000094], [77.32947697300006, 28.67820381900009], [77.32947697300006, 28.67794374000016], [77.32779712400003, 28.677124092000213], [77.32549743700014, 28.676919179000038], [77.32475183500009, 28.67794374000016], [77.32361097500018, 28.67736841100009], [77.32382657000016, 28.6763359630001], [77.32397030100003, 28.6763359630001], [77.32397030100003, 28.6761940990001], [77.32404216600003, 28.675390200000095], [77.32389843600004, 28.674405022000087], [77.32407809900008, 28.67405823700011], [77.32409606500016, 28.673467124000126], [77.3239074190002, 28.673467124000126], [77.32309893500008, 28.670834658000103], [77.32326063200003, 28.670787367000173], [77.32348521100005, 28.67012529900012], [77.32345826100016, 28.669620864000024], [77.323817587, 28.66884056000015], [77.32367385700002, 28.66865927700013], [77.32334148000018, 28.668619867000075], [77.32331453100016, 28.667768619000185], [77.32303605300001, 28.667768619000185], [77.32304503600017, 28.667603097000153], [77.32291927200004, 28.666901599000028], [77.32268571000009, 28.666917363000096], [77.3225419800001, 28.666767605000132], [77.32194010800004, 28.66679913300004], [77.32128433800011, 28.664284733000045], [77.32105077600016, 28.663677800000187], [77.32089806300007, 28.663693564000084], [77.3208441640001, 28.663386155000126], [77.32107772600011, 28.663299450000125], [77.32054772000009, 28.66028048600009], [77.32035009000009, 28.660304134000114], [77.32012551100007, 28.659295165], [77.32002669700006, 28.657907819000172], [77.32012551100007, 28.657742282000072], [77.32010754500004, 28.654731040000115], [77.32063755100017, 28.65402945600016], [77.32039500600007, 28.65150686700008], [77.31836481300007, 28.64730504400012], [77.31787972300009, 28.64624864900003], [77.31787972300009, 28.645460288000095], [77.31751141400008, 28.64545240500007], [77.31736768300016, 28.644120061000137], [77.31666699800019, 28.642645791000177], [77.3167658120002, 28.642606372000046], [77.31612800800019, 28.64143955399993], [77.31617292400017, 28.641242456000157], [77.31798752100013, 28.639878522000117], [77.32053873600006, 28.638230741000086], [77.32194909100014, 28.636716966000165], [77.3223533330002, 28.636874652000074], [77.32599151000005, 28.63323204900024], [77.32823729800003, 28.632593397000164], [77.32900985000003, 28.632230705000154], [77.32977341800017, 28.63167089399991], [77.33084241300003, 28.63182858800019], [77.33087834499997, 28.631733972000177], [77.33088732800013, 28.631718202000116]], [[76.9597932850001, 28.765065626000023], [76.95653240000019, 28.766648415000134], [76.95725105200012, 28.766215316000114], [76.9597932850001, 28.765065626000023]], [[77.24316195627165, 28.755124362850438], [77.2432561305564, 28.75481413491252], [77.24325667300019, 28.75482809900018], [77.24316195627165, 28.755124362850438]], [[77.32203892300015, 28.67782552200015], [77.32208383900013, 28.676280794000036], [77.32204553116196, 28.677853681458373], [77.32203892300015, 28.67782552200015]], [[77.12507431400013, 28.497474821000083], [77.12453532500018, 28.49724587300011], [77.12566720200016, 28.49768797900009], [77.12507431400013, 28.497474821000083]], [[77.12174156400005, 28.496180076000144], [77.12216377200019, 28.495959021000033], [77.12237914034324, 28.49598147716233], [77.12174156400005, 28.496180076000144]]], "type": "Polygon"}, "properties": {"Id": 0}, "type": "Feature"}], "name": "Delhi_Boundary", "type": "FeatureCollection"});
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
geo_json_5162a4c7a31a30a4d1c7f0ccb0f85830.addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
var circle_marker_67ac399140c1f587c0ebf84ed9619b67 = L.circleMarker(
|
| 140 |
-
[28.7019, 77.0984],
|
| 141 |
-
{"bubblingMouseEvents": true, "color": "#22c55e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#22c55e", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14.625, "stroke": true, "weight": 3}
|
| 142 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
var popup_3749787f8f05e1fd54f877eeb32a748f = L.popup({
|
| 146 |
-
"maxWidth": "100%",
|
| 147 |
-
});
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
var html_b00f95036dc8500bd245752c69c35739 = $(`<div id="html_b00f95036dc8500bd245752c69c35739" style="width: 100.0%; height: 100.0%;"><b>🏠 Rohini Residential</b><br>CO₂: 18.5 t/day</div>`)[0];
|
| 152 |
-
popup_3749787f8f05e1fd54f877eeb32a748f.setContent(html_b00f95036dc8500bd245752c69c35739);
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
circle_marker_67ac399140c1f587c0ebf84ed9619b67.bindPopup(popup_3749787f8f05e1fd54f877eeb32a748f)
|
| 157 |
-
;
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
var marker_8d8df1a5ea0e0398d8e2494c8706a17a = L.marker(
|
| 163 |
-
[28.7019, 77.0984],
|
| 164 |
-
{
|
| 165 |
-
}
|
| 166 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
var div_icon_93e0422f03639c14b66b18657648f22f = L.divIcon({
|
| 170 |
-
"html": "\u003cdiv style=\"font-weight: bold; font-size: 11px; color: white; text-shadow: 0 0 4px black;\"\u003e18\u003c/div\u003e",
|
| 171 |
-
"className": "empty",
|
| 172 |
-
});
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
marker_8d8df1a5ea0e0398d8e2494c8706a17a.setIcon(div_icon_93e0422f03639c14b66b18657648f22f);
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
var circle_marker_dc48f0ac985c74b56a8485d759a8fcab = L.circleMarker(
|
| 179 |
-
[28.5656, 77.067],
|
| 180 |
-
{"bubblingMouseEvents": true, "color": "#22c55e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#22c55e", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14.2, "stroke": true, "weight": 3}
|
| 181 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
var popup_2decae809065d1dc370f98f4f95345bd = L.popup({
|
| 185 |
-
"maxWidth": "100%",
|
| 186 |
-
});
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
var html_7826c79bffb85235835a9558294c8eac = $(`<div id="html_7826c79bffb85235835a9558294c8eac" style="width: 100.0%; height: 100.0%;"><b>🏠 Dwarka Sector-8</b><br>CO₂: 16.8 t/day</div>`)[0];
|
| 191 |
-
popup_2decae809065d1dc370f98f4f95345bd.setContent(html_7826c79bffb85235835a9558294c8eac);
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
circle_marker_dc48f0ac985c74b56a8485d759a8fcab.bindPopup(popup_2decae809065d1dc370f98f4f95345bd)
|
| 196 |
-
;
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
var marker_a1949edb7404087901702de73963c4d5 = L.marker(
|
| 202 |
-
[28.5656, 77.067],
|
| 203 |
-
{
|
| 204 |
-
}
|
| 205 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
var div_icon_9cd87971df4769bc25882ed970a44e55 = L.divIcon({
|
| 209 |
-
"html": "\u003cdiv style=\"font-weight: bold; font-size: 11px; color: white; text-shadow: 0 0 4px black;\"\u003e17\u003c/div\u003e",
|
| 210 |
-
"className": "empty",
|
| 211 |
-
});
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
marker_a1949edb7404087901702de73963c4d5.setIcon(div_icon_9cd87971df4769bc25882ed970a44e55);
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
var circle_marker_c9365a0f3b8c258f328d1d370b2367f3 = L.circleMarker(
|
| 218 |
-
[28.716, 77.1829],
|
| 219 |
-
{"bubblingMouseEvents": true, "color": "#22c55e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#22c55e", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.8, "stroke": true, "weight": 3}
|
| 220 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 221 |
-
|
| 222 |
-
|
| 223 |
-
var popup_4ddb8c9aa445e3bda1f6e64aaaaa1af1 = L.popup({
|
| 224 |
-
"maxWidth": "100%",
|
| 225 |
-
});
|
| 226 |
-
|
| 227 |
-
|
| 228 |
-
|
| 229 |
-
var html_40ba99a4dc22365a40eaaf3722b8235e = $(`<div id="html_40ba99a4dc22365a40eaaf3722b8235e" style="width: 100.0%; height: 100.0%;"><b>🏠 Jahangirpuri</b><br>CO₂: 15.2 t/day</div>`)[0];
|
| 230 |
-
popup_4ddb8c9aa445e3bda1f6e64aaaaa1af1.setContent(html_40ba99a4dc22365a40eaaf3722b8235e);
|
| 231 |
-
|
| 232 |
-
|
| 233 |
-
|
| 234 |
-
circle_marker_c9365a0f3b8c258f328d1d370b2367f3.bindPopup(popup_4ddb8c9aa445e3bda1f6e64aaaaa1af1)
|
| 235 |
-
;
|
| 236 |
-
|
| 237 |
-
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
var marker_340d5175e37e098cdd6dab4cc92c1569 = L.marker(
|
| 241 |
-
[28.716, 77.1829],
|
| 242 |
-
{
|
| 243 |
-
}
|
| 244 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 245 |
-
|
| 246 |
-
|
| 247 |
-
var div_icon_efae8b022d3b796d18b78d59bbb368dc = L.divIcon({
|
| 248 |
-
"html": "\u003cdiv style=\"font-weight: bold; font-size: 11px; color: white; text-shadow: 0 0 4px black;\"\u003e15\u003c/div\u003e",
|
| 249 |
-
"className": "empty",
|
| 250 |
-
});
|
| 251 |
-
|
| 252 |
-
|
| 253 |
-
marker_340d5175e37e098cdd6dab4cc92c1569.setIcon(div_icon_efae8b022d3b796d18b78d59bbb368dc);
|
| 254 |
-
|
| 255 |
-
|
| 256 |
-
var circle_marker_ea21b4eaf08b3723eff49551d454358d = L.circleMarker(
|
| 257 |
-
[28.681, 77.305],
|
| 258 |
-
{"bubblingMouseEvents": true, "color": "#22c55e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#22c55e", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 14.35, "stroke": true, "weight": 3}
|
| 259 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 260 |
-
|
| 261 |
-
|
| 262 |
-
var popup_1b221962a41fe1c4e73ce2752ece0408 = L.popup({
|
| 263 |
-
"maxWidth": "100%",
|
| 264 |
-
});
|
| 265 |
-
|
| 266 |
-
|
| 267 |
-
|
| 268 |
-
var html_a24bdd9018d452a03d737738671f968e = $(`<div id="html_a24bdd9018d452a03d737738671f968e" style="width: 100.0%; height: 100.0%;"><b>🏠 Shahdara</b><br>CO₂: 17.4 t/day</div>`)[0];
|
| 269 |
-
popup_1b221962a41fe1c4e73ce2752ece0408.setContent(html_a24bdd9018d452a03d737738671f968e);
|
| 270 |
-
|
| 271 |
-
|
| 272 |
-
|
| 273 |
-
circle_marker_ea21b4eaf08b3723eff49551d454358d.bindPopup(popup_1b221962a41fe1c4e73ce2752ece0408)
|
| 274 |
-
;
|
| 275 |
-
|
| 276 |
-
|
| 277 |
-
|
| 278 |
-
|
| 279 |
-
var marker_0b738ae48e2c642dec43cc86521a5d62 = L.marker(
|
| 280 |
-
[28.681, 77.305],
|
| 281 |
-
{
|
| 282 |
-
}
|
| 283 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 284 |
-
|
| 285 |
-
|
| 286 |
-
var div_icon_5374bcae675320d58044ab8c98b3a5af = L.divIcon({
|
| 287 |
-
"html": "\u003cdiv style=\"font-weight: bold; font-size: 11px; color: white; text-shadow: 0 0 4px black;\"\u003e17\u003c/div\u003e",
|
| 288 |
-
"className": "empty",
|
| 289 |
-
});
|
| 290 |
-
|
| 291 |
-
|
| 292 |
-
marker_0b738ae48e2c642dec43cc86521a5d62.setIcon(div_icon_5374bcae675320d58044ab8c98b3a5af);
|
| 293 |
-
|
| 294 |
-
|
| 295 |
-
var circle_marker_4a0a1b9e6be4ba07f155b67f5cf608c0 = L.circleMarker(
|
| 296 |
-
[28.5697, 77.253],
|
| 297 |
-
{"bubblingMouseEvents": true, "color": "#22c55e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#22c55e", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.7, "stroke": true, "weight": 3}
|
| 298 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 299 |
-
|
| 300 |
-
|
| 301 |
-
var popup_e2c316ad79d4404cab00d3450f1b94e6 = L.popup({
|
| 302 |
-
"maxWidth": "100%",
|
| 303 |
-
});
|
| 304 |
-
|
| 305 |
-
|
| 306 |
-
|
| 307 |
-
var html_eb798bbfe2f2083b311528e1a1214f18 = $(`<div id="html_eb798bbfe2f2083b311528e1a1214f18" style="width: 100.0%; height: 100.0%;"><b>🏠 Lajpat Nagar</b><br>CO₂: 14.8 t/day</div>`)[0];
|
| 308 |
-
popup_e2c316ad79d4404cab00d3450f1b94e6.setContent(html_eb798bbfe2f2083b311528e1a1214f18);
|
| 309 |
-
|
| 310 |
-
|
| 311 |
-
|
| 312 |
-
circle_marker_4a0a1b9e6be4ba07f155b67f5cf608c0.bindPopup(popup_e2c316ad79d4404cab00d3450f1b94e6)
|
| 313 |
-
;
|
| 314 |
-
|
| 315 |
-
|
| 316 |
-
|
| 317 |
-
|
| 318 |
-
var marker_b4016f67d8c5d0a5be601d4774642ac7 = L.marker(
|
| 319 |
-
[28.5697, 77.253],
|
| 320 |
-
{
|
| 321 |
-
}
|
| 322 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 323 |
-
|
| 324 |
-
|
| 325 |
-
var div_icon_34d639149cea551cbbfae943a8c1a069 = L.divIcon({
|
| 326 |
-
"html": "\u003cdiv style=\"font-weight: bold; font-size: 11px; color: white; text-shadow: 0 0 4px black;\"\u003e15\u003c/div\u003e",
|
| 327 |
-
"className": "empty",
|
| 328 |
-
});
|
| 329 |
-
|
| 330 |
-
|
| 331 |
-
marker_b4016f67d8c5d0a5be601d4774642ac7.setIcon(div_icon_34d639149cea551cbbfae943a8c1a069);
|
| 332 |
-
|
| 333 |
-
|
| 334 |
-
var circle_marker_78759e0a34d6539ab7c70b844e2d01ff = L.circleMarker(
|
| 335 |
-
[28.673, 77.1374],
|
| 336 |
-
{"bubblingMouseEvents": true, "color": "#22c55e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#22c55e", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.9, "stroke": true, "weight": 3}
|
| 337 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 338 |
-
|
| 339 |
-
|
| 340 |
-
var popup_d611b8dc9259a289daef621b00c53d8c = L.popup({
|
| 341 |
-
"maxWidth": "100%",
|
| 342 |
-
});
|
| 343 |
-
|
| 344 |
-
|
| 345 |
-
|
| 346 |
-
var html_c1c67b24073697868f00991d58f9a402 = $(`<div id="html_c1c67b24073697868f00991d58f9a402" style="width: 100.0%; height: 100.0%;"><b>🏠 Punjabi Bagh</b><br>CO₂: 15.6 t/day</div>`)[0];
|
| 347 |
-
popup_d611b8dc9259a289daef621b00c53d8c.setContent(html_c1c67b24073697868f00991d58f9a402);
|
| 348 |
-
|
| 349 |
-
|
| 350 |
-
|
| 351 |
-
circle_marker_78759e0a34d6539ab7c70b844e2d01ff.bindPopup(popup_d611b8dc9259a289daef621b00c53d8c)
|
| 352 |
-
;
|
| 353 |
-
|
| 354 |
-
|
| 355 |
-
|
| 356 |
-
|
| 357 |
-
var marker_8d5870c5e1ba9a27baa79a8ebf3734de = L.marker(
|
| 358 |
-
[28.673, 77.1374],
|
| 359 |
-
{
|
| 360 |
-
}
|
| 361 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 362 |
-
|
| 363 |
-
|
| 364 |
-
var div_icon_c2c011ef176eb3512ca32ce99841e325 = L.divIcon({
|
| 365 |
-
"html": "\u003cdiv style=\"font-weight: bold; font-size: 11px; color: white; text-shadow: 0 0 4px black;\"\u003e16\u003c/div\u003e",
|
| 366 |
-
"className": "empty",
|
| 367 |
-
});
|
| 368 |
-
|
| 369 |
-
|
| 370 |
-
marker_8d5870c5e1ba9a27baa79a8ebf3734de.setIcon(div_icon_c2c011ef176eb3512ca32ce99841e325);
|
| 371 |
-
|
| 372 |
-
|
| 373 |
-
var circle_marker_7ac31cf15e9efb0e49fb1cabee298c3b = L.circleMarker(
|
| 374 |
-
[28.5505, 77.1849],
|
| 375 |
-
{"bubblingMouseEvents": true, "color": "#22c55e", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#22c55e", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 13.55, "stroke": true, "weight": 3}
|
| 376 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 377 |
-
|
| 378 |
-
|
| 379 |
-
var popup_c768030174bb0ac14e1a394de334e653 = L.popup({
|
| 380 |
-
"maxWidth": "100%",
|
| 381 |
-
});
|
| 382 |
-
|
| 383 |
-
|
| 384 |
-
|
| 385 |
-
var html_61717a3c34baa55148a3cd08dd86f4fc = $(`<div id="html_61717a3c34baa55148a3cd08dd86f4fc" style="width: 100.0%; height: 100.0%;"><b>🏠 RK Puram</b><br>CO₂: 14.2 t/day</div>`)[0];
|
| 386 |
-
popup_c768030174bb0ac14e1a394de334e653.setContent(html_61717a3c34baa55148a3cd08dd86f4fc);
|
| 387 |
-
|
| 388 |
-
|
| 389 |
-
|
| 390 |
-
circle_marker_7ac31cf15e9efb0e49fb1cabee298c3b.bindPopup(popup_c768030174bb0ac14e1a394de334e653)
|
| 391 |
-
;
|
| 392 |
-
|
| 393 |
-
|
| 394 |
-
|
| 395 |
-
|
| 396 |
-
var marker_38121a0596e3600b9fd866bc56e85183 = L.marker(
|
| 397 |
-
[28.5505, 77.1849],
|
| 398 |
-
{
|
| 399 |
-
}
|
| 400 |
-
).addTo(map_b08c72729d1cab533b26701a1d925eeb);
|
| 401 |
-
|
| 402 |
-
|
| 403 |
-
var div_icon_19726d662c84c31fc8ced9df8dca1823 = L.divIcon({
|
| 404 |
-
"html": "\u003cdiv style=\"font-weight: bold; font-size: 11px; color: white; text-shadow: 0 0 4px black;\"\u003e14\u003c/div\u003e",
|
| 405 |
-
"className": "empty",
|
| 406 |
-
});
|
| 407 |
-
|
| 408 |
-
|
| 409 |
-
marker_38121a0596e3600b9fd866bc56e85183.setIcon(div_icon_19726d662c84c31fc8ced9df8dca1823);
|
| 410 |
-
|
| 411 |
-
</script>
|
| 412 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
temp_emission_map_0b46fcd8-df74-484d-a373-d4703f760bb5.html
DELETED
|
@@ -1,178 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html>
|
| 3 |
-
<head>
|
| 4 |
-
|
| 5 |
-
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
| 6 |
-
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
|
| 7 |
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
| 8 |
-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
|
| 9 |
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
|
| 10 |
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css"/>
|
| 11 |
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
|
| 12 |
-
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
|
| 13 |
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css"/>
|
| 14 |
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
|
| 15 |
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
|
| 16 |
-
|
| 17 |
-
<meta name="viewport" content="width=device-width,
|
| 18 |
-
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
| 19 |
-
<style>
|
| 20 |
-
#map_82205411f9094d9e79624e220c9d7c72 {
|
| 21 |
-
position: relative;
|
| 22 |
-
width: 100.0%;
|
| 23 |
-
height: 100.0%;
|
| 24 |
-
left: 0.0%;
|
| 25 |
-
top: 0.0%;
|
| 26 |
-
}
|
| 27 |
-
.leaflet-container { font-size: 1rem; }
|
| 28 |
-
</style>
|
| 29 |
-
|
| 30 |
-
<style>html, body {
|
| 31 |
-
width: 100%;
|
| 32 |
-
height: 100%;
|
| 33 |
-
margin: 0;
|
| 34 |
-
padding: 0;
|
| 35 |
-
}
|
| 36 |
-
</style>
|
| 37 |
-
|
| 38 |
-
<style>#map {
|
| 39 |
-
position:absolute;
|
| 40 |
-
top:0;
|
| 41 |
-
bottom:0;
|
| 42 |
-
right:0;
|
| 43 |
-
left:0;
|
| 44 |
-
}
|
| 45 |
-
</style>
|
| 46 |
-
|
| 47 |
-
<script>
|
| 48 |
-
L_NO_TOUCH = false;
|
| 49 |
-
L_DISABLE_3D = false;
|
| 50 |
-
</script>
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
</head>
|
| 54 |
-
<body>
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
<div style="position: fixed; bottom: 50px; left: 50px; z-index: 1000; background: white; padding: 10px; border-radius: 5px; font-size: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.3);">
|
| 58 |
-
<b>✈️ Aviation Emissions</b><br>
|
| 59 |
-
<span style="color: #f97316;">●</span> 1 locations<br>
|
| 60 |
-
Baseline Data
|
| 61 |
-
</div>
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
<div class="folium-map" id="map_82205411f9094d9e79624e220c9d7c72" ></div>
|
| 65 |
-
|
| 66 |
-
</body>
|
| 67 |
-
<script>
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
var map_82205411f9094d9e79624e220c9d7c72 = L.map(
|
| 71 |
-
"map_82205411f9094d9e79624e220c9d7c72",
|
| 72 |
-
{
|
| 73 |
-
center: [28.7041, 77.1025],
|
| 74 |
-
crs: L.CRS.EPSG3857,
|
| 75 |
-
...{
|
| 76 |
-
"zoom": 11,
|
| 77 |
-
"zoomControl": true,
|
| 78 |
-
"preferCanvas": false,
|
| 79 |
-
}
|
| 80 |
-
|
| 81 |
-
}
|
| 82 |
-
);
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
var tile_layer_6862acb585317bc187ad389a2413e942 = L.tileLayer(
|
| 89 |
-
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
|
| 90 |
-
{
|
| 91 |
-
"minZoom": 0,
|
| 92 |
-
"maxZoom": 19,
|
| 93 |
-
"maxNativeZoom": 19,
|
| 94 |
-
"noWrap": false,
|
| 95 |
-
"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors",
|
| 96 |
-
"subdomains": "abc",
|
| 97 |
-
"detectRetina": false,
|
| 98 |
-
"tms": false,
|
| 99 |
-
"opacity": 1,
|
| 100 |
-
}
|
| 101 |
-
|
| 102 |
-
);
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
tile_layer_6862acb585317bc187ad389a2413e942.addTo(map_82205411f9094d9e79624e220c9d7c72);
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
function geo_json_031a33938568c441f4fcc9e751b8eeb0_styler(feature) {
|
| 109 |
-
switch(feature.properties.Id) {
|
| 110 |
-
default:
|
| 111 |
-
return {"color": "black", "dashArray": "5, 5", "fillColor": "none", "opacity": 0.6, "weight": 3};
|
| 112 |
-
}
|
| 113 |
-
}
|
| 114 |
-
|
| 115 |
-
function geo_json_031a33938568c441f4fcc9e751b8eeb0_onEachFeature(feature, layer) {
|
| 116 |
-
|
| 117 |
-
layer.on({
|
| 118 |
-
});
|
| 119 |
-
};
|
| 120 |
-
var geo_json_031a33938568c441f4fcc9e751b8eeb0 = L.geoJson(null, {
|
| 121 |
-
onEachFeature: geo_json_031a33938568c441f4fcc9e751b8eeb0_onEachFeature,
|
| 122 |
-
|
| 123 |
-
style: geo_json_031a33938568c441f4fcc9e751b8eeb0_styler,
|
| 124 |
-
...{
|
| 125 |
-
}
|
| 126 |
-
});
|
| 127 |
-
|
| 128 |
-
function geo_json_031a33938568c441f4fcc9e751b8eeb0_add (data) {
|
| 129 |
-
geo_json_031a33938568c441f4fcc9e751b8eeb0
|
| 130 |
-
.addData(data);
|
| 131 |
-
}
|
| 132 |
-
geo_json_031a33938568c441f4fcc9e751b8eeb0_add({"crs": {"properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"}, "type": "name"}, "features": [{"geometry": {"coordinates": [[[77.33088732800013, 28.631718202000116], [77.3322527680001, 28.629952021000065], [77.33377092100005, 28.628950645000202], [77.33411228000017, 28.62829619799993], [77.33465127000017, 28.627460392000046], [77.3382265640002, 28.62528411100004], [77.33817266500012, 28.625213145000032], [77.33921471100018, 28.624590215000183], [77.33938539100006, 28.624203839000188], [77.33996031300006, 28.623896315000138], [77.34043642000012, 28.62368341200022], [77.34023879100016, 28.6218540120002], [77.34056218400019, 28.621822471000144], [77.34076879700012, 28.621538595000118], [77.34112812300003, 28.6214439700002], [77.34180185899999, 28.620127092000132], [77.34196355600017, 28.61942527600013], [77.34161321300019, 28.614141794000147], [77.34141558400012, 28.61358977300023], [77.34184677500019, 28.613447824000104], [77.34200847200015, 28.610474743000054], [77.3418288090001, 28.608873818000177], [77.34196355600017, 28.608384860000058], [77.34162219600017, 28.60692586200014], [77.3411999880002, 28.60523024300005], [77.34077778000011, 28.60525390300006], [77.34013099300012, 28.60448100700006], [77.33955607100017, 28.604086670000243], [77.33867572200006, 28.602950973000134], [77.33843317700018, 28.60319546400018], [77.33737316500003, 28.60209130400017], [77.33667247900013, 28.60173639300018], [77.33565738300018, 28.601633863000245], [77.33477703400007, 28.601917792000165], [77.3336900720002, 28.601476124000044], [77.33204615500017, 28.601168533000077], [77.32929731000019, 28.600277302000165], [77.32807560200018, 28.60003280300009], [77.32756356200008, 28.599685773000147], [77.32738389900004, 28.59987506200008], [77.32618015600019, 28.599054804000104], [77.32616219000016, 28.59888128700004], [77.3266832130002, 28.598652560000176], [77.32640473500004, 28.59837650900016], [77.3250123470001, 28.597942714000055], [77.32386250300004, 28.597840180000105], [77.32265876000014, 28.597501029000057], [77.32115857400004, 28.597729759000117], [77.32040398900006, 28.59769032300005], [77.31720598700008, 28.59689371000013], [77.3149691820002, 28.596948921000205], [77.31385527100014, 28.596664978000035], [77.31323543300005, 28.596317936000105], [77.3131366180001, 28.59581314600007], [77.31275034300006, 28.595481875000132], [77.31284915800012, 28.595371452000165], [77.31228321900011, 28.59462214600012], [77.3124, 28.594401297000047], [77.31221135400011, 28.594298760000186], [77.31205864000009, 28.593817622000188], [77.31124117300004, 28.59280801500006], [77.31114235900003, 28.591932488000168], [77.31026201000014, 28.590765108000028], [77.30751316500016, 28.588106903000096], [77.30417143200015, 28.585322421000114], [77.3016741150002, 28.583153155000048], [77.30157530100018, 28.58329514500025], [77.30082071600003, 28.58278240400017], [77.30132377200005, 28.581551814000136], [77.29967985600013, 28.580833964000078], [77.29946426000004, 28.580652528000144], [77.29923069800009, 28.57995833699999], [77.29923968100019, 28.57920103300006], [77.29978765300007, 28.578372725000065], [77.29983256900005, 28.57711841799994], [77.30007511400015, 28.57614020600022], [77.2999673160001, 28.575067317000162], [77.29903306900013, 28.57223515499993], [77.29905103500005, 28.571375235000232], [77.29995833300018, 28.569150456000045], [77.30639027100011, 28.561828867000088], [77.30975895300014, 28.55748932200015], [77.31672089600005, 28.550932326000122], [77.31758327900008, 28.549677691000113], [77.31829294800008, 28.54865977000003], [77.31908346600011, 28.54701844800013], [77.3198111010002, 28.544232879000106], [77.31975720200006, 28.543759403000024], [77.32016144400012, 28.54269407600009], [77.32082619700014, 28.54207065800017], [77.32354809300011, 28.541147359999968], [77.32464403700004, 28.540531824000027], [77.32604540900013, 28.53964797000009], [77.32701559000003, 28.53881935100003], [77.33051901900012, 28.53545745800011], [77.3312736040001, 28.533800147000193], [77.33150716600005, 28.533626522000134], [77.33308820100007, 28.53248217200013], [77.33415719600015, 28.52952258600004], [77.33438177500017, 28.527525804999925], [77.33610654000012, 28.524510832000146], [77.33635806900008, 28.524502939000115], [77.33730130000004, 28.52325588300016], [77.338343345, 28.522837563000166], [77.34164016200003, 28.521953561000032], [77.34664377900003, 28.52101430100015], [77.34747022900007, 28.520493364000117], [77.34723666700006, 28.518125433000023], [77.34706598700018, 28.517880744000138], [77.34666174500012, 28.51777813200016], [77.34611377300007, 28.51728085800005], [77.34661682900014, 28.516909874000078], [77.34659886300005, 28.516799368000193], [77.34600597500003, 28.515757449000034], [77.34563766500014, 28.51450239500008], [77.34544901900017, 28.513239434000127], [77.34512562600014, 28.51322364700019], [77.34457765300016, 28.512931584000057], [77.34405663100006, 28.512118543000042], [77.34240373000017, 28.510610846000077], [77.34226898300011, 28.51009775100016], [77.34186474100005, 28.50988461800023], [77.34093947700006, 28.508716328000162], [77.3399064140001, 28.507879572000036], [77.33929556000004, 28.506940187000225], [77.33740909700015, 28.505337686000246], [77.33675332700011, 28.504564057000096], [77.33621433800016, 28.504240394000192], [77.33602569200019, 28.503624642000034], [77.33547772000014, 28.502827317000083], [77.335226191, 28.502416811000046], [77.33531602300019, 28.502187874000185], [77.33412126399998, 28.500814242000047], [77.33430092700002, 28.50067214100011], [77.33413024700013, 28.500301099000126], [77.3329624370001, 28.49912480800009], [77.33118377300002, 28.496740608000152], [77.32937815900004, 28.494964265000192], [77.32923442800012, 28.494285299000126], [77.32844391100019, 28.492666816000053], [77.32777017400014, 28.49184572300004], [77.32691677500014, 28.491206213000112], [77.3268179600002, 28.48980875300009], [77.32547947000012, 28.489721904000135], [77.32521895900015, 28.489287661000162], [77.32308995200015, 28.488600762999965], [77.32215570400012, 28.48813493299997], [77.32012551100007, 28.488000711000097], [77.31931702800006, 28.487819116000082], [77.3192990610001, 28.487479610000037], [77.31872414000003, 28.487479610000037], [77.31761921200012, 28.486634789999925], [77.31631665500004, 28.486421610000093], [77.31647835100011, 28.484589823000135], [77.31550817100015, 28.484360848000108], [77.31389120300008, 28.483571273000052], [77.31067523500013, 28.486563730000114], [77.30977691900006, 28.4873138050001], [77.30914809900008, 28.487645415000145], [77.30833063200004, 28.488071770000204], [77.30751316500016, 28.487850697000113], [77.30753113100019, 28.488458646000026], [77.30656993400015, 28.488924474000044], [77.30658790000007, 28.489263975000142], [77.30434211200003, 28.489335033000145], [77.30299463900019, 28.489587684000185], [77.30040749099999, 28.489611370000034], [77.3005063060001, 28.494127399000035], [77.29975172100012, 28.494151084000123], [77.29879950700018, 28.49410371400012], [77.2987456080001, 28.494293194000136], [77.29830543300017, 28.494348459000037], [77.29789220800018, 28.494664257000238], [77.29766762900016, 28.494411618000186], [77.29561947000008, 28.49439582800011], [77.29527811100013, 28.495011634000093], [77.29440674500017, 28.49526427100011], [77.29401148600004, 28.4945221480001], [77.29384080600016, 28.49454583300019], [77.29402945200013, 28.495587962000172], [77.29373300800012, 28.49564322600014], [77.29378690700003, 28.49600639000016], [77.28984330300005, 28.496448500000156], [77.28777717800011, 28.49597481], [77.28737293600005, 28.496030074000146], [77.28579190100004, 28.495816913], [77.28536969300012, 28.495556382000245], [77.285172064, 28.494893210000043], [77.284902569, 28.494672152000078], [77.28434561400019, 28.494695837000165], [77.2829532250002, 28.494308984000043], [77.28274661200004, 28.494435303000103], [77.2820998250001, 28.494285299000126], [77.28116557800018, 28.49370896400012], [77.28004268300009, 28.49396160400005], [77.27891978900004, 28.493669488999956], [77.277886727, 28.493622119000122], [77.27740163600015, 28.493298422000066], [77.27708722600005, 28.493290527000056], [77.27598229800009, 28.492785243000185], [77.27588348400013, 28.49285629900021], [77.27396108900012, 28.491735191000146], [77.27360176300004, 28.49134832700014], [77.27270344800007, 28.49100883300008], [77.27197581200011, 28.48691113400008], [77.26651405500019, 28.48582944100019], [77.26385504200016, 28.485624155000096], [77.26213027699998, 28.485292538000067], [77.25662360400008, 28.483863416000133], [77.25362323100012, 28.482639567000035], [77.25286864600008, 28.4822052950002], [77.25174575200009, 28.481865771000173], [77.24895199100013, 28.480523459000096], [77.24741587200015, 28.480231306000178], [77.24583483700013, 28.47872315400008], [77.24498143800014, 28.478067773000134], [77.24298717800019, 28.47753872700008], [77.24269073400018, 28.477325528000108], [77.24153190700008, 28.476291115000038], [77.24008562000006, 28.475398827000106], [77.23892679300019, 28.47444336000018], [77.23764220200007, 28.47292722900005], [77.23658219000009, 28.472074396000096], [77.23469572800013, 28.471174175000158], [77.23406690700011, 28.4702976370001], [77.2330697770002, 28.466570296000157], [77.2331955410001, 28.464667090999967], [77.23314164200019, 28.463774704000116], [77.23292604700003, 28.46362465600015], [77.23355486700018, 28.461855654000146], [77.23336622100004, 28.461184372000048], [77.23370758100003, 28.46044990700011], [77.23314164200019, 28.45987338800012], [77.23304282800018, 28.45787528900007], [77.2332674070002, 28.457156596], [77.23397707600003, 28.456793299000083], [77.23427352000004, 28.456414205000158], [77.23456098100013, 28.454542408000066], [77.2363126950001, 28.454242286000124], [77.23738169100011, 28.454226490000053], [77.23775000000012, 28.45369732400013], [77.23945679899998, 28.453744712000173], [77.23974426000007, 28.453989550000188], [77.24022036700012, 28.453918468000154], [77.2409749520001, 28.453326117000074], [77.24153190700008, 28.452180895000197], [77.24234937400013, 28.451201524000055], [77.24283446400017, 28.45099617000011], [77.24527788200015, 28.45046698900012], [77.24545754500019, 28.450174753000113], [77.24641874200006, 28.44994570300014], [77.24790994600016, 28.447426118000124], [77.24923046900011, 28.4461386590001], [77.24949996400011, 28.44621764400017], [77.25021861600004, 28.445475176000173], [77.25029946400014, 28.445214521000025], [77.25041624500017, 28.443658477000042], [77.2501916670002, 28.44239466800002], [77.25023658200013, 28.441375711000035], [77.250380313, 28.441375711000035], [77.250380313, 28.44104395500011], [77.2510091330002, 28.440917572000046], [77.25091031900018, 28.440396239000165], [77.2510091330002, 28.440017086000125], [77.25040726200018, 28.439061299000173], [77.25012878400008, 28.436557254000036], [77.24989522200013, 28.436557254000036], [77.24980539100005, 28.434519218000162], [77.24997607100016, 28.430996008000136], [77.25336271900005, 28.431106604000092], [77.25294949400006, 28.429700448000062], [77.25236559000007, 28.4284364720001], [77.24958081200003, 28.424083540000026], [77.24471194300014, 28.421958359000143], [77.23846865200005, 28.420054351000147], [77.23488437400016, 28.417462948000036], [77.23395012600008, 28.41586699200019], [77.23285418200004, 28.415835388000062], [77.23089585400015, 28.4147134640001], [77.22758107100009, 28.41363103200007], [77.22693428400015, 28.41361523], [77.22600003600007, 28.41277772000018], [77.22491307400003, 28.412477480000234], [77.22189473500015, 28.412485381000067], [77.21769960300014, 28.411766379000085], [77.21787028300008, 28.41035206600003], [77.21589398900016, 28.41051799200011], [77.21222886300012, 28.40918267500018], [77.21035138400009, 28.408961437000187], [77.2079079660001, 28.409356504000073], [77.20515912100012, 28.40917477399995], [77.20232044500005, 28.407863144000146], [77.201062804, 28.40844784900014], [77.19888888100019, 28.408534764000137], [77.19473866400006, 28.40866118600013], [77.19465781600013, 28.408392538999976], [77.19173829100009, 28.407973764000076], [77.19127116700014, 28.407634002], [77.19129811600016, 28.406891264000024], [77.19024708800004, 28.406654218000142], [77.18845045700016, 28.407333747000166], [77.185899242, 28.40776042600021], [77.18596212400007, 28.407855243000142], [77.18579144400019, 28.40791845400014], [77.18559381400013, 28.408597975000134], [77.18527940400008, 28.40903255000012], [77.18249462700015, 28.409356504000073], [77.18090460900004, 28.408534764000137], [77.1796829000001, 28.408163398000113], [77.17778745500004, 28.40725473200007], [77.17564946400017, 28.40549268800015], [77.17453555300011, 28.404378556000154], [77.17419419300012, 28.4042521290001], [77.17377198500014, 28.40497908300017], [77.17159806200016, 28.406188027999917], [77.17133755100019, 28.408558468000138], [77.17091534300005, 28.409585642000025], [77.17024160600016, 28.410107127000117], [77.16864260500012, 28.412185139000087], [77.1653727370001, 28.414152497000146], [77.16500442800009, 28.414831977000063], [77.16508527700012, 28.416743981000195], [77.16575901300013, 28.420236063000118], [77.16575901300013, 28.42225067300018], [77.16603749100005, 28.42565567200006], [77.16477086600014, 28.42646938000007], [77.16467205100003, 28.426809081000044], [77.1635401740001, 28.42836537300019], [77.16301915100007, 28.42877616700008], [77.16245321300016, 28.42878406700021], [77.15980318300007, 28.430237633000218], [77.15652433200012, 28.43137519300018], [77.15574279800012, 28.4320150650002], [77.15496126300019, 28.43196766700015], [77.15464685300014, 28.43241794500011], [77.15342514400004, 28.433073610000122], [77.15294005400006, 28.433610777999945], [77.15239208200018, 28.433800366000185], [77.15187105900014, 28.434171642000024], [77.15179021000012, 28.43474040200016], [77.15099071000003, 28.43540395100007], [77.1503529060002, 28.435704127000065], [77.14928391100011, 28.436557254000036], [77.1476669430001, 28.43730768400013], [77.14482826700004, 28.43750516500006], [77.14419046300003, 28.437299785000107], [77.14231298400006, 28.437039110000114], [77.14168416300015, 28.436675742999967], [77.14141466900003, 28.436683643000094], [77.13981566799998, 28.43713390100004], [77.14002228000004, 28.4374735680002], [77.1387376890001, 28.437813234000032], [77.1387376890001, 28.437900125000056], [77.13778547500016, 28.437963318000186], [77.13625833900011, 28.43846096600015], [77.1348390010001, 28.43862684800024], [77.13281779099998, 28.43947995100018], [77.13156913300008, 28.44041993600007], [77.13173083000004, 28.440688502000114], [77.13161404900006, 28.440917572000046], [77.12873045700019, 28.442821205000087], [77.12660145000018, 28.443295134000095], [77.12323276700005, 28.443437311999958], [77.12239733400014, 28.44367427500015], [77.12187631100011, 28.458507103000102], [77.11718710600019, 28.462526931000184], [77.11665710000017, 28.463577273000055], [77.11466284000005, 28.466428149000023], [77.11417774900013, 28.466720340000165], [77.11253383200011, 28.468647200000248], [77.11072821900018, 28.47115838200017], [77.11089889900006, 28.47132421200024], [77.11133907300007, 28.47137159300013], [77.11300993900011, 28.471292626000093], [77.11415080000012, 28.478091461000133], [77.11496826700017, 28.47941011600011], [77.11521979500003, 28.48122620099997], [77.11498623300002, 28.48137622400003], [77.11532759300007, 28.48230794100016], [77.11537250900005, 28.48284485900018], [77.11762728000019, 28.48582154500008], [77.11794169000007, 28.4869348200001], [77.11878610700006, 28.488577077000173], [77.11956764100006, 28.49182993300019], [77.11959459100012, 28.492485229000238], [77.12013358000007, 28.493969499000116], [77.12057375400008, 28.494751101000134], [77.1207264680001, 28.495769544000098], [77.12054680500006, 28.495951126000023], [77.117366769, 28.496330077999914], [77.11613607700014, 28.4969221880001], [77.11486046900012, 28.497309031000214], [77.11371062500018, 28.497940609000068], [77.11150077000008, 28.498714287000098], [77.10530239400003, 28.501406327000097], [77.102984741, 28.50281942300012], [77.10051437400017, 28.503640431000235], [77.0977116300001, 28.504816671000185], [77.09604974700017, 28.506742836000114], [77.09599584800003, 28.507090173000165], [77.09634619100018, 28.507934829000078], [77.09865486100006, 28.511439687000177], [77.09512448200007, 28.51330258200005], [77.09518736400014, 28.51341309200012], [77.09326497000006, 28.514139295000064], [77.08764151600019, 28.515591688000086], [77.08336553500015, 28.51685462100005], [77.08026634700002, 28.518062287000134], [77.07720309200016, 28.518520092000074], [77.07497527000004, 28.518701634000195], [77.07363678100006, 28.51936465700004], [77.072289308, 28.520264466000185], [77.07219049300011, 28.520051354000145], [77.07199286399998, 28.520098711999935], [77.07179523399998, 28.51860691600018], [77.07116641400017, 28.517296644000112], [77.06771688300017, 28.51311313700006], [77.06746535500014, 28.512718458000222], [77.06741145600017, 28.512165904000142], [77.06424938600003, 28.512663202000056], [77.06291089600012, 28.51254479800002], [77.06123104700015, 28.512189585000044], [77.05954221400015, 28.51234745800025], [77.05750303800016, 28.512892117000092], [77.05514046900015, 28.5140998280001], [77.05490690700003, 28.514076148000072], [77.05442181700005, 28.514336633000084], [77.05010990300013, 28.515654835000078], [77.04956193100008, 28.515931103000185], [77.0461034170001, 28.516625716000192], [77.04756767100008, 28.51985402799994], [77.0483761550002, 28.520730154000148], [77.04427983700003, 28.5229954200002], [77.04339948800009, 28.523832056000117], [77.04335457200011, 28.524850218000154], [77.04208794800013, 28.525434275000066], [77.04201608300014, 28.525726303000113], [77.04172862200005, 28.52586047699998], [77.04147709300014, 28.525576343000125], [77.0408662390002, 28.525813122000102], [77.04103691900013, 28.5262630000002], [77.03245800800005, 28.531030012000087], [77.03056256300016, 28.531558790000133], [77.02489419300008, 28.532711043000177], [77.02418452400008, 28.532979374000092], [77.02098652200016, 28.535528485000043], [77.01807598000005, 28.537296253000136], [77.01761783900008, 28.53744619600019], [77.01690817000008, 28.53896140000012], [77.01442882000009, 28.539868934000083], [77.01386288200013, 28.540184596000074], [77.01352152200013, 28.54057128100021], [77.01223693100019, 28.540034657000035], [77.0100989410002, 28.540271403000077], [77.00966774900007, 28.539774235000152], [77.00831129300008, 28.540673871000138], [77.00771840500005, 28.54087905000017], [77.00745789400008, 28.54083959200011], [77.0070446690001, 28.54038188500016], [77.00602957200005, 28.53972688600004], [77.00487074600005, 28.539190258000076], [77.00192427100006, 28.534021123], [77.00147511400013, 28.53360284600012], [77.00134935000005, 28.533255596000174], [77.00119663600003, 28.531424623000134], [77.0029483510001, 28.53039863200007], [77.00435870600018, 28.529159538000044], [77.00708958400014, 28.527754687000026], [77.00830231000015, 28.526965437000115], [77.00952401900008, 28.526618165000173], [77.01065589600017, 28.525536880000118], [77.01447373600007, 28.524274050000088], [77.0164320630002, 28.522411349000095], [77.01694410300007, 28.52155102200004], [77.01693512000014, 28.52092747900025], [77.01177879, 28.51634155599993], [77.01049419900005, 28.51504704300004], [77.01048521600012, 28.514644478000037], [77.00999114300015, 28.514652371000068], [77.0061283870001, 28.515796915000067], [77.00270580600017, 28.517296644000112], [77.00014560699998, 28.51780970499999], [76.9968038740002, 28.519593556000075], [76.99638166600005, 28.51900946700016], [76.99546538499999, 28.516988807000132], [76.99484554700007, 28.51728085800005], [76.99452215400004, 28.51759658800006], [76.99312078200006, 28.515733768000132], [76.99295908500011, 28.515757449000034], [76.99230331500002, 28.514707625000028], [76.99100075800015, 28.513468347000185], [76.98588934400004, 28.515710088000105], [76.98335609500015, 28.5169809140001], [76.98110132300008, 28.519159436000052], [76.97846027600013, 28.521132696000052], [76.97631330300004, 28.518748993000088], [76.97565753300012, 28.518567451000195], [76.97421124500005, 28.517691306000074], [76.97351954200008, 28.516965127000105], [76.97144443400015, 28.515844276], [76.97038442200005, 28.51510229700017], [76.96999814600002, 28.515149657000165], [76.96870457200015, 28.51427348500016], [76.96517419300017, 28.512892117000092], [76.96117669000006, 28.510247733000142], [76.95498729800005, 28.505653452000047], [76.9531996500001, 28.504800883000144], [76.95224743600005, 28.504658787000096], [76.94321936800003, 28.504429855000183], [76.94047950600014, 28.505748181000172], [76.93715573900005, 28.507895360000077], [76.93418231600015, 28.51005038800008], [76.93210720800005, 28.51009775100016], [76.9276246140002, 28.51057927100004], [76.92679816400005, 28.509695167000075], [76.92382474100015, 28.50785589000003], [76.92285456000008, 28.50743750900017], [76.92075250200003, 28.50689282200011], [76.91929723200008, 28.508692646000156], [76.91649448800018, 28.510602952000113], [76.9149224360001, 28.51132917500007], [76.9121107090001, 28.512315883000213], [76.91016136500008, 28.512126436000074], [76.90787066100012, 28.513381518000187], [76.90632555900015, 28.512442181000154], [76.90371146100006, 28.509805680000056], [76.90274128100009, 28.50903208300008], [76.90147465600018, 28.50945835199991], [76.89994752000013, 28.509679379000204], [76.89830360300004, 28.508889993999958], [76.89403660600004, 28.503135196000073], [76.89276998100013, 28.50114581000014], [76.89236573900013, 28.500893187000088], [76.89206929500011, 28.5007826640001], [76.89121589600006, 28.500798453000073], [76.88826043900008, 28.501130021000165], [76.88548464399997, 28.501232649000144], [76.88597871799999, 28.502464177000036], [76.88428090200006, 28.503040464000037], [76.88192731599997, 28.504579845000137], [76.88163985500012, 28.504500903000178], [76.88057984300013, 28.505558722000046], [76.88057086000003, 28.505835017000095], [76.88156799000012, 28.509553078000124], [76.88332868800012, 28.51241850000008], [76.8841910700001, 28.514084041000103], [76.88530498100016, 28.51700459400007], [76.88691296600007, 28.519530412000165], [76.88718246000013, 28.52024078700009], [76.88643685900018, 28.520667010000068], [76.88503548700004, 28.521037980000244], [76.88228664200005, 28.522221920000106], [76.87995102200006, 28.523508452000158], [76.87721116100016, 28.524771290999922], [76.87490249000018, 28.52771522500018], [76.87421078800014, 28.528993798000158], [76.8739053600001, 28.529112184000212], [76.87362688300004, 28.529443663000166], [76.8734023040002, 28.52998034100017], [76.87361789900018, 28.530580154000177], [76.87257585400005, 28.530856383000184], [76.8724770390001, 28.5309195210001], [76.87322264100015, 28.532545308000238], [76.87271060100011, 28.53278207200009], [76.87283636500018, 28.533105647000127], [76.87216262900006, 28.53337397700011], [76.87187516800014, 28.53320824399998], [76.8704468460001, 28.533910635000097], [76.8692970030001, 28.53415528700009], [76.86867716500012, 28.534778753000182], [76.86891072700007, 28.535220700999957], [76.86745545700012, 28.536041456000135], [76.86619781500013, 28.54121049200006], [76.86547916300003, 28.542331073000128], [76.86551509600008, 28.542717750000065], [76.86455389800011, 28.543562121000036], [76.86138284500004, 28.545361320000154], [76.86034080000007, 28.5457558760001], [76.85877773100015, 28.54610308500014], [76.85595702100017, 28.547081577000085], [76.85404360900009, 28.547468236000213], [76.85025271900014, 28.5486360970001], [76.847656588, 28.549141114000065], [76.8462462330001, 28.549575111000195], [76.84583300800011, 28.550016996999943], [76.84516825400004, 28.550356301000136], [76.84522215300012, 28.5513820970001], [76.84506045700005, 28.552194836000126], [76.84459333300015, 28.552960225000106], [76.84430587200006, 28.553110146000165], [76.8436501020002, 28.554364740000096], [76.84310212900004, 28.55494863300015], [76.84301229800013, 28.555571976000124], [76.84250025800009, 28.555895481000164], [76.84228466200017, 28.55633734100013], [76.84225771300015, 28.556976455000097], [76.84205110000005, 28.556929113999956], [76.8421588980001, 28.558081089000154], [76.84183550500006, 28.560645373000057], [76.84232059500005, 28.562657305000073], [76.8417097410001, 28.56437728000003], [76.84119770100006, 28.566688944000134], [76.84017362100019, 28.569552814000133], [76.84017362100019, 28.57143834900012], [76.83890699700004, 28.572803171000032], [76.83877225000015, 28.573797192000143], [76.8390417440001, 28.575580096000238], [76.83898784500013, 28.577938847000098], [76.83941005300011, 28.582664078000164], [76.840416167, 28.582695632000082], [76.84134143100005, 28.58292439400003], [76.84207805000011, 28.583350363000193], [76.84413519200018, 28.58412341400009], [76.84620131700012, 28.584691366000186], [76.84867168400018, 28.584778136000125], [76.85390886200008, 28.58533819700017], [76.85708889800009, 28.585211986000104], [76.85855315200013, 28.584975341000188], [76.86098758700018, 28.585046335000186], [76.86275726800017, 28.585290868000072], [76.86343100400012, 28.585243539000146], [76.86363761700005, 28.58563005800005], [76.86449101600004, 28.585559065000155], [76.86497610600009, 28.58699469700008], [76.86597323600012, 28.588335653], [76.86689850100004, 28.589006125000083], [76.86811122700004, 28.591191045000187], [76.86834478900016, 28.592200668000146], [76.86877598000007, 28.593028867000044], [76.87026718300007, 28.59749314200019], [76.87065345900004, 28.599662111000157], [76.87154279100008, 28.60254085600002], [76.87180330300015, 28.60295885900007], [76.87218059500009, 28.603085049000015], [76.87398620900012, 28.604867455999965], [76.875378597, 28.605829627000105], [76.87817235799997, 28.60940220400022], [76.88074154000014, 28.61530891400008], [76.88152307400014, 28.617595802000096], [76.88171172000011, 28.61860517100024], [76.88252918700016, 28.61993783900016], [76.88314902500008, 28.621625335000203], [76.88403835700012, 28.62314721200005], [76.88407428900007, 28.623699183000156], [76.8838137780001, 28.624038248999966], [76.88420005300003, 28.625970118000055], [76.8850983690001, 28.62814638400016], [76.88665245400017, 28.63063011199995], [76.88728127500008, 28.63051184000011], [76.88740703900015, 28.631111081000086], [76.88838620300015, 28.631978396000136], [76.89005706900002, 28.63194685800022], [76.89189861500017, 28.631481662000056], [76.89285082999999, 28.631552624000108], [76.89457559500016, 28.63083511500014], [76.8975580020001, 28.628919105999955], [76.89945344700016, 28.62727903700005], [76.89965107600011, 28.627318462000062], [76.90145669000009, 28.626340717000062], [76.90279518000017, 28.62586761100016], [76.90658607000012, 28.623604560000047], [76.90755625100019, 28.625670483000192], [76.90772693100013, 28.625670483000192], [76.9085533810001, 28.626924211000187], [76.91134714100014, 28.629723361000174], [76.91419480100006, 28.632199166000134], [76.91625194300008, 28.631844357000148], [76.91746466800015, 28.63182070299996], [76.91928824800004, 28.631481662000056], [76.92077046900005, 28.630898193000235], [76.92392355500016, 28.628020225000114], [76.92794800800016, 28.623044703], [76.9317388980001, 28.62052136900013], [76.93345468000012, 28.619125623000116], [76.93508063100012, 28.61832917300012], [76.9370479420001, 28.621065468000154], [76.93931169600017, 28.62314721200005], [76.94235698500017, 28.626995177000026], [76.94278817600019, 28.62813849900016], [76.943102587, 28.629597204000106], [76.94445006000007, 28.63310589600019], [76.94320140100001, 28.63347647000012], [76.9410274780002, 28.634454148000202], [76.93923983100018, 28.635431818000086], [76.9375240490001, 28.636646008000184], [76.9337151920002, 28.640320029000122], [76.93160415100004, 28.642022965000194], [76.93076871800014, 28.642929609000248], [76.92978955400008, 28.644703456000173], [76.92864869400006, 28.64575198300014], [76.9281276710002, 28.646650711000063], [76.92667240000014, 28.648053974000106], [76.92528899500013, 28.648984217000077], [76.92497458400015, 28.649291668000217], [76.92488475300007, 28.649607001000106], [76.92568425300016, 28.65118365500018], [76.92856784500003, 28.655401088000133], [76.92899005400005, 28.65637856300009], [76.93106516200015, 28.659121748000132], [76.93163110000006, 28.660580022000033], [76.93254738200005, 28.66208556900017], [76.9331312870001, 28.664268969000148], [76.93323010200004, 28.665191185000083], [76.93489198500015, 28.667358756000112], [76.93585318200019, 28.667776501000105], [76.93733540300013, 28.667792265000173], [76.94082984900007, 28.66817848000005], [76.9424378330001, 28.66819424400012], [76.94295885600013, 28.668068133000077], [76.94373140700003, 28.66878538700007], [76.9444680260001, 28.66914795300005], [76.94720788700005, 28.66962874600017], [76.94828586600016, 28.669951900000058], [76.95070233400008, 28.66943958199994], [76.9524181160001, 28.669494755000187], [76.95369372400017, 28.668990316000077], [76.95383745400017, 28.668927261000135], [76.95505916300004, 28.67003071800019], [76.95583171400011, 28.672387348000143], [76.95606527600006, 28.674570533000235], [76.95598442800014, 28.6764778270001], [76.95662223200014, 28.67906286400023], [76.95663121500013, 28.680599670000163], [76.957924789, 28.685194191000107], [76.95962260500016, 28.687794774000054], [76.96254212900016, 28.69108087300009], [76.96328773100004, 28.692318059000115], [76.9633865460001, 28.6934685490001], [76.96506639500012, 28.696147725000117], [76.96648573300013, 28.698054626000044], [76.96805778500016, 28.69921293300007], [76.96691692500008, 28.699796022000044], [76.96357519200006, 28.70229381100006], [76.9591644640002, 28.705303685000047], [76.95725105200012, 28.706115233000048], [76.95641561900004, 28.706855864000147], [76.95133115500016, 28.709983789000034], [76.94816010200009, 28.712709813000174], [76.95108861000006, 28.717728349000083], [76.9530738860002, 28.720320245000153], [76.95419678000019, 28.721391649000168], [76.95606527600006, 28.723747122000077], [76.95805953600006, 28.727032092000115], [76.95920039700007, 28.728552439000055], [76.95968548700006, 28.729560740000068], [76.95974836900007, 28.730206677000126], [76.95967650400007, 28.7313173660001], [76.95988311600013, 28.732766755999933], [76.9594339590002, 28.733995572000026], [76.95822123300002, 28.73577575400003], [76.95633477100012, 28.737327480000204], [76.95600239400005, 28.7382175460001], [76.95699952400014, 28.73972985400019], [76.95859852500018, 28.74299856900018], [76.95583171400011, 28.745849750000104], [76.95293015600004, 28.748165293000113], [76.95180726200005, 28.74930729300013], [76.95106166000016, 28.74965382900018], [76.95057657000018, 28.750283891000095], [76.94497108200017, 28.75348139600004], [76.94487226800015, 28.75367828399999], [76.94443209300005, 28.753827918000127], [76.94524057700016, 28.756237787000146], [76.9464622860001, 28.758395596999947], [76.94962435600007, 28.762159845000042], [76.9507292830001, 28.763222945000052], [76.95062148600016, 28.763333192000232], [76.950783182, 28.763514311000165], [76.95093589600003, 28.763600933000077], [76.95132217100013, 28.763404065000145], [76.95362185900018, 28.765758591000065], [76.95549035400012, 28.767412240000226], [76.95576883200005, 28.76745161200006], [76.95558916900006, 28.767845333999958], [76.9551939100001, 28.768892628000117], [76.95524780900001, 28.769443830000057], [76.95195997500014, 28.773254924000128], [76.95151081800003, 28.77399507800004], [76.95044182300012, 28.77504231], [76.95012741200014, 28.775034436000055], [76.94974113700005, 28.776617074000114], [76.94928299600008, 28.776813918000073], [76.94952554100013, 28.778191815000127], [76.94953452400011, 28.77935710800017], [76.94998368200015, 28.780947554000136], [76.94983995100006, 28.781915982000157], [76.95011842899999, 28.783435530000077], [76.95116047500005, 28.786387955999942], [76.95223845300006, 28.788104261000115], [76.95322660000005, 28.78929306100008], [76.95406203300018, 28.790017357000124], [76.95309185300016, 28.791245498999956], [76.9502172440001, 28.794103235000193], [76.94842061300005, 28.795465158000127], [76.9465431340002, 28.79753556300011], [76.94413564900003, 28.79818895200009], [76.9427073280001, 28.798157463000052], [76.94207850700019, 28.79829916200015], [76.94332716500014, 28.80120393600015], [76.94452192500006, 28.802786177000087], [76.94530345900006, 28.804085013000076], [76.94592329699998, 28.80557275200016], [76.94596821200008, 28.80620247600018], [76.94556397100013, 28.80679283899991], [76.94551007200016, 28.80717066900013], [76.94573465000013, 28.80771379800018], [76.94592329699998, 28.809193614000037], [76.94580651600018, 28.810224749000042], [76.94610296000019, 28.81107483799991], [76.94644432000001, 28.811720271000127], [76.9468485610002, 28.81198001700011], [76.94712703900012, 28.81239718500018], [76.94706415700006, 28.813011125000173], [76.94738755100019, 28.813625063000188], [76.94806128700014, 28.81391628800003], [76.94832179800011, 28.814845056000138], [76.9489685850001, 28.81588400599992], [76.9491662150001, 28.816080776000035], [76.94965130500009, 28.81606503400019], [76.95108861000006, 28.818150770999978], [76.95683782700013, 28.81652940899994], [76.95807750200015, 28.81600993900014], [76.95911954800005, 28.815246469000044], [76.9603053240001, 28.815207115000135], [76.96044905500014, 28.815333049000117], [76.96108685899998, 28.814986731000033], [76.96176059500016, 28.814892281000027], [76.962092972, 28.815718719000188], [76.96244331500014, 28.81597058500006], [76.96282959000001, 28.816576634000057], [76.96398841700011, 28.818906348000098], [76.96482385000019, 28.819898035000165], [76.96490469900004, 28.820252206000248], [76.96470706900004, 28.82074804500013], [76.96485080000014, 28.821062861000087], [76.9640962150001, 28.821873510000103], [76.96378180400012, 28.822778596000205], [76.96436570900005, 28.82337673500001], [76.96502148000019, 28.8245572630002], [76.96451842300007, 28.824667445000046], [76.96482385000019, 28.825328534000164], [76.96566826700018, 28.825674817000106], [76.96566826700018, 28.827209467000046], [76.96586589600008, 28.82777610100004], [76.96664743000008, 28.827508524000052], [76.96698879000007, 28.82836634100005], [76.9691357640001, 28.82780758000007], [76.97121087200003, 28.827571482999986], [76.973160216, 28.826800229000128], [76.97370818800005, 28.826367379000033], [76.97466040300009, 28.82502947000006], [76.97492989700015, 28.824289678000184], [76.9756665160001, 28.823274422000168], [76.97565753300012, 28.822597579000046], [76.976987039, 28.82255035700024], [76.97841536000016, 28.822172583000054], [76.98023894000005, 28.821424899000192], [76.98283507200011, 28.82457300300007], [76.98348185900005, 28.825084561000097], [76.9834010100002, 28.82551741600014], [76.98622172000017, 28.831160102000183], [76.98658104600008, 28.832238237000126], [76.98659901300005, 28.833300622000024], [76.98685952400018, 28.834111176000135], [76.98710206900012, 28.83440234400024], [76.98765902500014, 28.83450464600014], [76.98880886799998, 28.83550405400007], [76.98902446400007, 28.83553553100012], [76.98960836900017, 28.836464105000175], [76.99014735800006, 28.83710938100012], [76.99029108900015, 28.83711724999995], [76.99036295400015, 28.83763661600011], [76.99099177400012, 28.83816384800025], [76.99196195500019, 28.838336968000192], [76.99436944000018, 28.83929699400022], [76.99450418700008, 28.839745527000105], [76.99766625700005, 28.838549433000082], [76.99922932600015, 28.838281884000025], [77.00407124500009, 28.839895038000122], [77.00661347700014, 28.840556030000073], [77.00822146200005, 28.840681932999928], [77.00863468700004, 28.84057176799996], [77.00960486700018, 28.84065045700021], [77.01166200900002, 28.84056389900013], [77.01166200900002, 28.84033569999997], [77.01233574600008, 28.84024127300006], [77.01431203900012, 28.84028848600019], [77.01512950600016, 28.84004454900014], [77.01754597400009, 28.839957990000187], [77.01759089000006, 28.839832086000058], [77.0192617560001, 28.83967470600021], [77.01918090800018, 28.839501588000076], [77.02036668400007, 28.839344208], [77.02042058300015, 28.839100268000095], [77.02106737000008, 28.838990100999922], [77.02334010800001, 28.83918682700005], [77.02604403700019, 28.83773891500016], [77.02713998100012, 28.836873304999926], [77.02877491500004, 28.836550667000097], [77.03018527000012, 28.835960473000114], [77.03100273700016, 28.835771610000165], [77.0312093500001, 28.83557487700017], [77.0324310580001, 28.835283713000024], [77.03360785200016, 28.834551862000183], [77.03508108900007, 28.83422134799997], [77.03639262900009, 28.833489490000204], [77.03856655200008, 28.832741888000157], [77.04015657000019, 28.83184475800016], [77.04124353100013, 28.83304879900004], [77.04173760499998, 28.833347839000112], [77.04199811600017, 28.83374918200019], [77.04238439200014, 28.83396165700009], [77.04277066700001, 28.83514993400007], [77.04226761100017, 28.836133597000185], [77.0422765940001, 28.836448367000116], [77.04185438600018, 28.83701495100013], [77.04185438600018, 28.83754218600012], [77.04271676900004, 28.83862025500008], [77.04501645600016, 28.840398652000033], [77.04542968100014, 28.842153411000027], [77.045519512, 28.843766505000076], [77.04548358000005, 28.844592714000157], [77.04514222000006, 28.844765824000092], [77.0452500180001, 28.84513564800011], [77.04506137100003, 28.84533236200025], [77.04548358000005, 28.846245112000076], [77.04566324300009, 28.847181460000115], [77.04585188900006, 28.84759848600015], [77.04658850700008, 28.848251561000097], [77.04703766500012, 28.849164285000143], [77.04838513800013, 28.85065138000016], [77.04944515000011, 28.852366626000162], [77.05123279700013, 28.854624729000193], [77.05104415100016, 28.855033857000137], [77.05171788800004, 28.856339910000088], [77.05175382000016, 28.85675689900023], [77.05207721400012, 28.85741778400012], [77.05191551700011, 28.857606608000083], [77.05196043300015, 28.858110135000118], [77.05184365200012, 28.85812587100014], [77.05205026400017, 28.85917225700024], [77.052957563, 28.860855893000064], [77.05325400700002, 28.86109978200011], [77.05325400700002, 28.861335803000202], [77.0553021660001, 28.86358584300018], [77.05697303199997, 28.866205583999943], [77.05830253900012, 28.867999243000156], [77.0597039110001, 28.86936806700004], [77.06003628700006, 28.86987153800004], [77.0602429, 28.869855804000167], [77.06115019800012, 28.87084700500003], [77.06371039700014, 28.86929726600016], [77.06919012000009, 28.867102417000183], [77.06951351300012, 28.867519364000145], [77.06989080600016, 28.86742496100004], [77.07043877800004, 28.86781043800005], [77.07128319499998, 28.868762325000034], [77.07212761100004, 28.868754458000183], [77.07211862800011, 28.86856565500011], [77.07336728600006, 28.867771104000155], [77.07455306200012, 28.867259756000124], [77.07547832699998, 28.868683657000076], [77.07546036100013, 28.86890392700019], [77.07665512000011, 28.869604069000047], [77.0784876830001, 28.871413402000087], [77.0792153180002, 28.871743798000068], [77.07936803200005, 28.873442964000162], [77.07793072800013, 28.877289584000096], [77.08108381400007, 28.879932577000034], [77.08224264100011, 28.88167093800007], [77.08242230400015, 28.883149701000093], [77.08265586600015, 28.883495792000076], [77.08412910300007, 28.882410322000112], [77.08636590800012, 28.881906912000034], [77.08715642599998, 28.881427097000028], [77.08759659999998, 28.880727035000234], [77.0876235500001, 28.88000337000011], [77.08817152200015, 28.877745819000097], [77.08829728600006, 28.876644557000134], [77.08798287600018, 28.876101788000028], [77.08785711200005, 28.876125386999945], [77.0877672800001, 28.875716341000043], [77.08791999400012, 28.87559834700005], [77.08785711200005, 28.874520661000076], [77.08791999400012, 28.87537022500021], [77.09208817700011, 28.87252258600023], [77.09464837500019, 28.871319003000167], [77.09675043300007, 28.87080767200007], [77.09689416300006, 28.870917805000033], [77.09745111900014, 28.87075260600011], [77.09967894100004, 28.87058740600014], [77.10219422300014, 28.87020193900014], [77.10219422300014, 28.870445806000134], [77.10324525200019, 28.87054807300018], [77.10585036700019, 28.86988727100004], [77.10736851900003, 28.869690603000095], [77.10900345300013, 28.869737803000078], [77.10979397100016, 28.870013138000047], [77.10999160000006, 28.869722070000137], [77.11016228000017, 28.869714203000115], [77.11047669000004, 28.86874659100016], [77.11109652800019, 28.86871512400012], [77.11096178100013, 28.868227381000167], [77.11108754500003, 28.867959909000092], [77.11180619700019, 28.86731482400006], [77.11218348900013, 28.867220421000184], [77.11212060700007, 28.866504529999986], [77.11245298400013, 28.86648092900009], [77.11245298400013, 28.866370791000236], [77.11311773700015, 28.866362924000214], [77.11311773700015, 28.86586730300013], [77.11378249100011, 28.865859436000108], [77.11380944000013, 28.865717830000108], [77.11415080000012, 28.865631292000046], [77.11398910300016, 28.865206472000068], [77.11562403700009, 28.86470297800014], [77.11552522200014, 28.86399493600021], [77.11664811600014, 28.86320035000017], [77.11666608300015, 28.86268111300012], [77.11786084200014, 28.86210680100004], [77.11959459100012, 28.860564799000144], [77.11963052300007, 28.860313041000097], [77.11990001800012, 28.860313041000097], [77.11990900100005, 28.859966873000076], [77.12087019800009, 28.8599511380001], [77.12089714799998, 28.85826748700015], [77.12146308600012, 28.858055062000062], [77.12393345300012, 28.857614475000105], [77.12429277900003, 28.85772462200009], [77.12423888100017, 28.85800785699996], [77.1245622740002, 28.85870807200007], [77.12462515600009, 28.859187992000216], [77.12476888700019, 28.859195859000238], [77.12485871800004, 28.85956563200017], [77.12508329700006, 28.859557764000044], [77.12509228, 28.859896066000147], [77.12537075800014, 28.860336643000096], [77.12676314600003, 28.860462522000148], [77.12809265300018, 28.86113125100013], [77.13020369400016, 28.861941587999922], [77.13054505400015, 28.862122536000186], [77.13061691900015, 28.862492298000234], [77.13209015600012, 28.863294757000062], [77.13230575199998, 28.863341960000184], [77.13234168400015, 28.86295646600007], [77.13574629900017, 28.862547369000083], [77.1391059980001, 28.86197305700017], [77.13980668400012, 28.862209076000056], [77.14009414500003, 28.861980924000193], [77.14013007800008, 28.861296466000226], [77.14047143800008, 28.860375981000175], [77.14100144400004, 28.859644307000224], [77.14114517400003, 28.858416972000157], [77.14238484900005, 28.858180944000196], [77.14205247300009, 28.857032268000182], [77.14216925400007, 28.856253364000224], [77.14340892900003, 28.854931575000194], [77.14447792400011, 28.854711275000057], [77.14513369400004, 28.85419986300019], [77.14549302000006, 28.85316916300019], [77.14530437400009, 28.85298819900015], [77.14467555300001, 28.85134377600008], [77.14219620300008, 28.847472590999928], [77.14172907900013, 28.84622937500012], [77.14153145000006, 28.84268062000001], [77.14227705100018, 28.84164980600019], [77.14233993400012, 28.840469472000052], [77.14220518600018, 28.839415029000122], [77.14472046899999, 28.838321230000133], [77.14677761100006, 28.837912036000205], [77.14861915699998, 28.838030073000084], [77.15092782800014, 28.837872689999926], [77.15772807400009, 28.836936259000197], [77.15686569200011, 28.837951381000153], [77.15686569200011, 28.8390373150001], [77.15950673900005, 28.84118554300005], [77.16474391700012, 28.847818801000187], [77.16610037300012, 28.849345256000106], [77.16690885700001, 28.849006920000136], [77.1686875210001, 28.850462544000152], [77.16906481300009, 28.850619907000123], [77.16984634800014, 28.850572698000235], [77.17205620300012, 28.85001405600019], [77.17264010800005, 28.854042505000166], [77.17293655200007, 28.855317099000104], [77.17323299600008, 28.85589144800008], [77.17301740000016, 28.857339107000087], [77.17498471100015, 28.85849564700021], [77.17552370000004, 28.857976386000132], [77.17679930800011, 28.85794491600018], [77.17785033700011, 28.858393369000055], [77.17809288199999, 28.85865299900007], [77.18044646800007, 28.8578190340001], [77.18190173900012, 28.857732490000217], [77.18332107700013, 28.85794491600018], [77.18456973500008, 28.857905578000157], [77.1879204510002, 28.858259620000126], [77.19070522800013, 28.858385501000157], [77.19196287000011, 28.858306825000227], [77.19202575200012, 28.858401236000134], [77.19298694900016, 28.858377634000135], [77.19304983100005, 28.858519250000086], [77.19357983700019, 28.858432707000134], [77.19380441600003, 28.859014906000084], [77.19532256900015, 28.85936894400004], [77.20364995200003, 28.85907784600016], [77.2069647350001, 28.85924306400011], [77.20693778600008, 28.859046376000038], [77.20646167800015, 28.857291901000053], [77.20713541500004, 28.856961459000104], [77.20772830300007, 28.85710307700009], [77.20828525900015, 28.8578741070001], [77.20971358000008, 28.85855072000004], [77.21103410300003, 28.858338296000056], [77.21167190700004, 28.857787563000045], [77.21191445200014, 28.857087342000113], [77.21212106500008, 28.85471914300018], [77.21239055900014, 28.853885147000085], [77.21326192500015, 28.85230368200007], [77.21309124500004, 28.849982583000156], [77.21412430800018, 28.846748695000088], [77.21430397100005, 28.8454425220001], [77.21450160000012, 28.84509630500014], [77.21465431400014, 28.843270776000168], [77.21513940400013, 28.84307405800007], [77.21519330300009, 28.842334394000147], [77.21608263500013, 28.84029635500019], [77.21618145000019, 28.839753396000106], [77.217376209, 28.83814024000003], [77.21810384500003, 28.836385413000073], [77.22104133600016, 28.833670487000177], [77.22163422400018, 28.832238237000126], [77.22228101100012, 28.831443409000087], [77.22286491600005, 28.82996390900007], [77.22361950000015, 28.828909360000125], [77.22396984300008, 28.827760361000173], [77.22352068600014, 28.825950268000042], [77.22403272500014, 28.82534427400003], [77.22403272500014, 28.824698925000177], [77.22377221400018, 28.823856818000024], [77.22288288200014, 28.822880909000048], [77.22257745500013, 28.822345730000052], [77.22241575800018, 28.82160591800016], [77.2224966060001, 28.821125825000138], [77.22195761700004, 28.82034665200007], [77.2220564320001, 28.820142020000162], [77.22110421800005, 28.81922117], [77.22027776800002, 28.81867023100017], [77.22009810499998, 28.81745028300014], [77.21897521000011, 28.816655341000057], [77.21848113700014, 28.813554224000086], [77.2185350360001, 28.812050857000145], [77.21893029500018, 28.81027984800005], [77.21884944600015, 28.80891811800018], [77.21868775000013, 28.808563908000167], [77.217079765, 28.80863475000018], [77.21582212400017, 28.807398941000145], [77.21451956700008, 28.80913851500003], [77.21143834500009, 28.810201136000103], [77.2075486400002, 28.81055534000012], [77.20685693700005, 28.81091741500012], [77.20252705800004, 28.81230273200009], [77.20193416900008, 28.812436540000135], [77.20015550500017, 28.81249950800003], [77.20014652200007, 28.81117716300014], [77.19884396500004, 28.807894841000177], [77.19870023400011, 28.80448646900004], [77.19820616100003, 28.803785888999982], [77.19777497000013, 28.801518811000165], [77.19704733400016, 28.800983522000024], [77.19688563800008, 28.79964528700009], [77.19704733400016, 28.79957443800015], [77.19683173900017, 28.79826767300011], [77.20221264700001, 28.797370247000117], [77.21002799000019, 28.792867254000157], [77.21227377800017, 28.790159066000058], [77.21329785800003, 28.788938785000084], [77.21524720200017, 28.78716738199995], [77.21685518599998, 28.786025796000217], [77.21819367600006, 28.785498300000086], [77.21999030700016, 28.786025796000217], [77.22053827899998, 28.785868335000032], [77.22846142000003, 28.78658478100016], [77.22909024000018, 28.786183257000175], [77.22955736400007, 28.786285606000035], [77.23255773700009, 28.784640130000128], [77.23139891100016, 28.78351426200004], [77.2317851860002, 28.783215078000183], [77.23137196100004, 28.782774174999986], [77.23132704600016, 28.782238789000132], [77.23108450000012, 28.78204195500018], [77.23055449400016, 28.78241200200017], [77.22752717200018, 28.78075859100005], [77.22736547500017, 28.78052238700019], [77.22650309200014, 28.780010611000137], [77.2254879960002, 28.779577567000217], [77.22469747900004, 28.77893193500006], [77.22442798400004, 28.778546128000187], [77.22437408500014, 28.778168194000216], [77.22596410300008, 28.775498994000145], [77.2261527500001, 28.770002904000137], [77.2261886820001, 28.769821796000087], [77.22829972300002, 28.76929421800014], [77.22961126300004, 28.76791620399996], [77.23103958500008, 28.767160257000057], [77.23124619700013, 28.765876710000157], [77.23523471700008, 28.761096735000194], [77.235656925, 28.760907736000092], [77.23795661200012, 28.75998636299994], [77.23889984300013, 28.759442985000135], [77.23944781600005, 28.75930910900007], [77.2424122560002, 28.757899463000115], [77.24579890500019, 28.756568550000054], [77.24689484900011, 28.75597790200004], [77.24877232800009, 28.75547388100017], [77.25043421200013, 28.755276996000134], [77.25701886300004, 28.756222037000043], [77.2572254750001, 28.754497332000085], [77.25717157600013, 28.753717661000167], [77.2564439410001, 28.75359165300023], [77.25758480100012, 28.753166375000035], [77.258770577, 28.752473326000143], [77.25875261100015, 28.74899226000008], [77.25841125100015, 28.74779512500004], [77.25756683500009, 28.7464325790001], [77.25705479500016, 28.74510152000022], [77.25661462100015, 28.744605322000155], [77.2563720760001, 28.74405398800019], [77.25493477100008, 28.74384133000018], [77.25520426600008, 28.74095071100004], [77.25566240700005, 28.739312396000116], [77.25594986700003, 28.73890281400014], [77.25908498800004, 28.735933290000105], [77.25930956700006, 28.735917537000148], [77.2592556680001, 28.735500064000178], [77.26018991600012, 28.735381911000047], [77.26045042700008, 28.73508258900017], [77.26061212400009, 28.734586344000036], [77.26101636600015, 28.734302774000014], [77.26206739500014, 28.734562713000116], [77.26314537300016, 28.734625727999912], [77.26442098100017, 28.734318528000074], [77.26574150400012, 28.734586344000036], [77.26823882100007, 28.73477539000004], [77.26835560200004, 28.734995943000115], [77.27055647400005, 28.735184989000118], [77.27189496400013, 28.73558670900013], [77.27199377800014, 28.735791507000215], [77.27340413300004, 28.73561034000005], [77.27388922400013, 28.736476790000154], [77.27525466300006, 28.736161718000176], [77.27651230400011, 28.7355788320001], [77.27706027700003, 28.73531101900005], [77.28047387500004, 28.733073962000162], [77.28020438000004, 28.732286254000144], [77.28145303800017, 28.731018032000236], [77.28208185900002, 28.730608417000155], [77.28208185900002, 28.73022243200012], [77.28265678100018, 28.729615881000086], [77.28288136000003, 28.72960012600015], [77.28300712400011, 28.72908810000024], [77.28313288800007, 28.729040836000024], [77.28351018000018, 28.728836025000078], [77.28352814700014, 28.728576071000248], [77.2837886580001, 28.728284608000195], [77.28466900700005, 28.72754412899991], [77.28539664300001, 28.727559884000073], [77.28544155800012, 28.72734719200008], [77.28572003600004, 28.72735506900011], [77.28572901900003, 28.727150255000026], [77.28506426600018, 28.727110867000135], [77.28589071600015, 28.726189196000178], [77.28608834500005, 28.7256377650001], [77.28634885700012, 28.725645643000064], [77.28636682300004, 28.725251762000084], [77.28651953700006, 28.725220251000223], [77.28634885700012, 28.725031188000116], [77.28650157000004, 28.724842124000077], [77.28733700400011, 28.7246136710001], [77.28774124500006, 28.724448240000186], [77.28770531300012, 28.724274930000036], [77.28914261699998, 28.72353442300016], [77.28916058400017, 28.723384745000033], [77.28965465700009, 28.72340050100007], [77.28966364000001, 28.723148412000114], [77.29012178100004, 28.723148412000114], [77.29081348400013, 28.722770277000166], [77.2905978880001, 28.72246304100014], [77.29106501200016, 28.722140049000075], [77.2906068710002, 28.72148618400007], [77.29030144400008, 28.721509818000072], [77.29028347800016, 28.721257724000168], [77.29055297200006, 28.72124196800013], [77.29043619100008, 28.721013508000055], [77.29028347800016, 28.721060775000126], [77.28969059000013, 28.720052393000174], [77.28952889300018, 28.720068149000042], [77.28971753900015, 28.716578125000126], [77.28928634800008, 28.716452072000095], [77.288585662, 28.715979373000152], [77.28864854400007, 28.715167901000143], [77.28824430200018, 28.714978820000056], [77.28832515000016, 28.714443087000063], [77.28838803200017, 28.71405704199998], [77.28859464500016, 28.713560695999945], [77.28830718400008, 28.713292825999986], [77.288927022, 28.712993442000084], [77.28885515600012, 28.71278072000007], [77.28842396500005, 28.712126796000177], [77.28751666700015, 28.71256012000015], [77.28720225600011, 28.712126796000177], [77.28736395300012, 28.712048010000046], [77.28730107100006, 28.71193770900004], [77.28801972300016, 28.71168559300014], [77.28777717800011, 28.710606211000027], [77.28799277399997, 28.710558938000133], [77.28784904300011, 28.709920758000067], [77.28801972300016, 28.709511060000068], [77.28869346000005, 28.709613485000148], [77.28908871800007, 28.70885711600016], [77.28899888699999, 28.708683781000104], [77.28913363400005, 28.70848680800009], [77.2899511010001, 28.70795892100017], [77.28974448800017, 28.70768315800018], [77.2903912750001, 28.707265572000097], [77.29032839300004, 28.706966170000044], [77.2909302650001, 28.706651009000154], [77.29237655200018, 28.70602856300019], [77.29417318300005, 28.705713399000217], [77.2952691270001, 28.70488609000006], [77.29555658800018, 28.705256410000118], [77.29618540900009, 28.705035794000196], [77.29624829100015, 28.705138223000233], [77.29653575200001, 28.705090948000134], [77.29708372400006, 28.70483093500019], [77.2982425510001, 28.707107992000033], [77.29835933200008, 28.707068597000045], [77.29865577600009, 28.7077934630002], [77.2985479780001, 28.707943163000152], [77.29886238900008, 28.708329230000174], [77.29893425400007, 28.70910924000009], [77.2987456080001, 28.709337725999944], [77.2986198430001, 28.70929045300005], [77.29865577600009, 28.709849849000136], [77.3019436100002, 28.710748028000125], [77.30355159400017, 28.711803772000053], [77.3043331290001, 28.712449820000074], [77.30492601700013, 28.71328494800008], [77.30570755100013, 28.71390735100016], [77.30612077600011, 28.714080677000084], [77.30788147400017, 28.71320616200012], [77.30814198600001, 28.713600089000124], [77.30865402500001, 28.713347976000136], [77.30891453700008, 28.713631603000067], [77.30957030700017, 28.713316462000023], [77.30976793600007, 28.713576452999916], [77.3110165940002, 28.712969806000103], [77.31155558400002, 28.71377341600015], [77.31260661200014, 28.713261312000043], [77.31254373000007, 28.71312737700009], [77.31311865200007, 28.712946170000123], [77.31337018000005, 28.71321404100013], [77.31309170300005, 28.713426761000164], [77.31501409700013, 28.715128509000124], [77.31687993923993, 28.713694719832006], [77.31732276800011, 28.71414370500014], [77.31990093300016, 28.71321404100013], [77.32107772600011, 28.71291465600018], [77.32147298400008, 28.71266254200009], [77.32185027700012, 28.71241830500003], [77.32295520500008, 28.713694631000124], [77.32421284600014, 28.712867385000038], [77.32409606500016, 28.712733449000154], [77.32471590200004, 28.712426184000037], [77.32609032500017, 28.713261312000043], [77.32617117300009, 28.71311162000012], [77.32714135400016, 28.71344251900024], [77.32807560200018, 28.713182527000185], [77.33077054800003, 28.712843749000058], [77.32761746100005, 28.71095287500009], [77.32618015600019, 28.709747425000216], [77.3253896390001, 28.708644386000174], [77.32476980100012, 28.707336483], [77.32449132400006, 28.705792190000068], [77.32507522900016, 28.70496488100008], [77.32544353800017, 28.70477578100008], [77.32591066200013, 28.704255754000144], [77.3259555780001, 28.702750813000023], [77.32528184100005, 28.70179740900022], [77.32551540300017, 28.701694977000045], [77.32526387500013, 28.701230090999957], [77.32540760500012, 28.701033105000192], [77.32533574000013, 28.700828238000042], [77.32345826100016, 28.69866136], [77.32370080600003, 28.69799946800009], [77.32521895900015, 28.69577737300017], [77.32498539700003, 28.69557249600018], [77.3259555780001, 28.695099703000096], [77.32722220200009, 28.693783750000193], [77.32856069200017, 28.692058014000224], [77.33018664300016, 28.689985518000128], [77.33014172700018, 28.689851553000153], [77.32976443400014, 28.68971758800018], [77.33202818900008, 28.685075981000068], [77.3321988690002, 28.684256389000154], [77.33213598700013, 28.68297182300006], [77.33264802600013, 28.682309833000204], [77.33245938000016, 28.682112811000025], [77.33314210000015, 28.681647837000128], [77.330617834, 28.678653045000146], [77.33002494599998, 28.678266868000094], [77.32947697300006, 28.67820381900009], [77.32947697300006, 28.67794374000016], [77.32779712400003, 28.677124092000213], [77.32549743700014, 28.676919179000038], [77.32475183500009, 28.67794374000016], [77.32361097500018, 28.67736841100009], [77.32382657000016, 28.6763359630001], [77.32397030100003, 28.6763359630001], [77.32397030100003, 28.6761940990001], [77.32404216600003, 28.675390200000095], [77.32389843600004, 28.674405022000087], [77.32407809900008, 28.67405823700011], [77.32409606500016, 28.673467124000126], [77.3239074190002, 28.673467124000126], [77.32309893500008, 28.670834658000103], [77.32326063200003, 28.670787367000173], [77.32348521100005, 28.67012529900012], [77.32345826100016, 28.669620864000024], [77.323817587, 28.66884056000015], [77.32367385700002, 28.66865927700013], [77.32334148000018, 28.668619867000075], [77.32331453100016, 28.667768619000185], [77.32303605300001, 28.667768619000185], [77.32304503600017, 28.667603097000153], [77.32291927200004, 28.666901599000028], [77.32268571000009, 28.666917363000096], [77.3225419800001, 28.666767605000132], [77.32194010800004, 28.66679913300004], [77.32128433800011, 28.664284733000045], [77.32105077600016, 28.663677800000187], [77.32089806300007, 28.663693564000084], [77.3208441640001, 28.663386155000126], [77.32107772600011, 28.663299450000125], [77.32054772000009, 28.66028048600009], [77.32035009000009, 28.660304134000114], [77.32012551100007, 28.659295165], [77.32002669700006, 28.657907819000172], [77.32012551100007, 28.657742282000072], [77.32010754500004, 28.654731040000115], [77.32063755100017, 28.65402945600016], [77.32039500600007, 28.65150686700008], [77.31836481300007, 28.64730504400012], [77.31787972300009, 28.64624864900003], [77.31787972300009, 28.645460288000095], [77.31751141400008, 28.64545240500007], [77.31736768300016, 28.644120061000137], [77.31666699800019, 28.642645791000177], [77.3167658120002, 28.642606372000046], [77.31612800800019, 28.64143955399993], [77.31617292400017, 28.641242456000157], [77.31798752100013, 28.639878522000117], [77.32053873600006, 28.638230741000086], [77.32194909100014, 28.636716966000165], [77.3223533330002, 28.636874652000074], [77.32599151000005, 28.63323204900024], [77.32823729800003, 28.632593397000164], [77.32900985000003, 28.632230705000154], [77.32977341800017, 28.63167089399991], [77.33084241300003, 28.63182858800019], [77.33087834499997, 28.631733972000177], [77.33088732800013, 28.631718202000116]], [[76.9597932850001, 28.765065626000023], [76.95653240000019, 28.766648415000134], [76.95725105200012, 28.766215316000114], [76.9597932850001, 28.765065626000023]], [[77.24316195627165, 28.755124362850438], [77.2432561305564, 28.75481413491252], [77.24325667300019, 28.75482809900018], [77.24316195627165, 28.755124362850438]], [[77.32203892300015, 28.67782552200015], [77.32208383900013, 28.676280794000036], [77.32204553116196, 28.677853681458373], [77.32203892300015, 28.67782552200015]], [[77.12507431400013, 28.497474821000083], [77.12453532500018, 28.49724587300011], [77.12566720200016, 28.49768797900009], [77.12507431400013, 28.497474821000083]], [[77.12174156400005, 28.496180076000144], [77.12216377200019, 28.495959021000033], [77.12237914034324, 28.49598147716233], [77.12174156400005, 28.496180076000144]]], "type": "Polygon"}, "properties": {"Id": 0}, "type": "Feature"}], "name": "Delhi_Boundary", "type": "FeatureCollection"});
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
geo_json_031a33938568c441f4fcc9e751b8eeb0.addTo(map_82205411f9094d9e79624e220c9d7c72);
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
var circle_marker_7c449365c58f9eca2746ab3b0d4bb9c8 = L.circleMarker(
|
| 140 |
-
[28.5562, 77.1],
|
| 141 |
-
{"bubblingMouseEvents": true, "color": "#f97316", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#f97316", "fillOpacity": 0.8, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 22.125, "stroke": true, "weight": 3}
|
| 142 |
-
).addTo(map_82205411f9094d9e79624e220c9d7c72);
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
var popup_2452c10adeea46f735005794b73fe5b6 = L.popup({
|
| 146 |
-
"maxWidth": "100%",
|
| 147 |
-
});
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
var html_1edc2e919093a6824fc07f2c749aecc9 = $(`<div id="html_1edc2e919093a6824fc07f2c749aecc9" style="width: 100.0%; height: 100.0%;"><b>✈️ IGI Airport</b><br>CO₂: 48.5 t/day</div>`)[0];
|
| 152 |
-
popup_2452c10adeea46f735005794b73fe5b6.setContent(html_1edc2e919093a6824fc07f2c749aecc9);
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
circle_marker_7c449365c58f9eca2746ab3b0d4bb9c8.bindPopup(popup_2452c10adeea46f735005794b73fe5b6)
|
| 157 |
-
;
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
var marker_cd3b8458f643b2617bc9d72a7bbdf42a = L.marker(
|
| 163 |
-
[28.5562, 77.1],
|
| 164 |
-
{
|
| 165 |
-
}
|
| 166 |
-
).addTo(map_82205411f9094d9e79624e220c9d7c72);
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
var div_icon_23ed5acec7aed412d309467e741a3991 = L.divIcon({
|
| 170 |
-
"html": "\u003cdiv style=\"font-weight: bold; font-size: 11px; color: white; text-shadow: 0 0 4px black;\"\u003e48\u003c/div\u003e",
|
| 171 |
-
"className": "empty",
|
| 172 |
-
});
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
marker_cd3b8458f643b2617bc9d72a7bbdf42a.setIcon(div_icon_23ed5acec7aed412d309467e741a3991);
|
| 176 |
-
|
| 177 |
-
</script>
|
| 178 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
temp_emission_map_2e45cbe0-497f-4c64-9bd7-0955f6a5eb88.html
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
temp_emission_map_63fc3087-764a-491f-8e4f-3bb6c46f838d.html
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|