Last active
August 29, 2015 14:06
-
-
Save unRob/df66becba131f7d4cc15 to your computer and use it in GitHub Desktop.
WiFi Público (México)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
require 'sinatra' | |
require 'mongo' | |
require 'json' | |
$mongo = Mongo::MongoClient.new | |
$db = $mongo['wifi'] | |
get '/' do | |
erb :index | |
end | |
get '/access-points' do | |
lat = params[:lat] | |
lng = params[:lng] | |
where = { | |
geometry: { | |
'$near' => { | |
'$geometry' => {type: 'Point', coordinates: [lng, lat].map(&:to_f)}, | |
'$maxDistance' => 1000 | |
} | |
} | |
} | |
response.headers['Content-type'] = 'application/json'; | |
{type: 'FeatureCollection', features: $db['puntos'].find(where).to_a}.to_json | |
end | |
__END__ | |
@@ index | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Wifises</title> | |
<style> | |
html { | |
height: 100%; | |
} | |
#me { | |
padding: 0; | |
margin: 0; | |
height: 100%; | |
} | |
#map { | |
width: 100%; | |
min-height: 400px; | |
height: 100%; | |
} | |
</style> | |
</head> | |
<body id="me"> | |
<div id="map"></div> | |
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=true"></script> | |
<script> | |
document.addEventListener('DOMContentLoaded', function DOMReady(){ | |
var map = new google.maps.Map(document.querySelector('#map'), { | |
zoom: 15, | |
draggable: true, | |
streetViewControl: false, | |
center: { | |
lat: 19.432479, | |
lng: -99.133192 | |
} | |
}); | |
window.map = map; | |
var pos = map.getCenter(); | |
map.data.loadGeoJson('/access-points?lat='+pos.lat()+'&lng='+pos.lng());[] | |
google.maps.event.addListener(map, 'center_changed', function center_changed(){ | |
var pos = map.getCenter(); | |
map.data.loadGeoJson('/access-points?lat='+pos.lat()+'&lng='+pos.lng()); | |
}); | |
var infowindow = new google.maps.InfoWindow({ | |
content: '' | |
}); | |
map.data.addListener('click', function(evt) { | |
data = evt.feature.k | |
rows = [] | |
for (k in data) { | |
rows.push('<tr><td>'+k+'</td><td>'+data[k]+'</td></tr>'); | |
} | |
infowindow.setContent('<table>'+rows.join()+'</table>'); | |
var anchor = new google.maps.MVCObject(); | |
anchor.set("position",evt.latLng); | |
infowindow.open(map, anchor); | |
}); | |
map.data.addListener(map, 'dragstart', function(event) { | |
console.log(evt.latLng); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"type":"FeatureCollection","features":[{"geometry":{"coordinates":[-102.27444444,21.80083333],"type":"Point"},"properties":{"nombre":"General De Division Enrique Estrada","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.295556,21.7175],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.4675,21.78166667],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.498333,21.730833],"type":"Point"},"properties":{"nombre":"Anastasio Serna","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.453611,21.732222],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.14583333,22.01527778],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.288889,21.716389],"type":"Point"},"properties":{"nombre":"General Guadalupe Victoria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.301389,21.674167],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.115,22.04833333],"type":"Point"},"properties":{"nombre":"J Jesus De Lira","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.268889,21.751667],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.20694444,22.13472222],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.050146,22.217288],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.017068,22.236243],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.110833,22.041667],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.06333333,22.29611111],"type":"Point"},"properties":{"nombre":"Independencia","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.025833,22.172222],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.094722,22.162778],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.04194444,22.28722222],"type":"Point"},"properties":{"nombre":"Niño Artillero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.95916667,22.03722222],"type":"Point"},"properties":{"nombre":"Martires De La Revolucion","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.061667,22.123889],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.010556,22.110278],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.091667,22.082222],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.68388889,21.86055556],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.7025,21.87416667],"type":"Point"},"properties":{"nombre":"Juventino Rosas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.69611111,21.96194444],"type":"Point"},"properties":{"nombre":"Felipe Carrillo Puerto","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.72166667,21.805],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.76055556,21.82777778],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.257778,22.346667],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.27611111,22.36111111],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.25694444,22.38722222],"type":"Point"},"properties":{"nombre":"Esteban S Castorena","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.38611111,21.92194444],"type":"Point"},"properties":{"nombre":"Enrique M Del Valle","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.27305556,21.98027778],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.32694444,21.99777778],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.415,21.90194444],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.26666667,22.0925],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.29583333,22.13638889],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.3375,22.11972222],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.3075,22.24611111],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.36944444,22.26111111],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.25083333,22.28583333],"type":"Point"},"properties":{"nombre":"Edmundo Games Orozco","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.33388889,22.25138889],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.23361111,22.34861111],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.48305556,22.14944444],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.47083333,22.16083333],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.24861111,22.26111111],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.23833333,22.28722222],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.16777778,22.315],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.191389,22.2975],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.998244,21.894794],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.99611111,21.99888889],"type":"Point"},"properties":{"nombre":"German Espinosa","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.003056,22.022222],"type":"Point"},"properties":{"nombre":"Lic Jaime Torres Bodet","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.95222222,21.96444444],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.02194444,21.935],"type":"Point"},"properties":{"nombre":"Rafael Quevedo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.30027778,22.03527778],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.25805556,22.035],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.24333333,22.00222222],"type":"Point"},"properties":{"nombre":"Jose Nuñez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.5589,28.9453],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.5589,28.9453],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 1","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.3814,31.2758],"type":"Point"},"properties":{"nombre":"13 De Diciembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.5784,32.0994],"type":"Point"},"properties":{"nombre":"Secundaria General Num 40","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.2078,31.0733],"type":"Point"},"properties":{"nombre":"James S Yglesias","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.1275,30.9236],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.014022,28.004583],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.0092,28.004553],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 92","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.8933,31.6114],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.8933,31.6114],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 8","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.7094,30.0722],"type":"Point"},"properties":{"nombre":"Maestro Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.6258,32.0761],"type":"Point"},"properties":{"nombre":"El Porvenir (Guadalupe)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.633097,32.072303],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 11","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.001772,28.281653],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.998783,28.285058],"type":"Point"},"properties":{"nombre":"Francisco Villa Num 91","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.724811,31.389347],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 14 Francisco Pelayo Guzman","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.7207,31.4016],"type":"Point"},"properties":{"nombre":"Ing Eligio Esquivel Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.4375,31.6225],"type":"Point"},"properties":{"nombre":"Mtro Daniel Delgadillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.9614,30.6256],"type":"Point"},"properties":{"nombre":"General Leandro Valle","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.206594,31.915822],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 44","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.7356,30.0425],"type":"Point"},"properties":{"nombre":"Padre Salvatierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.514864,31.673247],"type":"Point"},"properties":{"nombre":"Secundaria Num 112","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.915836,30.506528],"type":"Point"},"properties":{"nombre":"Secundaria Num 114 Luis Rodriguez Aviña","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.1931,31.0939],"type":"Point"},"properties":{"nombre":"27 De Enero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.575,32.0792],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.005275,30.700956],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 49","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.4214,31.5833],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.9253,32.5617],"type":"Point"},"properties":{"nombre":"Prof Manuel Ramos Reyes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.92666667,32.56166667],"type":"Point"},"properties":{"nombre":"Francisco Santana Peralta Num 65","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.2294,32.5492],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0044,32.485599],"type":"Point"},"properties":{"nombre":"Prof Gregorio Torres Quintero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.9608,32.4958],"type":"Point"},"properties":{"nombre":"Chiapas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.2381,32.4861],"type":"Point"},"properties":{"nombre":"General Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.1017,32.4244],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0369,32.4931],"type":"Point"},"properties":{"nombre":"Prof Guilebaldo Zavala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.25166667,32.24916667],"type":"Point"},"properties":{"nombre":"Escuela Secundaria General Num 7","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.8647,32.545299],"type":"Point"},"properties":{"nombre":"Prof Erasmo Perez Y Perez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.2194,32.4225],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.8542,32.5278],"type":"Point"},"properties":{"nombre":"Prof Miguel Angel Casillas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0631,32.501399],"type":"Point"},"properties":{"nombre":"Jiquilpan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0186,32.6058],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.9761,32.5167],"type":"Point"},"properties":{"nombre":"Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0925,32.604999],"type":"Point"},"properties":{"nombre":"Joaquin Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0825,32.4303],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0314,32.2194],"type":"Point"},"properties":{"nombre":"Manuel Ramos Reyes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.1911,32.551699],"type":"Point"},"properties":{"nombre":"Prof Enrique Corona","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.9842,32.5947],"type":"Point"},"properties":{"nombre":"Prof Manuel Salas Quintal","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.3292,32.327199],"type":"Point"},"properties":{"nombre":"Guillermo Prieto","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.7975,32.6456],"type":"Point"},"properties":{"nombre":"Republica Mexicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.13722222,32.55138889],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Num 26","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.085,32.4675],"type":"Point"},"properties":{"nombre":"Lic Andres Quintana Roo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.08,32.46833333],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas Num 49","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.1125,32.4458],"type":"Point"},"properties":{"nombre":"Tlaxcala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.9194,32.6608],"type":"Point"},"properties":{"nombre":"Merida","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.1275,32.509999],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.8186,32.6222],"type":"Point"},"properties":{"nombre":"General Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0622,32.6242],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.3725,32.441899],"type":"Point"},"properties":{"nombre":"Poeta J Jesus Sanson Flores","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.1283,32.603299],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0681,32.4675],"type":"Point"},"properties":{"nombre":"Eufracio Santana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.52472222,32.53916667],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 42","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.8892,32.497799],"type":"Point"},"properties":{"nombre":"Insurgente Jose Antonio Torres","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.98361111,32.02444444],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 2 Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0286,32.5506],"type":"Point"},"properties":{"nombre":"Tehuantepec","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.07583333,32.39833333],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica 4","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-115.0781,32.3958],"type":"Point"},"properties":{"nombre":"Alfredo E Uruchurtu","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.343639,32.533444],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.382472,32.458889],"type":"Point"},"properties":{"nombre":"Generacion 2000","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.406222,32.538972],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 72","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-116.532639,32.296917],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.1989,25.9986],"type":"Point"},"properties":{"nombre":"General Juan Dominguez Cota","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.198623,26.00247],"type":"Point"},"properties":{"nombre":"Etv 17 - 15 De Mayo De 1915","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.0753,26.1847],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-111.9197,25.4894],"type":"Point"},"properties":{"nombre":"Estado De Queretaro","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-111.920846,25.491914],"type":"Point"},"properties":{"nombre":"Etv 15 - Juan Dominguez Cota","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-111.843901,25.398581],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-111.340524,26.003609],"type":"Point"},"properties":{"nombre":"Juan Felipe Lagos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-111.640013,25.336914],"type":"Point"},"properties":{"nombre":"Etv 18 - 13 De Octubre De 1994","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-111.6392,25.3364],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.4778,26.2575],"type":"Point"},"properties":{"nombre":"Republica De Colombia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.479456,26.257192],"type":"Point"},"properties":{"nombre":"Etv 33 - Federico Aguilar Murillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-114.2944,27.1389],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.7125,26.7911],"type":"Point"},"properties":{"nombre":"Progreso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.731667,26.800556],"type":"Point"},"properties":{"nombre":"Telesecundaria Num52","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.448066,27.655803],"type":"Point"},"properties":{"nombre":"Paralelo 28","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.223056,27.351389],"type":"Point"},"properties":{"nombre":"Escuela Primaria Para Niños Migrantes Num 22","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.5733,26.7125],"type":"Point"},"properties":{"nombre":"Estado De Michoacan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.140289,26.818303],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 35","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.894444,27.282222],"type":"Point"},"properties":{"nombre":"C.S. San Ignacio","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.8958,27.2819],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 12","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.894722,27.2825],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.894722,27.2825],"type":"Point"},"properties":{"nombre":"Santos Degollado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.2219,27.2214],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 45","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.22279,27.222748],"type":"Point"},"properties":{"nombre":"Estado De Sonora","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-112.7075,27.3633],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.5464,27.5731],"type":"Point"},"properties":{"nombre":"Curso Comunitario De Educacion Primaria Para Ninos Migrantes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.7839,27.8839],"type":"Point"},"properties":{"nombre":"Estado 30","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-113.783342,27.883859],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 24","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-110.265291,23.929137],"type":"Point"},"properties":{"nombre":"Etv 8 - Octavio Paz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-111.095568,24.461914],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.705,23.681389],"type":"Point"},"properties":{"nombre":"C.S. Los Barriles","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-110.168333,23.364167],"type":"Point"},"properties":{"nombre":"C.S. El Pescadero","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.712791,23.764692],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.712791,23.764692],"type":"Point"},"properties":{"nombre":"Etv 2 - Siglo Xxi","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.936958,23.968303],"type":"Point"},"properties":{"nombre":"Constanza Diaz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.936958,23.968303],"type":"Point"},"properties":{"nombre":"Est Num 8 Ventura Moyron Ojeda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.844167,23.737778],"type":"Point"},"properties":{"nombre":"C.S. San Bartolo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-111.087235,24.594692],"type":"Point"},"properties":{"nombre":"Prof Carlos A Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.9506,23.9725],"type":"Point"},"properties":{"nombre":"Alfredo V Bonfil","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.994167,24.080278],"type":"Point"},"properties":{"nombre":"C.S.. El Sargento","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-110.280013,24.023581],"type":"Point"},"properties":{"nombre":"Etv 40 - Elvira Castillo Marron","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-110.278889,24.021944],"type":"Point"},"properties":{"nombre":"C.S. Calafia","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.688902,23.139692],"type":"Point"},"properties":{"nombre":"Estado De Yucatan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-109.6772,23.5403],"type":"Point"},"properties":{"nombre":"15 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-90.218889,20.366389],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.239722,20.398333],"type":"Point"},"properties":{"nombre":"Centro De Salud Santa Cruz Ex-Hacienda","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.356667,19.920278],"type":"Point"},"properties":{"nombre":"Gabriel Ramos Millan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.336667,19.653333],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.350278,19.729167],"type":"Point"},"properties":{"nombre":"Don Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.223056,19.766111],"type":"Point"},"properties":{"nombre":"Centro De Salud Tikinmul","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.929167,18.776667],"type":"Point"},"properties":{"nombre":"General Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.9667,18.8631],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.002778,18.632222],"type":"Point"},"properties":{"nombre":"Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.0325,18.598611],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.049444,18.633611],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.746389,18.8125],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.673333,19.480278],"type":"Point"},"properties":{"nombre":"La Joya","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.5056,19.1647],"type":"Point"},"properties":{"nombre":"Kanasayab Ii","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.3875,18.621111],"type":"Point"},"properties":{"nombre":"Manuel Castilla Brito","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.423333,18.601111],"type":"Point"},"properties":{"nombre":"Don Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.1377,18.6216],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 11","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.3569,17.8725],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.355,17.9711],"type":"Point"},"properties":{"nombre":"Doce De Octubre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.480402,18.330085],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 131","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.4461,18.3164],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 21","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.3794,18.2614],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.3783,18.2599],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 119","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.4534,18.2308],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 103","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.367583,18.803033],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 133","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.2997,18.6103],"type":"Point"},"properties":{"nombre":"Manuel C Garcia Rejon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.2997,18.6103],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 43","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.4319,18.4497],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.4031,18.0586],"type":"Point"},"properties":{"nombre":"Juventino Rosas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.14,18.620556],"type":"Point"},"properties":{"nombre":"Niños Heroes De Chapultepec","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.1722,17.8881],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.164477,18.822485],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 148","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.2831,18.8106],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.290603,18.807956],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 138","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.31,18.2397],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-89.310225,18.240494],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 139","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.165556,18.636389],"type":"Point"},"properties":{"nombre":"Sebastian Lerdo De Tejada","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.166386,18.637467],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 144","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.061111,18.224167],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.813889,17.888889],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.812778,17.917222],"type":"Point"},"properties":{"nombre":"Leyes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-90.9975,18.189722],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-101.426389,27.181944],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.969722,29.296111],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.918333,28.309722],"type":"Point"},"properties":{"nombre":"Jose Garza Montalvo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.918333,28.309722],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.721944,25.228056],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.721944,25.228056],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.678611,25.350833],"type":"Point"},"properties":{"nombre":"Carmen Josefina Valdes Cepeda","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.678611,25.350833],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.765,25.2775],"type":"Point"},"properties":{"nombre":"Escuadron 201","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.6725,25.346667],"type":"Point"},"properties":{"nombre":"General Mariano Escobedo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.825278,25.211389],"type":"Point"},"properties":{"nombre":"Raul Madero Gonzalez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.588056,25.393333],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico Los Lirios","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.588056,25.393333],"type":"Point"},"properties":{"nombre":"General Abraham Cepeda","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.579444,25.2725],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.579444,25.2725],"type":"Point"},"properties":{"nombre":"Vicente Davila Aguirre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.635,25.421111],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico El Tunal","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.635,25.421111],"type":"Point"},"properties":{"nombre":"El Ejido","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.635,25.421111],"type":"Point"},"properties":{"nombre":"Othon Salazar Ramirez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.663889,26.840278],"type":"Point"},"properties":{"nombre":"Roberto Jorge Guajardo Santos","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.6117,26.7539],"type":"Point"},"properties":{"nombre":"Soledad","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.225,27.24],"type":"Point"},"properties":{"nombre":"Fernando Peraldi Carranza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.225,27.24],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.302778,25.932222],"type":"Point"},"properties":{"nombre":"Jose Doroteo Arango Arambula","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.302778,25.932222],"type":"Point"},"properties":{"nombre":"Rural De 02 Nucleos Basicos Batopilas","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.302778,25.932222],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.315833,25.813889],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2017,25.9275],"type":"Point"},"properties":{"nombre":"El Cantabro","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.201667,25.9275],"type":"Point"},"properties":{"nombre":"Seis De Octubre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2975,25.879167],"type":"Point"},"properties":{"nombre":"Antonio Cardenas R","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2975,25.879167],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico Coruña","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.246667,25.922778],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.219722,25.985556],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.219722,25.985556],"type":"Point"},"properties":{"nombre":"Federico Garcia Lorca","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.31,25.836944],"type":"Point"},"properties":{"nombre":"Martires De Rio Blanco","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.278333,25.845833],"type":"Point"},"properties":{"nombre":"Jose Santos Valdes","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.296944,25.839167],"type":"Point"},"properties":{"nombre":"Constitucion De 1857","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.294167,25.718333],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.264722,25.901667],"type":"Point"},"properties":{"nombre":"Rural De 02 Nucleos Basicos La Pinta","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.264722,25.901667],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.264722,25.901667],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.325278,25.774444],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.221111,25.806111],"type":"Point"},"properties":{"nombre":"Cuauhtemoc Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2175,25.873889],"type":"Point"},"properties":{"nombre":"Rural De 01 Nuc. Bas. San José De La Niña","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2175,25.873889],"type":"Point"},"properties":{"nombre":"Heroes De Chapultepec","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2175,25.873889],"type":"Point"},"properties":{"nombre":"Jose Revueltas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.229722,25.943333],"type":"Point"},"properties":{"nombre":"Veinte De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2297,25.9433],"type":"Point"},"properties":{"nombre":"San Salvador De Arriba","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.244167,25.867778],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.163056,25.975278],"type":"Point"},"properties":{"nombre":"Niños Heroes De Chapultepec","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.4081,25.3808],"type":"Point"},"properties":{"nombre":"Guelatao","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.409722,25.379722],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.646111,25.355833],"type":"Point"},"properties":{"nombre":"Ley Agraria","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.646111,25.355833],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.761944,25.650278],"type":"Point"},"properties":{"nombre":"Jose Maria Velasco","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.761944,25.650278],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.4261,25.5689],"type":"Point"},"properties":{"nombre":"San Antonio Del Jaral (San Ant","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.376944,28.308333],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico Guerrero","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.376944,28.308333],"type":"Point"},"properties":{"nombre":"Profa Estela V Barragan De La Fuente","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.874167,27.791111],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.675,29.069722],"type":"Point"},"properties":{"nombre":"Rural De O1 Nucleo Basico Jimenez","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.825,29.226111],"type":"Point"},"properties":{"nombre":"1 De Mayo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.825,29.226111],"type":"Point"},"properties":{"nombre":"Melchor Muzquiz","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.9475,29.124444],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.036389,29.0425],"type":"Point"},"properties":{"nombre":"Manuel Acuña","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.036389,29.0425],"type":"Point"},"properties":{"nombre":"Bicentenario De La Independencia","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.7775,28.985833],"type":"Point"},"properties":{"nombre":"Presidente Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.7775,28.985833],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.795278,29.185556],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.803056,29.242778],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.835369,29.257733],"type":"Point"},"properties":{"nombre":"Praxedis G Guerrero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.726111,27.605556],"type":"Point"},"properties":{"nombre":"Lic Elsa Hernandez De De Las Fuentes","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.793889,27.049444],"type":"Point"},"properties":{"nombre":"Rural De 02 Nucleos Basicos Lamadrid","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.793889,27.049444],"type":"Point"},"properties":{"nombre":"Ramon Mendez Gonzalez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.260278,25.654722],"type":"Point"},"properties":{"nombre":"Dieciocho De Noviembre De 1940","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.159444,25.426111],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.232222,25.586389],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3025,25.745833],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.276667,25.570278],"type":"Point"},"properties":{"nombre":"Heroes De Chapultepec","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.340833,25.696111],"type":"Point"},"properties":{"nombre":"Ciro Eduardo Gonzalez Blackaller","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.340833,25.696111],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.348333,25.674722],"type":"Point"},"properties":{"nombre":"Escuadron 201","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.280833,25.566944],"type":"Point"},"properties":{"nombre":"Progreso Lagunero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.266944,25.641944],"type":"Point"},"properties":{"nombre":"5 De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.266944,25.641944],"type":"Point"},"properties":{"nombre":"Alfredo Flores Alatorre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.226667,25.748056],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.341111,25.683333],"type":"Point"},"properties":{"nombre":"Ilhuicamina","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.244722,25.725556],"type":"Point"},"properties":{"nombre":"Braulio E Rodriguez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.244722,25.725556],"type":"Point"},"properties":{"nombre":"U N E S C O","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.244722,25.725556],"type":"Point"},"properties":{"nombre":"Blas Godines Brito","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.304722,25.4125],"type":"Point"},"properties":{"nombre":"Evolucion","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.304722,25.4125],"type":"Point"},"properties":{"nombre":"Reparto Agrario 13 De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.307222,25.618889],"type":"Point"},"properties":{"nombre":"Ignacio Lopez Rayon","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.107222,25.453056],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.350278,25.7175],"type":"Point"},"properties":{"nombre":"Coahuila","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.350278,25.7175],"type":"Point"},"properties":{"nombre":"Escuela De Educacion Primaria Migrante","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.321111,25.679167],"type":"Point"},"properties":{"nombre":"Progreso","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.1725,25.431944],"type":"Point"},"properties":{"nombre":"Treinta De Noviembre De 1936","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.208611,25.429444],"type":"Point"},"properties":{"nombre":"Manuel Negrete","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.308333,25.708056],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.308333,25.708056],"type":"Point"},"properties":{"nombre":"Salvador Alvarado Rubio","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.276111,25.431944],"type":"Point"},"properties":{"nombre":"Rur.De 02 Nucleos Bas. Santo Niño Aguanaval","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.276111,25.431944],"type":"Point"},"properties":{"nombre":"Evolucion","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.275278,25.661667],"type":"Point"},"properties":{"nombre":"Rural De 02 Nucleos Basicos Solima","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.275278,25.661667],"type":"Point"},"properties":{"nombre":"16 De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.329444,25.711667],"type":"Point"},"properties":{"nombre":"Fidel Ramirez Maldonado","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.290278,25.521944],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.259444,25.584167],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.259444,25.584167],"type":"Point"},"properties":{"nombre":"Jose Santos Valdes Garcia","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.201667,25.456667],"type":"Point"},"properties":{"nombre":"Tenochtitlan","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.201667,25.456667],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.328333,25.470833],"type":"Point"},"properties":{"nombre":"Rafael Ramirez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.254793,25.652217],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.946667,28.355556],"type":"Point"},"properties":{"nombre":"Carlos Espinosa Romero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.391111,27.816944],"type":"Point"},"properties":{"nombre":"Veinte De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.391111,27.816944],"type":"Point"},"properties":{"nombre":"Esperanza Castro Rodriguez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.339815,27.647207],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.665556,27.044722],"type":"Point"},"properties":{"nombre":"Niño Proletario","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.366111,27.040833],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.366667,27.030556],"type":"Point"},"properties":{"nombre":"Dieciseis De Septiembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.366667,27.030556],"type":"Point"},"properties":{"nombre":"Raul Bailleres Chavez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.063889,25.406944],"type":"Point"},"properties":{"nombre":"Escuadron 201","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.4903,25.0625],"type":"Point"},"properties":{"nombre":"Garambullo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.839722,25.335],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.839722,25.335],"type":"Point"},"properties":{"nombre":"Ignacio Cepeda Davila","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.881389,25.658056],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.170278,25.595],"type":"Point"},"properties":{"nombre":"El Progreso","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.0819,25.4236],"type":"Point"},"properties":{"nombre":"El Seis De Enero","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.081944,25.423611],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.1119,25.6442],"type":"Point"},"properties":{"nombre":"Veintiocho De Agosto","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.111944,25.644167],"type":"Point"},"properties":{"nombre":"Nancy Cardenas Martinez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.111944,25.644167],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.6275,28.890556],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.627309,28.87107],"type":"Point"},"properties":{"nombre":"David G Berlanga","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.985833,27.428611],"type":"Point"},"properties":{"nombre":"Secundaria Del Estado Candor Guajardo H","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.295833,27.443889],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.295833,27.443889],"type":"Point"},"properties":{"nombre":"Octavio Paz","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3725,27.587778],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3725,27.587778],"type":"Point"},"properties":{"nombre":"Mexico","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3725,27.587778],"type":"Point"},"properties":{"nombre":"Porfirio Cadena Riojas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.403056,25.6975],"type":"Point"},"properties":{"nombre":"Santiago Rodriguez Del Bosque","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.403056,25.6975],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.933611,25.9475],"type":"Point"},"properties":{"nombre":"Rural De 02 Nucleos Basicos Paredon","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.724167,27.003889],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.0933,25.1931],"type":"Point"},"properties":{"nombre":"Agua Nueva","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.093333,25.193056],"type":"Point"},"properties":{"nombre":"Salvador Garcia Hernandez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.093333,25.193056],"type":"Point"},"properties":{"nombre":"Dionisio Garcia Fuentes","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.093333,25.193056],"type":"Point"},"properties":{"nombre":"General Andres S Viesca","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.2808,25.2697],"type":"Point"},"properties":{"nombre":"Chapula","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.280833,25.269722],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.283056,25.288889],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico Derramadero","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.283056,25.288889],"type":"Point"},"properties":{"nombre":"Vicente Valdes Valdes","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.283056,25.288889],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.8561,25.11],"type":"Point"},"properties":{"nombre":"Hedionda","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.2042,24.8903],"type":"Point"},"properties":{"nombre":"Presa De Los Muchachos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.204167,24.890278],"type":"Point"},"properties":{"nombre":"Felix U Gomez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.176667,25.241944],"type":"Point"},"properties":{"nombre":"Progreso","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.218333,25.253333],"type":"Point"},"properties":{"nombre":"Rural De 01 Nuc. Basico San Juan De La Vaqueria","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.218333,25.253333],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.312778,25.301667],"type":"Point"},"properties":{"nombre":"Renovacion","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.253056,27.946944],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.427778,27.984444],"type":"Point"},"properties":{"nombre":"Rural De 01 Núcleo Básico Santa Maria","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.427778,27.984444],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.176667,25.855],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico Albia","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.176667,25.855],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.194722,25.821944],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.013333,25.776667],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.101667,25.841389],"type":"Point"},"properties":{"nombre":"Revolucion","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.200556,25.846111],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.942778,25.695278],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.942778,25.695278],"type":"Point"},"properties":{"nombre":"Pedro V Rodriguez Triana","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.050278,25.707778],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.975,25.701667],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.185833,25.763056],"type":"Point"},"properties":{"nombre":"Jesus Flores Magon","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.844722,25.672222],"type":"Point"},"properties":{"nombre":"Pablo L Sidar","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.844722,25.672222],"type":"Point"},"properties":{"nombre":"Lucio Blanco","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.944167,25.733056],"type":"Point"},"properties":{"nombre":"Jaime Nuno","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.944167,25.733056],"type":"Point"},"properties":{"nombre":"Francisco J Mujica","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.168056,25.818889],"type":"Point"},"properties":{"nombre":"Alma Campesina","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.110278,25.715833],"type":"Point"},"properties":{"nombre":"Diecinueve De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.129167,25.8275],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico El Retiro","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.129167,25.8275],"type":"Point"},"properties":{"nombre":"Libertad","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.051667,25.770833],"type":"Point"},"properties":{"nombre":"Martires De La Democracia","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.001111,25.708056],"type":"Point"},"properties":{"nombre":"Veintisiete De Mayo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.001111,25.708056],"type":"Point"},"properties":{"nombre":"Pedro V Rodriguez Triana","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.977222,25.676389],"type":"Point"},"properties":{"nombre":"Heroes De La Revolucion","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.158889,25.751111],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.089167,25.735833],"type":"Point"},"properties":{"nombre":"Rural De 02 Nucleos Basicos San Ignacio","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.089167,25.735833],"type":"Point"},"properties":{"nombre":"Gran Tenochtitlan","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.089167,25.735833],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.153333,25.721389],"type":"Point"},"properties":{"nombre":"Trece De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.153333,25.721389],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.008889,25.666944],"type":"Point"},"properties":{"nombre":"Doce De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.950278,25.698056],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.074722,25.728611],"type":"Point"},"properties":{"nombre":"Pipila","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.009722,25.659444],"type":"Point"},"properties":{"nombre":"Nueve De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.1333,25.88],"type":"Point"},"properties":{"nombre":"San Rafael De Arriba","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.133333,25.88],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.084167,25.71],"type":"Point"},"properties":{"nombre":"Martires De Chicago","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.029444,25.692222],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.115833,25.699167],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.115833,25.699167],"type":"Point"},"properties":{"nombre":"10 De Noviembre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.198333,25.736389],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.152222,25.940556],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico Sofia De Arriba","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.152222,25.940556],"type":"Point"},"properties":{"nombre":"Martires De Coahuila","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.152222,25.940556],"type":"Point"},"properties":{"nombre":"Jorge Isaacs","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.963333,25.726111],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.068611,25.683611],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.068611,25.683611],"type":"Point"},"properties":{"nombre":"Juan Rulfo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.200278,25.8825],"type":"Point"},"properties":{"nombre":"Juventud Campesina","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.151111,25.789167],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.038611,25.724444],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.038611,25.724444],"type":"Point"},"properties":{"nombre":"Miguel Gutierrez Arce","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.176389,25.865],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.176389,25.865],"type":"Point"},"properties":{"nombre":"Escuela De Educacion Primaria Migrante","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.176389,25.865],"type":"Point"},"properties":{"nombre":"Raul Madero Gonzalez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.221389,25.7575],"type":"Point"},"properties":{"nombre":"Apolonio M Aviles","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.662222,27.288333],"type":"Point"},"properties":{"nombre":"Narciso Bassols","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2461,24.9989],"type":"Point"},"properties":{"nombre":"Barreal De Guadalupe","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.330556,25.102222],"type":"Point"},"properties":{"nombre":"Plan De Guadalupe","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.330556,25.102222],"type":"Point"},"properties":{"nombre":"Ignacio Luis Vallarta Ogazon","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.442778,25.217222],"type":"Point"},"properties":{"nombre":"U.A.S. Jalisco","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.442778,25.217222],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.354167,25.119722],"type":"Point"},"properties":{"nombre":"Anahuac","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.500556,25.289722],"type":"Point"},"properties":{"nombre":"Libertad","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.500556,25.289722],"type":"Point"},"properties":{"nombre":"Victor Jara Martinez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.326667,25.503056],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.359167,25.599722],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.806667,25.3425],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico Viesca","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.288333,25.33],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.288333,25.33],"type":"Point"},"properties":{"nombre":"Jesus Reyes Heroles","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.1019,25.4228],"type":"Point"},"properties":{"nombre":"Buenavista","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.943889,25.489722],"type":"Point"},"properties":{"nombre":"Justo Castro","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.943889,25.489722],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.418611,25.391389],"type":"Point"},"properties":{"nombre":"Constituyentes Del 57","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.418611,25.391389],"type":"Point"},"properties":{"nombre":"Rosario Castellanos","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.0642,25.4831],"type":"Point"},"properties":{"nombre":"Gabino Vázquez (San Luis)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.064167,25.483056],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez Lopez","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.200278,25.3925],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.200278,25.3925],"type":"Point"},"properties":{"nombre":"Jesus Gonzalez Herrera","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2003,25.3925],"type":"Point"},"properties":{"nombre":"Gilita","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.251667,25.299167],"type":"Point"},"properties":{"nombre":"Pedro V Rodriguez Triana","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.143056,25.361389],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.267222,25.399167],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.090278,25.474722],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.233333,25.412778],"type":"Point"},"properties":{"nombre":"Profesor Gabriel Calzada","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.337222,25.367222],"type":"Point"},"properties":{"nombre":"Braulio Fernandez Aguirre","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.940278,24.779722],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.940278,24.779722],"type":"Point"},"properties":{"nombre":"Manuel Acuña","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.203056,25.276667],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.236944,25.291111],"type":"Point"},"properties":{"nombre":"Ignacio Jose Allende","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2369,25.2911],"type":"Point"},"properties":{"nombre":"El Esfuerzo Sector Ocho (El Puerto)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4775,25.3275],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico La Ventana","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4775,25.3275],"type":"Point"},"properties":{"nombre":"Ocho De Abril De 1926","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4775,25.3275],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.897222,25.426667],"type":"Point"},"properties":{"nombre":"Martires De La Revolucion","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.081667,28.756667],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.081667,28.756667],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":1,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.348889,29.2225],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico Santa Eulalia","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0695,18.92034],"type":"Point"},"properties":{"nombre":"Rafaela Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.06598,18.9202],"type":"Point"},"properties":{"nombre":"Miguel Alvarez Del Toro","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.06328,18.98206],"type":"Point"},"properties":{"nombre":"Raza De Bronce","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.060872,18.979368],"type":"Point"},"properties":{"nombre":"J Felipe Valle Medina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.00274,19.019309],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.002933,19.020414],"type":"Point"},"properties":{"nombre":"Leonardo Jaramillo Silva","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0052,19.01886],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.57889,19.18054],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.55623,19.18869],"type":"Point"},"properties":{"nombre":"Esteban Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.52523,19.20087],"type":"Point"},"properties":{"nombre":"Benjamin Gutierrez Ruiz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.52847,18.97553],"type":"Point"},"properties":{"nombre":"Ramon G Bonfil","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.725,19.116389],"type":"Point"},"properties":{"nombre":"Centro De Salud Las Guasimas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.54988,19.118907],"type":"Point"},"properties":{"nombre":"Balbino Davalos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.62053,19.09656],"type":"Point"},"properties":{"nombre":"Ramon R De La Vega","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.584722,19.041389],"type":"Point"},"properties":{"nombre":"Centro De Salud Tinajas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.582506,19.044464],"type":"Point"},"properties":{"nombre":"Monico Chavira","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.525556,19.160556],"type":"Point"},"properties":{"nombre":"Centro De Salud Trapichillos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.52592,19.16066],"type":"Point"},"properties":{"nombre":"Maria Encarnacion Galindo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.593065,19.061934],"type":"Point"},"properties":{"nombre":"Maria Ordoñez Ibañez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.71568,19.45417],"type":"Point"},"properties":{"nombre":"Primero De Diciembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.751944,19.403889],"type":"Point"},"properties":{"nombre":"Centro De Salud Colomos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.75475,19.40437],"type":"Point"},"properties":{"nombre":"Basilio Vadillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.884444,19.424167],"type":"Point"},"properties":{"nombre":"Centro De Salud Lagunitas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.79891,19.41958],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.74978,19.41679],"type":"Point"},"properties":{"nombre":"Ignacio Torres","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.70617,19.39187],"type":"Point"},"properties":{"nombre":"Año De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.934444,19.215],"type":"Point"},"properties":{"nombre":"Centro De Salud Agua Zarca","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.82024,19.09821],"type":"Point"},"properties":{"nombre":"Estefania Diaz Chavez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.957749,19.23501],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.98578,19.25225],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.98524,19.25249],"type":"Point"},"properties":{"nombre":"Mercedes Ballesteros Silva","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.620833,19.401389],"type":"Point"},"properties":{"nombre":"Centro De Salud Montitlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.62128,19.40203],"type":"Point"},"properties":{"nombre":"Alberto Larios Villalpando","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.75695,19.00422],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.63231,18.88563],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.63216,18.88881],"type":"Point"},"properties":{"nombre":"Crispin Rios Rivera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.64384,18.86396],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.70515,19.01277],"type":"Point"},"properties":{"nombre":"Juan Hernandez Espinosa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.71231,19.04973],"type":"Point"},"properties":{"nombre":"El Pipila","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.696111,18.979444],"type":"Point"},"properties":{"nombre":"Centro De Salud Zinacamitlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.14935,19.2567],"type":"Point"},"properties":{"nombre":"Veinte De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.43871,19.14104],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.68042,19.19099],"type":"Point"},"properties":{"nombre":"Leonardo B Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.681,19.18991],"type":"Point"},"properties":{"nombre":"Florentino Vazquez Lara Centeno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.391389,19.230278],"type":"Point"},"properties":{"nombre":"Centro De Salud Don Tomas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.28955,19.27226],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.28539,19.27042],"type":"Point"},"properties":{"nombre":"Rafael Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.33663,19.22457],"type":"Point"},"properties":{"nombre":"Patria Nueva","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.36245,19.15722],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.26533,19.1618],"type":"Point"},"properties":{"nombre":"Alvaro Obregon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.26719,19.1605],"type":"Point"},"properties":{"nombre":"Miguel Hernandez Nuñez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.16011,19.01321],"type":"Point"},"properties":{"nombre":"Plan De Iguala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.159,19.01601],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.09652,19.01306],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.173889,19.179167],"type":"Point"},"properties":{"nombre":"Centro De Salud Veladero De Camotlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.174,19.1794],"type":"Point"},"properties":{"nombre":"Carlos Sevilla Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.17669,19.17857],"type":"Point"},"properties":{"nombre":"Isidro Granados Polanco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.33686,19.26076],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.10911,19.01096],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.11875,19.0195],"type":"Point"},"properties":{"nombre":"Miguel De La Mora Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0475,19.477778],"type":"Point"},"properties":{"nombre":"Centro De Salud La Loma","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.11992,19.32574],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0875,19.313611],"type":"Point"},"properties":{"nombre":"Centro De Salud Potrero Grande","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.023333,19.425556],"type":"Point"},"properties":{"nombre":"Centro De Salud San Antonio","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.02282,19.42653],"type":"Point"},"properties":{"nombre":"J Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.98938,19.4437],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.95,19.444722],"type":"Point"},"properties":{"nombre":"Centro De Salud El Terrero","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.95045,19.44449],"type":"Point"},"properties":{"nombre":"Reivindicacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.94559,19.44345],"type":"Point"},"properties":{"nombre":"Fructuoso Ayala Sanchez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.153333,19.301944],"type":"Point"},"properties":{"nombre":"Centro De Salud Paticajo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.110556,19.348611],"type":"Point"},"properties":{"nombre":"Centro De Salud El Platanar","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.633611,18.813611],"type":"Point"},"properties":{"nombre":"Centro De Salud Callejones","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.633825,18.814258],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.63789,18.81581],"type":"Point"},"properties":{"nombre":"Leticia Montejano Peregrina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.736944,18.865556],"type":"Point"},"properties":{"nombre":"Centro De Salud Chanchopa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.73695,18.86584],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7361,18.86746],"type":"Point"},"properties":{"nombre":"Gabino Barreda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.871111,19.085],"type":"Point"},"properties":{"nombre":"Centro De Salud Madrid","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.701389,18.822222],"type":"Point"},"properties":{"nombre":"Centro De Salud San Miguel Del Ojo De A.","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.70056,18.82465],"type":"Point"},"properties":{"nombre":"Juan Aldama","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.70284,18.818],"type":"Point"},"properties":{"nombre":"Susana Ortiz Silva","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.89009,19.28896],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.830556,19.308056],"type":"Point"},"properties":{"nombre":"Centro De Salud Juluapan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.934444,19.315833],"type":"Point"},"properties":{"nombre":"Centro De Salud Mixcoate","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.65587,19.40829],"type":"Point"},"properties":{"nombre":"Ruben Dario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9225,19.319722],"type":"Point"},"properties":{"nombre":"Centro De Salud Pueblo Nuevo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.92296,19.31885],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.67136,19.40304],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.66947,19.39932],"type":"Point"},"properties":{"nombre":"Alfonso Michel","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-92.674167,15.339444],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.691667,15.35],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6581,15.3911],"type":"Point"},"properties":{"nombre":"Los Cacaos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.713372,15.338457],"type":"Point"},"properties":{"nombre":"Manuel Acuña","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.741194,15.390321],"type":"Point"},"properties":{"nombre":"Cinco De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7406,15.3514],"type":"Point"},"properties":{"nombre":"Hidalgo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.692736,15.464042],"type":"Point"},"properties":{"nombre":"Estado De Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7061,15.4086],"type":"Point"},"properties":{"nombre":"Nueva Libertad","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.75,15.436667],"type":"Point"},"properties":{"nombre":"Telesecundaria 1247 Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.726972,15.407757],"type":"Point"},"properties":{"nombre":"Articulo Tercero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8925,16.6067],"type":"Point"},"properties":{"nombre":"Adolfo López Mateos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.818889,16.485],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.871389,16.485278],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.690975,15.243391],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6906,15.1903],"type":"Point"},"properties":{"nombre":"Luis Espinoza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.70725,15.28194],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.723722,15.279077],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7931,15.2781],"type":"Point"},"properties":{"nombre":"Veinte De Abril","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.786756,15.33035],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7892,16.7083],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.033333,16.8175],"type":"Point"},"properties":{"nombre":"Joaquin Miguel Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6228,16.5892],"type":"Point"},"properties":{"nombre":"Luis Espinoza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7181,16.546399],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8175,16.67],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.725,16.6081],"type":"Point"},"properties":{"nombre":"Primero De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.9597,16.6156],"type":"Point"},"properties":{"nombre":"General Anaya","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.9917,16.6167],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.850833,17.314722],"type":"Point"},"properties":{"nombre":"Angel Albino Corzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.871944,17.368611],"type":"Point"},"properties":{"nombre":"Centro De Salud Microregional Patelná","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.818333,17.306944],"type":"Point"},"properties":{"nombre":"Telesecundaria 932","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.772092,17.357373],"type":"Point"},"properties":{"nombre":"Telesecundaria 1144 Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.868056,17.338056],"type":"Point"},"properties":{"nombre":"Telesecundaria 1065","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.92,17.374444],"type":"Point"},"properties":{"nombre":"Telesecundaria 1165 Joaquin Miguel Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1147,15.4361],"type":"Point"},"properties":{"nombre":"Amatenango De La Frontera","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0306,15.6],"type":"Point"},"properties":{"nombre":"General Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0592,15.6156],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.140833,15.536389],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.143333,15.415278],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.189269,15.574067],"type":"Point"},"properties":{"nombre":"Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1089,15.5094],"type":"Point"},"properties":{"nombre":"Nuevo Amatenango","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.035,15.5842],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0253,15.5981],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0156,15.6042],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.101944,15.486944],"type":"Point"},"properties":{"nombre":"Telesecundaria 1068 Gabriela Mistral","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0575,15.5478],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0117,15.6128],"type":"Point"},"properties":{"nombre":"Manuel Gutierrez Najera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0367,15.6097],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.101242,15.513636],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.658531,15.784093],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.574444,15.673333],"type":"Point"},"properties":{"nombre":"Cristobal Obregon","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.570083,15.708527],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.756667,15.84],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.817322,15.781502],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6346,15.783967],"type":"Point"},"properties":{"nombre":"Cesar Cruz Soto","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.643808,15.766354],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-94.005278,16.225],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.975833,16.288056],"type":"Point"},"properties":{"nombre":"Guadalupe Bacja","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-94.031944,16.130556],"type":"Point"},"properties":{"nombre":"Tzontealja","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.189197,15.4944],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.172011,15.526426],"type":"Point"},"properties":{"nombre":"Estado De Tabasco","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.171944,15.524722],"type":"Point"},"properties":{"nombre":"Telesecundaria 1199 Manuel Larrainzar Piñero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.162222,15.490278],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.162222,15.490278],"type":"Point"},"properties":{"nombre":"Telesecundaria 692 Madre Teresa De Calcuta","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.167222,15.454722],"type":"Point"},"properties":{"nombre":"Lic Miguel Aleman Valdez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.122222,15.533333],"type":"Point"},"properties":{"nombre":"Agustin De Iturbide","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.173392,15.497476],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.173056,15.496111],"type":"Point"},"properties":{"nombre":"Telesecundaria 636 Leyes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2472,15.5833],"type":"Point"},"properties":{"nombre":"Xmacal Ubech","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.245003,15.583483],"type":"Point"},"properties":{"nombre":"Cinco De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2451,15.585652],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica 90","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.24,15.6725],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.23865,15.670996],"type":"Point"},"properties":{"nombre":"Juventud Revolucionaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.238611,15.669167],"type":"Point"},"properties":{"nombre":"Telesecundaria 376 Vicente Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.281389,15.6475],"type":"Point"},"properties":{"nombre":"Telesecundaria 792 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.315786,15.661079],"type":"Point"},"properties":{"nombre":"Manuel Avila Camacho","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.315,15.659167],"type":"Point"},"properties":{"nombre":"Telesecundaria 086 Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.309258,15.635846],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.248611,15.634167],"type":"Point"},"properties":{"nombre":"Telesecundaria 842 Porfirio Diaz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2169,15.5894],"type":"Point"},"properties":{"nombre":"El Progreso","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.214306,15.585887],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.216389,15.586944],"type":"Point"},"properties":{"nombre":"Telesecundaria 053 Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.261917,15.59552],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.261944,15.593056],"type":"Point"},"properties":{"nombre":"Telesecundaria 377 Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2295,15.586091],"type":"Point"},"properties":{"nombre":"Fray Victor Maria Flores","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.281111,15.569167],"type":"Point"},"properties":{"nombre":"La Independencia (Bella Vista)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.345317,16.978266],"type":"Point"},"properties":{"nombre":"Mariano Abasolo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.320278,16.9575],"type":"Point"},"properties":{"nombre":"Las Maravillas","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.972778,17.097778],"type":"Point"},"properties":{"nombre":"Telesecundaria 1070","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.005278,17.122778],"type":"Point"},"properties":{"nombre":"Telesecundaria 1071","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.0267,17.0319],"type":"Point"},"properties":{"nombre":"Dr. Belisario Dominguez","horario":8,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.925833,16.968333],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.751297,17.047905],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.789167,17.019167],"type":"Point"},"properties":{"nombre":"Telesecundaria 1367 Maria Montessori","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7422,17.0033],"type":"Point"},"properties":{"nombre":"Plátanos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7592,16.9631],"type":"Point"},"properties":{"nombre":"San Cayetano","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.761667,17.029722],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7247,17.0336],"type":"Point"},"properties":{"nombre":"San Pedro Nichtalucum","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.726667,17.010556],"type":"Point"},"properties":{"nombre":"Telesecundaria 1337 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1533,15.1672],"type":"Point"},"properties":{"nombre":"Agua Caliente","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1847,15.095],"type":"Point"},"properties":{"nombre":"El Águila","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.183367,15.093972],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.183333,15.091944],"type":"Point"},"properties":{"nombre":"Telesecundaria 060 Patria Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2,15.0772],"type":"Point"},"properties":{"nombre":"Agustín De Iturbide","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.198628,15.075131],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.198333,15.074167],"type":"Point"},"properties":{"nombre":"Jacobo Pimentel Sarmiento","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.180833,15.041944],"type":"Point"},"properties":{"nombre":"Ahuacatlán (Cacahoatán)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.185697,15.112938],"type":"Point"},"properties":{"nombre":"21 De Agosto","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.154722,15.034722],"type":"Point"},"properties":{"nombre":"Faja De Oro","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1628,15.0883],"type":"Point"},"properties":{"nombre":"El Platanar","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.162089,15.085101],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.161111,15.083333],"type":"Point"},"properties":{"nombre":"Telesecundaria 488 Alberto C Culebro","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.197867,15.086149],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.208333,15.034722],"type":"Point"},"properties":{"nombre":"Salvador Urbina (Cacahoatán)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.125556,15.083056],"type":"Point"},"properties":{"nombre":"Telesecundaria 584 Agustin Melgar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.8,16.668056],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-94.001389,16.467778],"type":"Point"},"properties":{"nombre":"Rosendo Salazar","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.9375,16.9447],"type":"Point"},"properties":{"nombre":"1974 Año De Chiapas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.791944,16.603889],"type":"Point"},"properties":{"nombre":"Lázaro Cárdenas (Cintalapa)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.961667,16.593889],"type":"Point"},"properties":{"nombre":"Tehuacan","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.6717,16.8522],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-94.0342,16.7161],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.728889,16.893611],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.9069,16.6036],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.666944,16.799444],"type":"Point"},"properties":{"nombre":"Telesecundaria 1184 Samuel Leon Brindis","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.060278,17.132222],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.125556,17.101944],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.066944,17.107778],"type":"Point"},"properties":{"nombre":"Dolores Jaltenango","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.132222,17.073333],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.058681,16.161893],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.198611,16.343611],"type":"Point"},"properties":{"nombre":"Telesecundaria 410 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3097,16.5111],"type":"Point"},"properties":{"nombre":"La Floresta","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.311433,16.510121],"type":"Point"},"properties":{"nombre":"La Independencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.311267,16.511518],"type":"Point"},"properties":{"nombre":"Telesecundaria 618 Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1042,16.1578],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.104167,16.158056],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.104167,16.158056],"type":"Point"},"properties":{"nombre":"Telesecundaria 071 Tenam Puente","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.218056,16.052222],"type":"Point"},"properties":{"nombre":"24 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.218056,16.052222],"type":"Point"},"properties":{"nombre":"Telesecundaria 619 Francisco J Mujica","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.237778,16.380278],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.237778,16.380278],"type":"Point"},"properties":{"nombre":"Telesecundaria 620 Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.102761,16.391239],"type":"Point"},"properties":{"nombre":"Profr Lisandro Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.105278,16.3875],"type":"Point"},"properties":{"nombre":"Telesecundaria 1028 Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.146308,16.362647],"type":"Point"},"properties":{"nombre":"Profr Ruben Aguilar Mora","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.030556,16.281944],"type":"Point"},"properties":{"nombre":"Santo Domingo *","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.076819,16.333731],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0775,16.335278],"type":"Point"},"properties":{"nombre":"Telesecundaria 030 Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2058,16.4192],"type":"Point"},"properties":{"nombre":"Zaragoza La Montaña","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.205594,16.417649],"type":"Point"},"properties":{"nombre":"Profr Jacinto E Tellez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.205278,16.416667],"type":"Point"},"properties":{"nombre":"Telesecundaria 526 15 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.307144,16.449588],"type":"Point"},"properties":{"nombre":"Ignacio Lopez Rayon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.305,16.445833],"type":"Point"},"properties":{"nombre":"Telesecundaria 811 Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.247778,16.475278],"type":"Point"},"properties":{"nombre":"Natiltón","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.247778,16.475278],"type":"Point"},"properties":{"nombre":"El Pensador Mexicano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2589,16.2997],"type":"Point"},"properties":{"nombre":"Yaltzi Tres Lagunas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.258889,16.299722],"type":"Point"},"properties":{"nombre":"Telesecundaria 667 Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2589,16.2997],"type":"Point"},"properties":{"nombre":"El Niño Artillero","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.818056,16.043056],"type":"Point"},"properties":{"nombre":"Atoyac Naylum","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7775,15.896111],"type":"Point"},"properties":{"nombre":"Centro De Salud Microregional Yulubmax","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.895,16.0125],"type":"Point"},"properties":{"nombre":"Centro De Salud Microregional El Mango","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.457778,15.948611],"type":"Point"},"properties":{"nombre":"Revolucion Mexicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.358333,15.94],"type":"Point"},"properties":{"nombre":"Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8511,15.9867],"type":"Point"},"properties":{"nombre":"La Tigrilla","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5875,16.0297],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.88,16.113333],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.833333,16.096389],"type":"Point"},"properties":{"nombre":"Yalcuc","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9219,16.1067],"type":"Point"},"properties":{"nombre":"Adolfo Ruiz Cortines","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8525,16.096699],"type":"Point"},"properties":{"nombre":"Voz De Mi Patria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.300833,15.963056],"type":"Point"},"properties":{"nombre":"Chiapas Nuevo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.891389,15.714444],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.948611,15.8675],"type":"Point"},"properties":{"nombre":"Los Naranjos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.275,17.1261],"type":"Point"},"properties":{"nombre":"Ángel Albino Corzo (Guadalupe)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.274444,17.181389],"type":"Point"},"properties":{"nombre":"Angel Albino Corzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.283611,17.136944],"type":"Point"},"properties":{"nombre":"Fray Victor Maria Flores","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.210833,17.131944],"type":"Point"},"properties":{"nombre":"12 De Octubre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.3503,17.0569],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.249722,17.1725],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.262222,17.123611],"type":"Point"},"properties":{"nombre":"Alvaro Obregon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.226944,17.155278],"type":"Point"},"properties":{"nombre":"Pro Patria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.244167,17.089167],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.199444,17.175556],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6189,16.9611],"type":"Point"},"properties":{"nombre":"José Ma. Morelos Y Pavon","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.61625,16.967259],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.613658,16.963365],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica 84","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.598056,17.071944],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.598056,17.071944],"type":"Point"},"properties":{"nombre":"Telesecundaria 1029 Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.621111,17.076111],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.575214,17.056156],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.605,17.053889],"type":"Point"},"properties":{"nombre":"Telesecundaria 1317 Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.734167,16.783056],"type":"Point"},"properties":{"nombre":"Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.694444,16.825],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.666111,16.824167],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.624722,16.8475],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.536667,16.744167],"type":"Point"},"properties":{"nombre":"Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.551944,16.838333],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.571389,16.828333],"type":"Point"},"properties":{"nombre":"Ignacio Jose De Allende Y Unzaga","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5722,16.8536],"type":"Point"},"properties":{"nombre":"Juan De La Barrera","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.646111,16.837222],"type":"Point"},"properties":{"nombre":"Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.699444,16.813056],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.577778,16.833333],"type":"Point"},"properties":{"nombre":"Walter C Buchanan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.806944,16.813889],"type":"Point"},"properties":{"nombre":"Telesecundaria 1279 Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.565278,16.799722],"type":"Point"},"properties":{"nombre":"Juan Enrique Pestalozzi","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.823617,16.866412],"type":"Point"},"properties":{"nombre":"Raza De Bronce","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.731944,16.798056],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.554444,16.817222],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.700278,16.829444],"type":"Point"},"properties":{"nombre":"Profr Romeo Dominguez Lopez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.685,16.840556],"type":"Point"},"properties":{"nombre":"Lic Manuel Larrainzar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.646667,16.845],"type":"Point"},"properties":{"nombre":"Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.684722,16.863889],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.730278,16.778333],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.211111,16.527778],"type":"Point"},"properties":{"nombre":"Telesecundaria 803 Lorenso Velasko Akino","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.205556,16.523889],"type":"Point"},"properties":{"nombre":"Eben Ezer","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.099722,17.333056],"type":"Point"},"properties":{"nombre":"Telesecundaria 532 Juan De La Barrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.135556,17.314444],"type":"Point"},"properties":{"nombre":"Telesecundaria 745 Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.09,17.325833],"type":"Point"},"properties":{"nombre":"Telesecundaria 746 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.516667,17.017222],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.564722,16.905556],"type":"Point"},"properties":{"nombre":"Liberacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2847,16.5634],"type":"Point"},"properties":{"nombre":"Ignacio Aldama","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.619444,16.936944],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.567778,16.940278],"type":"Point"},"properties":{"nombre":"Cinco De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.576944,16.918889],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.503369,16.961499],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.513333,16.919167],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.536667,16.972222],"type":"Point"},"properties":{"nombre":"Telesecundaria 1295 Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.516389,16.956111],"type":"Point"},"properties":{"nombre":"Telesecundaria 1314 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8792,16.3319],"type":"Point"},"properties":{"nombre":"Estado De Nuevo Leon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.004722,16.553333],"type":"Point"},"properties":{"nombre":"Daniel Tamayo Luna","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.992222,16.525556],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9678,16.4856],"type":"Point"},"properties":{"nombre":"Julian Grajales","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.969722,16.842222],"type":"Point"},"properties":{"nombre":"Martires Agraristas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9919,16.5103],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.923333,16.686111],"type":"Point"},"properties":{"nombre":"Angel Albino Corzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.973056,16.662778],"type":"Point"},"properties":{"nombre":"Antonio Caso","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9556,16.6964],"type":"Point"},"properties":{"nombre":"Nuevo Carmen Tonapac","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.991944,16.516944],"type":"Point"},"properties":{"nombre":"Angel Albino Corzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.959444,16.880556],"type":"Point"},"properties":{"nombre":"Telesecundaria 1031","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.005,16.895278],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.104722,16.965278],"type":"Point"},"properties":{"nombre":"Chicoasen","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.124444,17.038889],"type":"Point"},"properties":{"nombre":"Telesecundaria 652 5 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.106667,16.941111],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.378611,15.738056],"type":"Point"},"properties":{"nombre":"Telesecundaria 1181 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.439681,15.676792],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2589,15.7728],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2547,15.7172],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3042,15.9211],"type":"Point"},"properties":{"nombre":"Nueva América","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3042,15.9214],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.449167,15.758333],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.278611,15.829722],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.304853,15.682475],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.345833,15.864167],"type":"Point"},"properties":{"nombre":"Telesecundaria 1182 Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.310547,15.693687],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3736,15.8947],"type":"Point"},"properties":{"nombre":"Benito Juárez","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.255,15.8958],"type":"Point"},"properties":{"nombre":"Juan De La Barrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2678,15.6947],"type":"Point"},"properties":{"nombre":"Flavio Guillen","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.348056,15.721389],"type":"Point"},"properties":{"nombre":"Profr Alfredo Aguilar Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.013333,17.062222],"type":"Point"},"properties":{"nombre":"Telesecundaria 1034 Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.121944,17.215833],"type":"Point"},"properties":{"nombre":"Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.152778,17.170278],"type":"Point"},"properties":{"nombre":"Telesecundaria 298 Jose Emilio Grajales","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.154722,17.018889],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.064167,17.008056],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.101111,17.015278],"type":"Point"},"properties":{"nombre":"Telesecundaria 1079 Sebastian Lerdo De Tejada","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.283056,17.029167],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.260556,17.045556],"type":"Point"},"properties":{"nombre":"Telesecundaria 1080 Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1675,17.172222],"type":"Point"},"properties":{"nombre":"Telesecundaria 749 Emilio Rabasa Estebanell","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.15722,17.20222],"type":"Point"},"properties":{"nombre":"Tapilula","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2525,16.951667],"type":"Point"},"properties":{"nombre":"El Letrero","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.214444,17.199722],"type":"Point"},"properties":{"nombre":"Telesecundaria 1033 Ricardo Poza Arciniega","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2475,17.073333],"type":"Point"},"properties":{"nombre":"Telesecundaria 1325 27 De Agosto","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.309444,17.075833],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.309444,17.075833],"type":"Point"},"properties":{"nombre":"Telesecundaria 1081 Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.226154,17.058134],"type":"Point"},"properties":{"nombre":"Nuevo Paraíso","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0547,17.1903],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.012222,17.133611],"type":"Point"},"properties":{"nombre":"Telesecundaria 805 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1575,17.149722],"type":"Point"},"properties":{"nombre":"Telesecundaria 559 Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.135556,17.014444],"type":"Point"},"properties":{"nombre":"Telesecundaria 1082 Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.060278,17.115833],"type":"Point"},"properties":{"nombre":"5 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.058333,17.160556],"type":"Point"},"properties":{"nombre":"Pinabetal","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.106111,17.216111],"type":"Point"},"properties":{"nombre":"Telesecundaria 1158 Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.225,17.030278],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7525,17.170278],"type":"Point"},"properties":{"nombre":"Telesecundaria 777 Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7892,17.2239],"type":"Point"},"properties":{"nombre":"Cuauhtémoc","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.963889,16.990278],"type":"Point"},"properties":{"nombre":"Profr Domingo Faustino Sarmiento","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.136111,17.1225],"type":"Point"},"properties":{"nombre":"Telesecundaria 750 18 De Octubre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.615278,15.3375],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.579722,15.348611],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.634722,15.359167],"type":"Point"},"properties":{"nombre":"Jose Maria Mercado","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.613889,15.273889],"type":"Point"},"properties":{"nombre":"Jose Emilio Grajales","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.613889,15.273889],"type":"Point"},"properties":{"nombre":"Telesecundaria 104 Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.525556,15.337222],"type":"Point"},"properties":{"nombre":"Telesecundaria 101 Nicolas Ruiz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.525556,15.337222],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.475278,15.390556],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.498333,15.316667],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.527222,15.287778],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5875,15.355556],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.293611,17.237778],"type":"Point"},"properties":{"nombre":"Telesecundaria 800","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.221389,17.287778],"type":"Point"},"properties":{"nombre":"Telesecundaria 957 Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.203333,15.826111],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1497,15.7514],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.9478,15.8153],"type":"Point"},"properties":{"nombre":"La Aurora","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0622,15.8506],"type":"Point"},"properties":{"nombre":"Dr. Rodulfo Figueroa (Tierra Blanca)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0342,15.8281],"type":"Point"},"properties":{"nombre":"San Caralampio","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1289,15.8911],"type":"Point"},"properties":{"nombre":"Sinaloa","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.980986,15.841992],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.98,15.772222],"type":"Point"},"properties":{"nombre":"Los Angeles","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.201389,14.724444],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.216667,14.746111],"type":"Point"},"properties":{"nombre":"Ignacio Lopez Rayon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.186111,14.796667],"type":"Point"},"properties":{"nombre":"21 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.169167,14.741111],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.225,15.5083],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2311,15.4756],"type":"Point"},"properties":{"nombre":"Llano Grande","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.226389,15.551389],"type":"Point"},"properties":{"nombre":"La Corregidora","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.211036,15.50481],"type":"Point"},"properties":{"nombre":"Estado De Jalisco","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.219444,15.521667],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.340833,15.026111],"type":"Point"},"properties":{"nombre":"Veinte De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.391111,14.964722],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.397222,15.026667],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.411111,15.038056],"type":"Point"},"properties":{"nombre":"Rafael Ramirez Castañeda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.404167,15.052778],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3689,15.0706],"type":"Point"},"properties":{"nombre":"Chamulapita","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.369444,15.048056],"type":"Point"},"properties":{"nombre":"Pantaleon Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.315833,14.990278],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.432222,14.975278],"type":"Point"},"properties":{"nombre":"Dr Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3375,14.9797],"type":"Point"},"properties":{"nombre":"Guadalupe","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4739,15.0225],"type":"Point"},"properties":{"nombre":"Nueva Victoria","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4767,14.9822],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.504444,14.958611],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.436111,14.993056],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.356944,15.042778],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3375,15.065],"type":"Point"},"properties":{"nombre":"Tepehuitz","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.403611,14.993611],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3328,15.0047],"type":"Point"},"properties":{"nombre":"Cantón El Tívoli","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.362222,15.016111],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.373333,15.057778],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.431944,15.009722],"type":"Point"},"properties":{"nombre":"Juan Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.395556,15.057778],"type":"Point"},"properties":{"nombre":"Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.465278,15.018056],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3631,16.6475],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.484444,16.705278],"type":"Point"},"properties":{"nombre":"Telesecundaria 311 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.341389,16.725],"type":"Point"},"properties":{"nombre":"Telesecundaria 960","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.473333,16.713056],"type":"Point"},"properties":{"nombre":"Juan Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.456389,16.763889],"type":"Point"},"properties":{"nombre":"Telesecundaria 1198 Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3486,16.7175],"type":"Point"},"properties":{"nombre":"Mariano Abasolo","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.481111,16.726389],"type":"Point"},"properties":{"nombre":"Xicotencatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.402222,16.655556],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.402778,16.7],"type":"Point"},"properties":{"nombre":"Revolucion Social","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.388889,16.6875],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3222,16.6628],"type":"Point"},"properties":{"nombre":"Huitzilopochtli","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.327778,16.693889],"type":"Point"},"properties":{"nombre":"Telesecundaria 1233 Fray Pedro De Gante","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.419722,16.642778],"type":"Point"},"properties":{"nombre":"Benito Juárez","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3958,16.746099],"type":"Point"},"properties":{"nombre":"Niños Héroes","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.645,17.2039],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.644722,17.203056],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.644722,17.203056],"type":"Point"},"properties":{"nombre":"Telesecundaria 962 Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6381,17.2544],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.639042,17.255823],"type":"Point"},"properties":{"nombre":"Telesecundaria 609 Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.722778,17.305278],"type":"Point"},"properties":{"nombre":"Telesecundaria 1366 Revolucion Mexicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.705,17.24],"type":"Point"},"properties":{"nombre":"José María Morelos Y Pavón","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.702778,17.240278],"type":"Point"},"properties":{"nombre":"Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.705181,17.242347],"type":"Point"},"properties":{"nombre":"Telesecundaria 536 Independencia De Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.761667,17.251111],"type":"Point"},"properties":{"nombre":"Don Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.761978,17.25056],"type":"Point"},"properties":{"nombre":"Telesecundaria 963 Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7464,17.2956],"type":"Point"},"properties":{"nombre":"Sombra Carrizal","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.746389,17.295833],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.746408,17.297853],"type":"Point"},"properties":{"nombre":"Telesecundaria 877 Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.777778,17.220833],"type":"Point"},"properties":{"nombre":"Vicente Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.718469,17.282764],"type":"Point"},"properties":{"nombre":"Telesecundaria 761 Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.718333,17.280556],"type":"Point"},"properties":{"nombre":"Ramon Lopez Velarde","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.798333,17.270556],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.798597,17.269374],"type":"Point"},"properties":{"nombre":"Telesecundaria 672 Jesus Reyes Heroles","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.67,17.259722],"type":"Point"},"properties":{"nombre":"Sebastian Lerdo De Tejada","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.670158,17.242127],"type":"Point"},"properties":{"nombre":"Telesecundaria 964 Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.476389,15.16],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.561944,15.048611],"type":"Point"},"properties":{"nombre":"Galileo Galilei","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.551111,15.105556],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.551111,15.105556],"type":"Point"},"properties":{"nombre":"Telesecundaria 580 Niño Artillero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.482417,15.271752],"type":"Point"},"properties":{"nombre":"Veinte De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.544671,15.070943],"type":"Point"},"properties":{"nombre":"Francisco I. Madero","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.545,15.070556],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.545,15.070556],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica 73","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.589167,15.113611],"type":"Point"},"properties":{"nombre":"Moctezuma Ilhuicamina","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.463333,15.280556],"type":"Point"},"properties":{"nombre":"Telesecundaria 893 Benemerito De Las Americas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.526389,15.0675],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.568056,15.056667],"type":"Point"},"properties":{"nombre":"Veinte De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.510556,15.054167],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.510556,15.054167],"type":"Point"},"properties":{"nombre":"Telesecundaria 367 Salvador Urbina","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5925,15.065],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6689,16.2011],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.987222,16.205278],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.9994,16.2242],"type":"Point"},"properties":{"nombre":"Galeana","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7944,16.197199],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6342,16.2053],"type":"Point"},"properties":{"nombre":"Río Blanco","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6306,16.1778],"type":"Point"},"properties":{"nombre":"Dr. José Maria Luis Mora","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.995833,16.219444],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.923611,16.240278],"type":"Point"},"properties":{"nombre":"Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6817,16.1722],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6386,16.211099],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6917,16.225],"type":"Point"},"properties":{"nombre":"Fernando Montes De Oca","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6528,16.1839],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6514,16.1511],"type":"Point"},"properties":{"nombre":"San Antonio Buenavista","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6506,16.2411],"type":"Point"},"properties":{"nombre":"Octavio Paz Lozano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9453,17.295],"type":"Point"},"properties":{"nombre":"Juan De La Barrera","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.976667,17.298333],"type":"Point"},"properties":{"nombre":"Telesecundaria 1260 Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.938056,17.29],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.096111,17.429444],"type":"Point"},"properties":{"nombre":"Sn. Pedro Buenavista","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.107778,17.412222],"type":"Point"},"properties":{"nombre":"Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.096944,17.389444],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9247,16.77],"type":"Point"},"properties":{"nombre":"Aztlán (Rancho Nuevo)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.833889,16.843889],"type":"Point"},"properties":{"nombre":"Telesecundaria 818","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.911111,16.786111],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.860556,16.712222],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.963333,16.808611],"type":"Point"},"properties":{"nombre":"Sostenes Esponda Farrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.928889,16.7775],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8742,16.8456],"type":"Point"},"properties":{"nombre":"Chigtón","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.868056,16.821389],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.927778,16.839167],"type":"Point"},"properties":{"nombre":"Centro Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.873056,16.721111],"type":"Point"},"properties":{"nombre":"Enrique C Rebsamen","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8461,16.9128],"type":"Point"},"properties":{"nombre":"El Nopal","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.885833,16.899167],"type":"Point"},"properties":{"nombre":"Victorico R Grajales","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9483,16.8383],"type":"Point"},"properties":{"nombre":"El Zapotillo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.946667,16.8],"type":"Point"},"properties":{"nombre":"Telesecundaria 1179 Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.002222,17.495833],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9539,17.4406],"type":"Point"},"properties":{"nombre":"13 De Septiembre","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9539,17.4406],"type":"Point"},"properties":{"nombre":"La Gloria","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9425,17.380833],"type":"Point"},"properties":{"nombre":"Telesecundaria 966 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.795278,16.433333],"type":"Point"},"properties":{"nombre":"Pilar Espinosa De Leon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.586986,16.573527],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.6575,16.560833],"type":"Point"},"properties":{"nombre":"Telesecundaria 356 Vision Mundial","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.7139,16.4289],"type":"Point"},"properties":{"nombre":"Julián Grajales","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.633611,16.492778],"type":"Point"},"properties":{"nombre":"Nueva Palestina","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.626853,16.598644],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.751667,16.464722],"type":"Point"},"properties":{"nombre":"El Triunfo (Jiquipilas)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.827222,16.455278],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.258056,17.746944],"type":"Point"},"properties":{"nombre":"Juan T Gonzalez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.166944,17.730833],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.1706,17.7692],"type":"Point"},"properties":{"nombre":"Rodulfo Figueroa Esquinca","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.266667,17.581667],"type":"Point"},"properties":{"nombre":"Angel M Corzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8175,16.911944],"type":"Point"},"properties":{"nombre":"Leandro Valle","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8286,16.9314],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Boca Negra","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7564,16.9369],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.925,15.611111],"type":"Point"},"properties":{"nombre":"Telesecundaria 788 Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.998333,15.421389],"type":"Point"},"properties":{"nombre":"Francisco Sarabia (La Blanca)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8325,15.513889],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9525,15.5247],"type":"Point"},"properties":{"nombre":"Progreso De Chiapas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.976944,15.350833],"type":"Point"},"properties":{"nombre":"Claudio Cortes Castro","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.972778,15.505833],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.841111,15.566111],"type":"Point"},"properties":{"nombre":"Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.865,15.57],"type":"Point"},"properties":{"nombre":"Tres De Mayo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.102778,15.3975],"type":"Point"},"properties":{"nombre":"Moctezuma I","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.952778,15.334444],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.905278,15.338611],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.8375,15.3572],"type":"Point"},"properties":{"nombre":"Nicolas Bravo Uno Anexo Emiliano Zapata","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.490556,16.135278],"type":"Point"},"properties":{"nombre":"Maestro Antonio Barbosa Heldt","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.490556,16.135278],"type":"Point"},"properties":{"nombre":"Telesecundaria 848 Juan Rulfo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.858889,16.268889],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.858889,16.268889],"type":"Point"},"properties":{"nombre":"Telesecundaria 971 Octavio Paz Lozano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.112481,16.503689],"type":"Point"},"properties":{"nombre":"Juan Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1125,16.501667],"type":"Point"},"properties":{"nombre":"Telesecundaria 1309 Octavio Paz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8,16.315],"type":"Point"},"properties":{"nombre":"Revolucion Mexicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8,16.315],"type":"Point"},"properties":{"nombre":"Telesecundaria 1088","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7064,16.3825],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4667,16.1944],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7106,16.3536],"type":"Point"},"properties":{"nombre":"Miguel Aleman Valdes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8639,16.383299],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8639,16.383299],"type":"Point"},"properties":{"nombre":"Telesecundaria 1193 Juan Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6375,16.290299],"type":"Point"},"properties":{"nombre":"Telesecundaria 083 Julian Grajales","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.636944,16.291667],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6375,16.290299],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8361,16.4617],"type":"Point"},"properties":{"nombre":"Diego Rivera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.836111,16.457778],"type":"Point"},"properties":{"nombre":"Telesecundaria 1271 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.059014,16.507319],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.059167,16.505556],"type":"Point"},"properties":{"nombre":"Telesecundaria 1259 Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.065836,16.603014],"type":"Point"},"properties":{"nombre":"Las Americas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.976072,16.433394],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.055989,16.546862],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.056389,16.543889],"type":"Point"},"properties":{"nombre":"Telesecundaria 812 Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.061492,16.441781],"type":"Point"},"properties":{"nombre":"Bonampak","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.061667,16.439722],"type":"Point"},"properties":{"nombre":"Telesecundaria 146 Blanca Lidya Trejo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4083,16.1628],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4083,16.1628],"type":"Point"},"properties":{"nombre":"Telesecundaria 1202 Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3611,16.3778],"type":"Point"},"properties":{"nombre":"Paz Y Progreso","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4139,16.155],"type":"Point"},"properties":{"nombre":"Presidente Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4139,16.155],"type":"Point"},"properties":{"nombre":"Telesecundaria 926 José Vaconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.085,16.5689],"type":"Point"},"properties":{"nombre":"Hutzilihuitl","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.084761,16.572067],"type":"Point"},"properties":{"nombre":"Tlaloc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.085,16.569167],"type":"Point"},"properties":{"nombre":"Telesecundaria 343 Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7131,16.2819],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4447,16.1456],"type":"Point"},"properties":{"nombre":"Francisco I. Madero","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4444,16.1444],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4444,16.1444],"type":"Point"},"properties":{"nombre":"Telesecundaria 427 Rufino Tamayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4089,16.2039],"type":"Point"},"properties":{"nombre":"Nuevo Santo Tomás","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4089,16.2042],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4906,16.1403],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0111,16.5764],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.9444,16.461099],"type":"Point"},"properties":{"nombre":"Liberacion Indigena","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.9444,16.461099],"type":"Point"},"properties":{"nombre":"Telesecundaria 972 La Corregidora","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.099444,16.493889],"type":"Point"},"properties":{"nombre":"Telesecundaria 871 Emilio Rabasa Estebanell","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6925,16.2772],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.504558,16.213423],"type":"Point"},"properties":{"nombre":"Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.501944,16.208889],"type":"Point"},"properties":{"nombre":"Telesecundaria 929 Agustin De Iturbide","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4653,16.2222],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.640556,16.329444],"type":"Point"},"properties":{"nombre":"Pesquería La Línea","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.638056,16.327778],"type":"Point"},"properties":{"nombre":"Telesecundaria 1090 Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6567,16.3275],"type":"Point"},"properties":{"nombre":"Lic Manuel Larrainzar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.387647,16.088555],"type":"Point"},"properties":{"nombre":"Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.386944,16.084167],"type":"Point"},"properties":{"nombre":"Telesecundaria 1164 Jose Maria Pino Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.5608,16.2681],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6583,16.4125],"type":"Point"},"properties":{"nombre":"Agustin Yañez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.780556,16.248056],"type":"Point"},"properties":{"nombre":"Telesecundaria 1270 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.5828,16.4131],"type":"Point"},"properties":{"nombre":"Plan De Santo Tomas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.5828,16.4133],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0819,16.6197],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juárez","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.081761,16.623056],"type":"Point"},"properties":{"nombre":"Martires De Puebla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.081944,16.62],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 123","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.674444,16.383611],"type":"Point"},"properties":{"nombre":"Telesecundaria 930 Pablo Neruda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.068611,16.391667],"type":"Point"},"properties":{"nombre":"Telesecundaria 527 Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.068611,16.391667],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.113239,16.514117],"type":"Point"},"properties":{"nombre":"Manuel Avila Camacho","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.113333,16.511667],"type":"Point"},"properties":{"nombre":"Telesecundaria 752 Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3806,16.1792],"type":"Point"},"properties":{"nombre":"Jaime Nuno","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.379722,16.179167],"type":"Point"},"properties":{"nombre":"Santa María","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.883056,16.317222],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.883056,16.317222],"type":"Point"},"properties":{"nombre":"Telesecundaria 1194 Ignacio Jose De Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.880556,16.313611],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.5558,16.3014],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3628,16.1214],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7431,16.3292],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7431,16.3292],"type":"Point"},"properties":{"nombre":"Telesecundaria 849 Articulo Tercero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.5728,16.235],"type":"Point"},"properties":{"nombre":"Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.71,16.425278],"type":"Point"},"properties":{"nombre":"Telesecundaria 1318 Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2208,16.1861],"type":"Point"},"properties":{"nombre":"Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7972,16.2728],"type":"Point"},"properties":{"nombre":"21 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6806,16.2747],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.599722,16.235556],"type":"Point"},"properties":{"nombre":"Telesecundaria 973 Cesar Carrizales Retamoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.742778,16.275278],"type":"Point"},"properties":{"nombre":"Telesecundaria 1289 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3389,16.084399],"type":"Point"},"properties":{"nombre":"Manuel Gamio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6153,16.2319],"type":"Point"},"properties":{"nombre":"General Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.9675,16.5656],"type":"Point"},"properties":{"nombre":"San Caralampio","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.483333,16.520833],"type":"Point"},"properties":{"nombre":"Telesecundaria 1345 Puerto Jatate","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.211667,15.28],"type":"Point"},"properties":{"nombre":"Telesecundaria 1037 Maria Montessori","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.211667,15.28],"type":"Point"},"properties":{"nombre":"Estado De Aguascalientes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.175278,15.433056],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.200833,15.428611],"type":"Point"},"properties":{"nombre":"Juárez Chemale","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1597,15.4156],"type":"Point"},"properties":{"nombre":"Valle Obregón","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4283,14.8425],"type":"Point"},"properties":{"nombre":"El Aguacate","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6225,14.9172],"type":"Point"},"properties":{"nombre":"Niño Campesino","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.439167,14.885278],"type":"Point"},"properties":{"nombre":"Manuel Avila Camacho","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.417778,14.853056],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4811,14.8114],"type":"Point"},"properties":{"nombre":"Efraín A. Gutierrez","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.443333,14.925833],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.453611,14.886111],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.496389,14.817778],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.495,14.861944],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.191667,14.8075],"type":"Point"},"properties":{"nombre":"5 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.583611,16.872222],"type":"Point"},"properties":{"nombre":"Telesecundaria 1313 Gabriela Mistral","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.568056,16.882778],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3675,15.208056],"type":"Point"},"properties":{"nombre":"Presidente Miguel Aleman","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3675,15.208056],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3675,15.208056],"type":"Point"},"properties":{"nombre":"Telesecundaria 821 12 De Octubre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.346389,15.206667],"type":"Point"},"properties":{"nombre":"Profr Rafael Ramirez Castañeda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.196111,15.23],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3811,15.3042],"type":"Point"},"properties":{"nombre":"Belisario Domínguez","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.380833,15.298889],"type":"Point"},"properties":{"nombre":"Profr Rafael Ramirez Castañeda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.380819,15.300664],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.380833,15.298889],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.282222,15.265],"type":"Point"},"properties":{"nombre":"Telesecundaria 491 Ramon Lopez Velarde","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.282222,15.265],"type":"Point"},"properties":{"nombre":"Estado De Veracruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3492,15.2194],"type":"Point"},"properties":{"nombre":"Bremen","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.349167,15.219722],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.349167,15.219722],"type":"Point"},"properties":{"nombre":"Telesecundaria 163 Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.426944,15.395278],"type":"Point"},"properties":{"nombre":"Estado De Tlaxcala","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.453781,15.344729],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez Calzada","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.419569,15.343481],"type":"Point"},"properties":{"nombre":"Manuel Avila Camacho","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.419444,15.3425],"type":"Point"},"properties":{"nombre":"Telesecundaria 160 Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3425,15.252778],"type":"Point"},"properties":{"nombre":"Estado De Yucatan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3103,15.2647],"type":"Point"},"properties":{"nombre":"Llano Grande","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.310833,15.265],"type":"Point"},"properties":{"nombre":"Santos Degollado","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2131,15.2597],"type":"Point"},"properties":{"nombre":"Jacinto Canek","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2125,15.257778],"type":"Point"},"properties":{"nombre":"Territorio De Baja California","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2125,15.257778],"type":"Point"},"properties":{"nombre":"Telesecundaria 475 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4433,15.2978],"type":"Point"},"properties":{"nombre":"Nueva Maravillas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.378792,15.350431],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.378914,15.348699],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.378611,15.351111],"type":"Point"},"properties":{"nombre":"Telesecundaria 467 Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.23,15.240833],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza (Motozintla)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3831,15.3392],"type":"Point"},"properties":{"nombre":"Nueva Esperanza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4175,15.365],"type":"Point"},"properties":{"nombre":"Telesecundaria 708 Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.338611,15.281111],"type":"Point"},"properties":{"nombre":"Elpidio Lopez Escobar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.265833,15.2625],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.265833,15.2625],"type":"Point"},"properties":{"nombre":"Telesecundaria 1098 Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.388244,15.386933],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.434389,15.328186],"type":"Point"},"properties":{"nombre":"Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.441944,15.305556],"type":"Point"},"properties":{"nombre":"Telesecundaria 1100 Paulo Freire","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.33,15.322222],"type":"Point"},"properties":{"nombre":"Tolimam","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.336389,15.218889],"type":"Point"},"properties":{"nombre":"Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.476389,16.793611],"type":"Point"},"properties":{"nombre":"Telesecundaria 1039 20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.5222,17.1139],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Boca Negra","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.424167,17.036944],"type":"Point"},"properties":{"nombre":"Telesecundaria 1310 Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.361667,17.06],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.9433,16.9428],"type":"Point"},"properties":{"nombre":"Campo Alegre","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.724167,17.131667],"type":"Point"},"properties":{"nombre":"Telesecundaria 1320 12 De Octubre De 1492","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.285,16.9342],"type":"Point"},"properties":{"nombre":"La Frontera Uno","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.596111,17.021111],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2975,16.9397],"type":"Point"},"properties":{"nombre":"Lacanjá Tzeltal","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.377778,16.968889],"type":"Point"},"properties":{"nombre":"Telesecundaria 778 Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.627778,16.899167],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7075,17.121111],"type":"Point"},"properties":{"nombre":"La Patria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.210556,16.957778],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3458,16.4056],"type":"Point"},"properties":{"nombre":"Juan Aldama","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3458,16.4056],"type":"Point"},"properties":{"nombre":"San Quintin","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.459444,16.9175],"type":"Point"},"properties":{"nombre":"5 De Mayo De 1862","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4911,16.9819],"type":"Point"},"properties":{"nombre":"Tlaloc","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.875,16.885],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6269,17.0772],"type":"Point"},"properties":{"nombre":"El Tumbo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6325,16.8081],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.821389,16.996389],"type":"Point"},"properties":{"nombre":"Telesecundaria 1103 Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.641111,17.006667],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4722,17.0825],"type":"Point"},"properties":{"nombre":"Ubilio García","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4772,17.1706],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.477222,17.170556],"type":"Point"},"properties":{"nombre":"Nuevo Canán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.635833,16.899167],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.898889,16.957778],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8883,16.9372],"type":"Point"},"properties":{"nombre":"Cuitlahuac","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.918056,16.829444],"type":"Point"},"properties":{"nombre":"Telesecundaria 1104 Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.5233,16.8236],"type":"Point"},"properties":{"nombre":"José Vasconcelos","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.709722,17.172222],"type":"Point"},"properties":{"nombre":"Xicotencatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.584167,17.067778],"type":"Point"},"properties":{"nombre":"Telesecundaria 917 Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.488611,17.1275],"type":"Point"},"properties":{"nombre":"Telesecundaria 1159 Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.417778,17.025833],"type":"Point"},"properties":{"nombre":"Benito Juárez","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4108,16.4325],"type":"Point"},"properties":{"nombre":"Pedro Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.531111,16.97],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.560833,16.861944],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.1303,16.7606],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.184444,16.978889],"type":"Point"},"properties":{"nombre":"Telesecundaria 1188 Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3225,17.0261],"type":"Point"},"properties":{"nombre":"Gral. Vicente Guerrero","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3225,17.0261],"type":"Point"},"properties":{"nombre":"Nuevo Francisco León","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6194,16.7811],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.589444,16.940278],"type":"Point"},"properties":{"nombre":"Telesecundaria 1242 Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.419444,17.123611],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7442,17.0358],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6775,17.115],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3614,16.9231],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.205,16.996111],"type":"Point"},"properties":{"nombre":"Francisco Montes De Oca","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.15,16.786944],"type":"Point"},"properties":{"nombre":"Telesecundaria 751 Daniel Robles Sasso","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.612778,17.196389],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.258333,16.865],"type":"Point"},"properties":{"nombre":"Telesecundaria 1257 Daniel Robles Sasso","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6369,16.9217],"type":"Point"},"properties":{"nombre":"Nuevo Monte Lébano","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1703,16.8114],"type":"Point"},"properties":{"nombre":"Cuxulja","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6292,17.1914],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.426111,16.738611],"type":"Point"},"properties":{"nombre":"Telesecundaria 1245 Miguel Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3969,16.7106],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3358,16.3958],"type":"Point"},"properties":{"nombre":"Otilio Montaño","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.094444,16.087222],"type":"Point"},"properties":{"nombre":"Manuel Acuña","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.103056,16.124167],"type":"Point"},"properties":{"nombre":"Telesecundaria 1284 Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.201389,17.215556],"type":"Point"},"properties":{"nombre":"Telesecundaria 1307 Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.150556,17.214167],"type":"Point"},"properties":{"nombre":"Telesecundaria 1157 Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5061,16.6686],"type":"Point"},"properties":{"nombre":"Alfonso Moguel","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.460278,17.001667],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.457778,16.949722],"type":"Point"},"properties":{"nombre":"Telesecundaria 976","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.2614,16.6828],"type":"Point"},"properties":{"nombre":"Vicente Guerrero (Matamoros)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4311,16.9936],"type":"Point"},"properties":{"nombre":"José Vasconcelos","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4311,16.9936],"type":"Point"},"properties":{"nombre":"América Libre","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.481667,16.921389],"type":"Point"},"properties":{"nombre":"Telesecundaria 1042 2 De Octubre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.386389,16.945556],"type":"Point"},"properties":{"nombre":"Miguel Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.249167,16.675],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.448056,16.972778],"type":"Point"},"properties":{"nombre":"Fray Juan De Zumarraga","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.523056,17.010556],"type":"Point"},"properties":{"nombre":"Telesecundaria 979","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.532281,16.887232],"type":"Point"},"properties":{"nombre":"Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5175,17.0597],"type":"Point"},"properties":{"nombre":"Juan De Grijalva","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5364,17.0825],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.7497,17.0725],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.6644,17.0997],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.664444,17.099722],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.8575,17.1017],"type":"Point"},"properties":{"nombre":"Luis Echeverría (Agua Blanca)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4658,17.4244],"type":"Point"},"properties":{"nombre":"Juan Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.295278,17.439722],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4511,17.3114],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4864,17.4744],"type":"Point"},"properties":{"nombre":"Republica De Honduras","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.303889,17.388611],"type":"Point"},"properties":{"nombre":"Telesecundaria 476 Manuel Gutierrez Najera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.033056,16.878889],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.070406,16.855611],"type":"Point"},"properties":{"nombre":"Telesecundaria 955","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.283611,16.815],"type":"Point"},"properties":{"nombre":"Telesecundaria 179 Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.172222,16.712778],"type":"Point"},"properties":{"nombre":"Telesecundaria 1281 Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2547,16.8228],"type":"Point"},"properties":{"nombre":"El Corralito","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3375,16.841944],"type":"Point"},"properties":{"nombre":"Progreso","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.279167,16.793889],"type":"Point"},"properties":{"nombre":"Telesecundaria 1254 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.165833,16.772222],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.190556,16.757222],"type":"Point"},"properties":{"nombre":"Telesecundaria 1308 Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.301667,16.835833],"type":"Point"},"properties":{"nombre":"Joviltón","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.134167,16.711944],"type":"Point"},"properties":{"nombre":"Telesecundaria 1258 Pablo Neruda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.377778,16.818056],"type":"Point"},"properties":{"nombre":"Dr Alfonso Caso Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2483,16.8011],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.281389,16.771667],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.245278,16.770278],"type":"Point"},"properties":{"nombre":"General Alvaro Obregon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.317778,16.891111],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3014,16.7639],"type":"Point"},"properties":{"nombre":"Dr Manuel Velasco Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.20889,16.77306],"type":"Point"},"properties":{"nombre":"Centro De Salud Microregional Gololtón","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2625,16.718056],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.266667,16.7575],"type":"Point"},"properties":{"nombre":"Plutarco Elias Calles","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.94,17.395],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.804167,17.371111],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.558889,17.272778],"type":"Point"},"properties":{"nombre":"Telesecundaria 872 Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.879444,17.686667],"type":"Point"},"properties":{"nombre":"Francisco I. Madero Norte","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.856389,17.315833],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7925,17.312222],"type":"Point"},"properties":{"nombre":"Mi Patria Es Primero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8133,17.3972],"type":"Point"},"properties":{"nombre":"Lázaro Cárdenas","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.693056,17.255833],"type":"Point"},"properties":{"nombre":"Telesecundaria 446 Gabriela Mistral","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.868889,17.279722],"type":"Point"},"properties":{"nombre":"Voz De Mi Patria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.9392,17.3481],"type":"Point"},"properties":{"nombre":"Ignacio Aldama","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6614,17.4083],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7575,17.276667],"type":"Point"},"properties":{"nombre":"General Jesus Gonzalez Ortega","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.023889,17.446667],"type":"Point"},"properties":{"nombre":"Babilonia 1A. Sección","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.726111,17.342778],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.103333,17.613611],"type":"Point"},"properties":{"nombre":"Pa-Kal","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8342,17.2672],"type":"Point"},"properties":{"nombre":"Agua Blanca Serrano","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.925833,17.325833],"type":"Point"},"properties":{"nombre":"Profr. Roberto Barrios","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.821944,17.531111],"type":"Point"},"properties":{"nombre":"Armando Guerra","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8992,17.4078],"type":"Point"},"properties":{"nombre":"Chancala Zapote","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.503611,17.333333],"type":"Point"},"properties":{"nombre":"Vistahermosa","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.691389,17.432222],"type":"Point"},"properties":{"nombre":"Telesecundaria 1110 Fray Antonio Matias De Cordova","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.886667,17.422778],"type":"Point"},"properties":{"nombre":"Heroe De Nacozari","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.5033,17.2914],"type":"Point"},"properties":{"nombre":"Diego Rivera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.463333,17.235],"type":"Point"},"properties":{"nombre":"Telesecundaria 1189 Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6636,17.3356],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.968056,17.241111],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.999444,17.246667],"type":"Point"},"properties":{"nombre":"Diamante De Echeverria","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2625,17.101389],"type":"Point"},"properties":{"nombre":"Telesecundaria 1111 Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.477222,17.117222],"type":"Point"},"properties":{"nombre":"Telesecundaria 1112 Joaquin Miguel Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.477222,17.117222],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.500833,17.064444],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.500833,17.064444],"type":"Point"},"properties":{"nombre":"Telesecundaria 1113 Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.493333,17.098611],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.493333,17.098611],"type":"Point"},"properties":{"nombre":"Telesecundaria 989 Jose Emilio Grajales","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.05,17.1878],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.032586,17.19043],"type":"Point"},"properties":{"nombre":"Ignacio Lopez Rayon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.0769,17.1606],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.055381,17.220397],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.210314,17.425331],"type":"Point"},"properties":{"nombre":"Fray Matias De Cordova Y Ordoñez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.3942,17.6133],"type":"Point"},"properties":{"nombre":"Plutarco Elías Calles","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.34455,17.581889],"type":"Point"},"properties":{"nombre":"Constitucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.295286,17.55676],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.116667,15.518056],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.2997,15.7275],"type":"Point"},"properties":{"nombre":"La Central","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.017222,15.541667],"type":"Point"},"properties":{"nombre":"Telesecundaria 194 Carlos Fuentes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.2119,15.4997],"type":"Point"},"properties":{"nombre":"El Palmarcito","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.0361,15.6619],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.144444,15.6],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.281008,15.456233],"type":"Point"},"properties":{"nombre":"Seccion 40 Del Sindicato Nacional De Trabajadores De La Educacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.281392,15.459154],"type":"Point"},"properties":{"nombre":"Sierra Madre De Chiapas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.279289,15.458856],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3208,15.4308],"type":"Point"},"properties":{"nombre":"El Cambil","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.32115,15.427712],"type":"Point"},"properties":{"nombre":"Estado De Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.320833,15.427778],"type":"Point"},"properties":{"nombre":"Telesecundaria 571 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.241111,15.399444],"type":"Point"},"properties":{"nombre":"Chimalapa","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.304722,15.451944],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.304722,15.451944],"type":"Point"},"properties":{"nombre":"Telesecundaria 199 Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.535833,15.196111],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.575278,15.132222],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.542222,15.233056],"type":"Point"},"properties":{"nombre":"General Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.586667,15.31],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.572222,15.320833],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.649167,15.141667],"type":"Point"},"properties":{"nombre":"Juan Aldama","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.701944,15.145278],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.595556,15.183889],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.684722,15.139167],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.649444,15.193889],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.501667,15.278889],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.626389,15.166667],"type":"Point"},"properties":{"nombre":"Francisco Javier Mina","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.630278,15.130556],"type":"Point"},"properties":{"nombre":"Benemerito De Las Americas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.608611,15.130278],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.555278,15.296944],"type":"Point"},"properties":{"nombre":"Lic Gustavo Diaz Ordaz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.668333,15.130278],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.861389,17.275278],"type":"Point"},"properties":{"nombre":"Telesecundaria 1118 Manuel Acuña","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.950556,17.246667],"type":"Point"},"properties":{"nombre":"Telesecundaria 1349 Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.845556,17.261389],"type":"Point"},"properties":{"nombre":"Telesecundaria 1121 Leyes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.890278,17.300556],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.890278,17.300556],"type":"Point"},"properties":{"nombre":"Telesecundaria 718 Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.836389,17.173056],"type":"Point"},"properties":{"nombre":"Sonora","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6481,17.3978],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6481,17.3978],"type":"Point"},"properties":{"nombre":"El Bebedero","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5281,17.2225],"type":"Point"},"properties":{"nombre":"Buenavista","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.556944,17.2175],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.654444,17.410833],"type":"Point"},"properties":{"nombre":"Telesecundaria 775 Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6283,17.2911],"type":"Point"},"properties":{"nombre":"Majastic","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.619444,17.263333],"type":"Point"},"properties":{"nombre":"Nueva Independencia","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.629722,17.385556],"type":"Point"},"properties":{"nombre":"Telesecundaria 993 Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.585556,17.278889],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.675556,17.351389],"type":"Point"},"properties":{"nombre":"El Ambar De Echeverria","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.573056,17.226667],"type":"Point"},"properties":{"nombre":"Telesecundaria 1122 Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.982744,17.389046],"type":"Point"},"properties":{"nombre":"Oaxaca","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.153889,17.52],"type":"Point"},"properties":{"nombre":"Telesecundaria 994 Emilio Rabasa Estebanell","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.021111,17.293611],"type":"Point"},"properties":{"nombre":"Telesecundaria 757 Manuel Acuña","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.983333,17.404167],"type":"Point"},"properties":{"nombre":"Telesecundaria 719 Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.236111,17.456944],"type":"Point"},"properties":{"nombre":"Vasco De Quiroga","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.319722,17.405278],"type":"Point"},"properties":{"nombre":"Cenobio Aguilar (La Trinidad)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.41,17.5769],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2775,17.393056],"type":"Point"},"properties":{"nombre":"Telesecundaria 1272 Revolucion Mexicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.279444,17.605],"type":"Point"},"properties":{"nombre":"Dos Arroyos 1A. Sección","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.958611,17.387222],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.053131,17.365609],"type":"Point"},"properties":{"nombre":"Federico A Corzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3892,17.5422],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3694,17.5781],"type":"Point"},"properties":{"nombre":"El Chamizal","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.948889,17.371944],"type":"Point"},"properties":{"nombre":"Telesecundaria 779 Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.379167,17.587222],"type":"Point"},"properties":{"nombre":"Pueblo Nuevo (Salto De Agua)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0078,17.3611],"type":"Point"},"properties":{"nombre":"Niños Héroes","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.165,17.4114],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.165,17.411389],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.196389,17.423889],"type":"Point"},"properties":{"nombre":"Telesecundaria 937 Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.143333,17.384722],"type":"Point"},"properties":{"nombre":"Independencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.155842,17.410222],"type":"Point"},"properties":{"nombre":"La Voz De Mi Patria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.1197,17.305],"type":"Point"},"properties":{"nombre":"El Tortuguero 1A. Sección","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.260833,17.485],"type":"Point"},"properties":{"nombre":"Telesecundaria 938 Manuel Gutierrez Najera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.075897,17.312734],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.027222,17.305833],"type":"Point"},"properties":{"nombre":"Telesecundaria 854 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.183056,17.475278],"type":"Point"},"properties":{"nombre":"Telesecundaria 939 Gregorio Torres Quintero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.078889,17.416389],"type":"Point"},"properties":{"nombre":"Juan Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.133611,17.528056],"type":"Point"},"properties":{"nombre":"Telesecundaria 1049 Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4461,17.5514],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4244,17.5725],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.349031,17.512928],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.212778,17.395278],"type":"Point"},"properties":{"nombre":"Telesecundaria 682 Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.253056,17.384444],"type":"Point"},"properties":{"nombre":"Telesecundaria 755 Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.125,17.3625],"type":"Point"},"properties":{"nombre":"Telesecundaria 1124 Moises Saenz Garza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.454767,16.668389],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.368889,16.556944],"type":"Point"},"properties":{"nombre":"Telesecundaria 1278 Leonardo Da Vinci","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.445,16.6544],"type":"Point"},"properties":{"nombre":"San José Yashitinón","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5208,16.7442],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5208,16.7442],"type":"Point"},"properties":{"nombre":"La Candelaria","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.431944,16.667222],"type":"Point"},"properties":{"nombre":"Telesecundaria 483 Palenque","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.221192,16.93092],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.213956,16.873568],"type":"Point"},"properties":{"nombre":"Primero De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.1739,16.9394],"type":"Point"},"properties":{"nombre":"Gabriel Esquinca","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.240753,16.920027],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.120556,16.931944],"type":"Point"},"properties":{"nombre":"Articulo Tercero Constitucional","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4031,15.5481],"type":"Point"},"properties":{"nombre":"Ángel Díaz","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.403056,15.548333],"type":"Point"},"properties":{"nombre":"Telesecundaria 355 Emilio Rabasa Estebanell","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.402778,15.490833],"type":"Point"},"properties":{"nombre":"Telesecundaria 783 Emilio Rabasa Estebanell","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.297222,15.550278],"type":"Point"},"properties":{"nombre":"Telesecundaria 1226 Pablo Picasso","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5019,15.6356],"type":"Point"},"properties":{"nombre":"Las Delicias","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.501111,15.633611],"type":"Point"},"properties":{"nombre":"Telesecundaria 568 Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.338333,15.585],"type":"Point"},"properties":{"nombre":"Telesecundaria 339 Ignacio Lopez Rayon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.476389,15.589167],"type":"Point"},"properties":{"nombre":"Telesecundaria 457 Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.46889,15.51583],"type":"Point"},"properties":{"nombre":"C.S. Ixtacomitan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.274536,15.539645],"type":"Point"},"properties":{"nombre":"Pedro Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.275556,15.538056],"type":"Point"},"properties":{"nombre":"Telesecundaria 999 Enoch Cancino Casahonda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.411944,15.518056],"type":"Point"},"properties":{"nombre":"Telesecundaria 656 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.359722,15.651389],"type":"Point"},"properties":{"nombre":"Telesecundaria 1348 Mahatma Gandhi","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.564722,15.6],"type":"Point"},"properties":{"nombre":"Telesecundaria 1000 Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4281,15.5578],"type":"Point"},"properties":{"nombre":"Las Moras","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.428056,15.558056],"type":"Point"},"properties":{"nombre":"Telesecundaria 840 Felipe Angeles","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.26,15.517778],"type":"Point"},"properties":{"nombre":"Telesecundaria 1227 Miguel De Cervantes Saavedra","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2547,15.5],"type":"Point"},"properties":{"nombre":"El Palmar Grande","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.253611,15.500278],"type":"Point"},"properties":{"nombre":"Telesecundaria 735 Adolfo Ruiz Cortines","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2728,15.4772],"type":"Point"},"properties":{"nombre":"El Rodeo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.272778,15.475],"type":"Point"},"properties":{"nombre":"Telesecundaria 218 Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.322778,15.617778],"type":"Point"},"properties":{"nombre":"Telesecundaria 1370 Rene Descartes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.637778,15.555278],"type":"Point"},"properties":{"nombre":"Lázaro Cárdenas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.354444,15.529444],"type":"Point"},"properties":{"nombre":"Telesecundaria 569 Amparo Montes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.305811,15.517981],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.305556,15.518056],"type":"Point"},"properties":{"nombre":"Telesecundaria 340 Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3464,15.5714],"type":"Point"},"properties":{"nombre":"Vega De Guerrero","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.601389,15.613889],"type":"Point"},"properties":{"nombre":"Telesecundaria 1162 Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.518889,15.497222],"type":"Point"},"properties":{"nombre":"Telesecundaria 1125 Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.487778,15.576944],"type":"Point"},"properties":{"nombre":"Telesecundaria 784 Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.411944,15.590556],"type":"Point"},"properties":{"nombre":"Telesecundaria 1002 Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.448056,15.496667],"type":"Point"},"properties":{"nombre":"Telesecundaria 866 Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.623611,17.076111],"type":"Point"},"properties":{"nombre":"Telesecundaria 1127 Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5567,17.1353],"type":"Point"},"properties":{"nombre":"Las Maravillas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.524167,17.075556],"type":"Point"},"properties":{"nombre":"Constitucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4817,17.1378],"type":"Point"},"properties":{"nombre":"Pueblo Nuevo Sitala","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.510047,17.148372],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.537333,17.139488],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.551944,17.158611],"type":"Point"},"properties":{"nombre":"Telesecundaria 1304 Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.523056,17.095833],"type":"Point"},"properties":{"nombre":"Telesecundaria 1291 Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3078,17.0242],"type":"Point"},"properties":{"nombre":"Quetzalcoatl","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.361667,17.069444],"type":"Point"},"properties":{"nombre":"Telesecundaria 1324 Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.383333,17.058611],"type":"Point"},"properties":{"nombre":"Telesecundaria 1323 Emilio Rabasa Estebanell","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4389,16.1164],"type":"Point"},"properties":{"nombre":"El Santuario","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3222,16.2575],"type":"Point"},"properties":{"nombre":"Tzinil","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3567,16.1608],"type":"Point"},"properties":{"nombre":"Lázaro Cárdenas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.419028,16.184885],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3753,16.207799],"type":"Point"},"properties":{"nombre":"José Vasconcelos","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.254444,15.935278],"type":"Point"},"properties":{"nombre":"Telesecundaria 630 Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.030833,17.427778],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.0294,17.4283],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.991111,17.391111],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.960556,17.356389],"type":"Point"},"properties":{"nombre":"Telesecundaria 743 Emilio Rabasa Estebanell","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.936461,16.894996],"type":"Point"},"properties":{"nombre":"Profr Ruben Aguilar Mora","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.033942,16.921185],"type":"Point"},"properties":{"nombre":"El Progreso","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.115992,16.516803],"type":"Point"},"properties":{"nombre":"Dr Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3031,14.6433],"type":"Point"},"properties":{"nombre":"Barra De Cahoacá (El Chical)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.266128,14.639399],"type":"Point"},"properties":{"nombre":"Guelatao","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.234861,14.642741],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.217839,14.600296],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2539,14.5628],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.318333,14.830556],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.318333,14.830556],"type":"Point"},"properties":{"nombre":"Telesecundaria 388 Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.335556,15.048056],"type":"Point"},"properties":{"nombre":"Telesecundaria 347 Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2117,15.1183],"type":"Point"},"properties":{"nombre":"Nuevo Chespal","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.210556,15.114722],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.210556,15.114722],"type":"Point"},"properties":{"nombre":"Telesecundaria 321 Samuel Leon Brindis","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.375,14.853611],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.375,14.853611],"type":"Point"},"properties":{"nombre":"Telesecundaria 223 Leyes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.357778,14.882222],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.357778,14.882222],"type":"Point"},"properties":{"nombre":"Telesecundaria 023 Jose Emilio Grajales Moguel","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.285833,15.057778],"type":"Point"},"properties":{"nombre":"Arturo Palacios Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3003,14.76],"type":"Point"},"properties":{"nombre":"Joaquín Miguel Gutierrez (El Manzano)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.311944,14.732778],"type":"Point"},"properties":{"nombre":"Cenobio Rodriguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.311944,14.732778],"type":"Point"},"properties":{"nombre":"Telesecundaria 117 Jose Joaquin Fernandez De Lizardi","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.406667,14.773889],"type":"Point"},"properties":{"nombre":"Ricardo Calcaneo Lazos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.254722,15.131667],"type":"Point"},"properties":{"nombre":"Mario Souza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.218056,15.102778],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.218056,15.102778],"type":"Point"},"properties":{"nombre":"Telesecundaria 576 Efrain Aranda Osorio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.290833,15.138056],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.398611,14.799444],"type":"Point"},"properties":{"nombre":"Eva Samano De Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.398611,14.799444],"type":"Point"},"properties":{"nombre":"General Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.179722,15.201389],"type":"Point"},"properties":{"nombre":"12 De Octubre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.179722,15.201389],"type":"Point"},"properties":{"nombre":"Telesecundaria 573 Juan Rulfo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.365,14.815],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3322,15.0422],"type":"Point"},"properties":{"nombre":"San José Reforma","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.328611,14.7175],"type":"Point"},"properties":{"nombre":"Telesecundaria 465 Juan Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3575,14.767778],"type":"Point"},"properties":{"nombre":"Telesecundaria 575 Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.203333,15.201111],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.203333,15.201111],"type":"Point"},"properties":{"nombre":"Telesecundaria 574 Fray Matias De Cordova Y Ordoñez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.339722,14.814444],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.351389,14.943611],"type":"Point"},"properties":{"nombre":"Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.351389,14.943611],"type":"Point"},"properties":{"nombre":"Telesecundaria 189 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2519,15.0867],"type":"Point"},"properties":{"nombre":"Veintiséis De Octubre","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.251944,15.083889],"type":"Point"},"properties":{"nombre":"Telesecundaria 348 Mi Patria Es Primero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.305556,15.129444],"type":"Point"},"properties":{"nombre":"Telesecundaria 222 Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3058,15.1317],"type":"Point"},"properties":{"nombre":"Zaragoza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.305556,15.129444],"type":"Point"},"properties":{"nombre":"Dr Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.267778,15.139444],"type":"Point"},"properties":{"nombre":"Lic Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.295833,14.790278],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.335833,14.796389],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.335833,14.796389],"type":"Point"},"properties":{"nombre":"Telesecundaria 207 Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3169,14.6233],"type":"Point"},"properties":{"nombre":"Emilio O Rabasa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2853,15.0394],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.284722,15.0375],"type":"Point"},"properties":{"nombre":"Rafael Ramos Pedrueza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.284722,15.0375],"type":"Point"},"properties":{"nombre":"Telesecundaria 665 5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3125,15.074444],"type":"Point"},"properties":{"nombre":"Heroe De Nacozari","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2928,14.9967],"type":"Point"},"properties":{"nombre":"El Porvenir","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.377222,15.148056],"type":"Point"},"properties":{"nombre":"El Triunfo (Tapachula)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.351111,15.115833],"type":"Point"},"properties":{"nombre":"Telesecundaria 723 Leyes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.227778,15.072222],"type":"Point"},"properties":{"nombre":"Telesecundaria 478 Fraccion Galeras","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.341111,14.853611],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.19,15.203056],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.190278,15.1775],"type":"Point"},"properties":{"nombre":"Telesecundaria 1007 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.324722,15.196389],"type":"Point"},"properties":{"nombre":"Dr Manuel Velasco Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.324722,15.196389],"type":"Point"},"properties":{"nombre":"Telesecundaria 1008 Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.385556,14.680278],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.125833,17.261667],"type":"Point"},"properties":{"nombre":"Telesecundaria 1132 Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.016667,17.248611],"type":"Point"},"properties":{"nombre":"Centro De Salud Municipal Solosuchiapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.9883,17.2469],"type":"Point"},"properties":{"nombre":"Portaceli","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.0325,17.262778],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.991111,17.262222],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.392222,17.294722],"type":"Point"},"properties":{"nombre":"Telesecundaria 1010","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5164,17.2689],"type":"Point"},"properties":{"nombre":"America Libre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.6156,17.2],"type":"Point"},"properties":{"nombre":"Republica De Argentina","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.3419,17.2189],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.3375,17.253056],"type":"Point"},"properties":{"nombre":"Telesecundaria 1012","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4236,17.15],"type":"Point"},"properties":{"nombre":"Luis Espinosa","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5544,17.3425],"type":"Point"},"properties":{"nombre":"Rómulo Calzada (La Herradura)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5556,17.2822],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.7175,17.1319],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4172,17.235],"type":"Point"},"properties":{"nombre":"Juan Sabines Gutierrez","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.8122,17.1597],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.566389,17.180278],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.393694,17.180663],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.775,17.1928],"type":"Point"},"properties":{"nombre":"Damian Carmona","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.485278,17.251667],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.432567,17.158709],"type":"Point"},"properties":{"nombre":"Isabel La Catolica","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.403611,17.061944],"type":"Point"},"properties":{"nombre":"Telesecundaria 1014 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.7472,17.1256],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.378889,17.006667],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.507222,16.817222],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.491389,16.876111],"type":"Point"},"properties":{"nombre":"Miguel Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.492367,16.879853],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 130","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4919,16.8811],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.458056,16.89],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.472222,16.900556],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.475869,16.897091],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 144","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.474444,16.873611],"type":"Point"},"properties":{"nombre":"Articulo Tercero Constitucional","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4933,16.8975],"type":"Point"},"properties":{"nombre":"Belisario Dominguez","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4933,16.8975],"type":"Point"},"properties":{"nombre":"Majosik","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.493333,16.897778],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.493333,16.897778],"type":"Point"},"properties":{"nombre":"Telesecundaria 479 Angel Albino Corzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.475278,16.838056],"type":"Point"},"properties":{"nombre":"Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.480556,16.904167],"type":"Point"},"properties":{"nombre":"Erasto Urbina Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.481389,16.849444],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.452778,16.876111],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.460897,16.875878],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Agropecuaria Num 117","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.472778,16.915556],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.460278,16.843056],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.460125,16.841274],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Industrial Num 137","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.456944,16.854722],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.493333,16.808333],"type":"Point"},"properties":{"nombre":"13 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.451944,16.828889],"type":"Point"},"properties":{"nombre":"Jose Maria Pino Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.443611,16.884167],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.513611,16.898611],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5139,16.8986],"type":"Point"},"properties":{"nombre":"Sibactel","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5225,16.818056],"type":"Point"},"properties":{"nombre":"Cuitlahuac","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.584722,16.498611],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4631,17.3697],"type":"Point"},"properties":{"nombre":"El Crucero","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.547222,17.446111],"type":"Point"},"properties":{"nombre":"Telesecundaria 770 Alvaro Obregon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.382778,17.4775],"type":"Point"},"properties":{"nombre":"Telesecundaria 772 Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.406944,17.262222],"type":"Point"},"properties":{"nombre":"Chimalpopoca","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.406944,17.262222],"type":"Point"},"properties":{"nombre":"Telesecundaria 555 Juan Amos Comenio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.485278,17.28],"type":"Point"},"properties":{"nombre":"Telesecundaria 861 Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5742,17.3853],"type":"Point"},"properties":{"nombre":"Chulum Cárdenas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5342,17.3336],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.533889,17.331944],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.533889,17.331944],"type":"Point"},"properties":{"nombre":"Telesecundaria 557 Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.398056,17.505833],"type":"Point"},"properties":{"nombre":"Telesecundaria 771 Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.498056,17.203056],"type":"Point"},"properties":{"nombre":"Luis Echeverria Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.498056,17.203056],"type":"Point"},"properties":{"nombre":"Telesecundaria 727 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5131,17.4386],"type":"Point"},"properties":{"nombre":"Jolnishtie 1A. Sección","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.463889,17.350833],"type":"Point"},"properties":{"nombre":"Telesecundaria 1017 Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4503,17.2722],"type":"Point"},"properties":{"nombre":"Jolpokitioc","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.450278,17.271667],"type":"Point"},"properties":{"nombre":"Vicente Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.450278,17.271667],"type":"Point"},"properties":{"nombre":"Telesecundaria 554 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.481667,17.259722],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.481667,17.259722],"type":"Point"},"properties":{"nombre":"Telesecundaria 728 Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.381667,17.266111],"type":"Point"},"properties":{"nombre":"Telesecundaria 860 Rafael Ramirez Castañeda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.519722,17.554444],"type":"Point"},"properties":{"nombre":"Telesecundaria 1246 Gabino Barreda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.503889,17.281667],"type":"Point"},"properties":{"nombre":"Telesecundaria 1051 Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.503889,17.281667],"type":"Point"},"properties":{"nombre":"Siervo De La Nacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3589,17.4572],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.416667,17.264444],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.491111,17.2225],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.491111,17.2225],"type":"Point"},"properties":{"nombre":"Telesecundaria 556 Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.438056,17.500278],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.438056,17.500278],"type":"Point"},"properties":{"nombre":"Telesecundaria 1018 Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.455833,17.433056],"type":"Point"},"properties":{"nombre":"Telesecundaria 769 Leonardo Da Vinci","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4775,17.298056],"type":"Point"},"properties":{"nombre":"Telesecundaria 1135 Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.398333,17.279722],"type":"Point"},"properties":{"nombre":"Telesecundaria 1136 Jean Piaget","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4169,17.2931],"type":"Point"},"properties":{"nombre":"Francisco Zarco","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.397222,17.453056],"type":"Point"},"properties":{"nombre":"Gabriela Mistral","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.397222,17.453056],"type":"Point"},"properties":{"nombre":"Articulo Tercero Constitucional","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.397222,17.453056],"type":"Point"},"properties":{"nombre":"Telesecundaria 318 Juana De Asbaje","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.351111,17.466944],"type":"Point"},"properties":{"nombre":"Telesecundaria 773 Jose Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3514,17.4678],"type":"Point"},"properties":{"nombre":"Campanario","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.51,17.429444],"type":"Point"},"properties":{"nombre":"Telesecundaria 859 Enoch Cancino Casahonda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5064,17.5314],"type":"Point"},"properties":{"nombre":"24 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.482222,17.316944],"type":"Point"},"properties":{"nombre":"Moctezuma Ilhuicamina","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.482222,17.316944],"type":"Point"},"properties":{"nombre":"Telesecundaria 858 Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.497778,17.325556],"type":"Point"},"properties":{"nombre":"Telesecundaria 1347 Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.4775,17.416111],"type":"Point"},"properties":{"nombre":"Telesecundaria 1052 Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.5119,17.4961],"type":"Point"},"properties":{"nombre":"Paso Chinal","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.512778,17.496389],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.512778,17.496389],"type":"Point"},"properties":{"nombre":"Telesecundaria 944 Moises Saenz Garza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.521944,17.2925],"type":"Point"},"properties":{"nombre":"Telesecundaria 1305 Venustiano Carranza Garza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.8333,16.1458],"type":"Point"},"properties":{"nombre":"Huanacastal","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4381,15.8242],"type":"Point"},"properties":{"nombre":"General Alberto Pineda","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.723056,15.994444],"type":"Point"},"properties":{"nombre":"Tiburcio Aguirre Herrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.806389,16.002222],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.528611,15.759167],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.799722,15.983333],"type":"Point"},"properties":{"nombre":"Miguel Lara Vassallo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.76,15.997778],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.655,15.852778],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.781111,15.965556],"type":"Point"},"properties":{"nombre":"Francisco Indalecio Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.8175,16.019167],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.81,15.9531],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Número Dos (20 De Noviembre)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.802778,15.946389],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.458889,15.784444],"type":"Point"},"properties":{"nombre":"Agustin Yañez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.843056,16.01],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.669722,15.8525],"type":"Point"},"properties":{"nombre":"Dionicio Ramos Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.478056,15.880556],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.625833,16.488333],"type":"Point"},"properties":{"nombre":"Libertad De Imprenta","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8969,16.0233],"type":"Point"},"properties":{"nombre":"Ángel Albino Corzo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8981,15.8292],"type":"Point"},"properties":{"nombre":"Año De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.618056,16.108611],"type":"Point"},"properties":{"nombre":"Primero De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.618056,16.108611],"type":"Point"},"properties":{"nombre":"Telesecundaria 1019 Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8625,15.968889],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8625,15.968889],"type":"Point"},"properties":{"nombre":"Telesecundaria 031 Jaime Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.951944,16.043611],"type":"Point"},"properties":{"nombre":"Tenochtitlan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.138333,15.998333],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.835,16.1639],"type":"Point"},"properties":{"nombre":"El Porvenir Agrarista","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7606,16.0469],"type":"Point"},"properties":{"nombre":"Jaime Nuno","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.86,16.115556],"type":"Point"},"properties":{"nombre":"Telesecundaria 253 Antonio Caso","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.075,16.131111],"type":"Point"},"properties":{"nombre":"Guillermo Prieto","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.961667,16.1125],"type":"Point"},"properties":{"nombre":"General Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.975,16.1314],"type":"Point"},"properties":{"nombre":"Santa Rita","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.571389,16.139167],"type":"Point"},"properties":{"nombre":"Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.571389,16.139167],"type":"Point"},"properties":{"nombre":"Telesecundaria 928 Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.665278,16.080556],"type":"Point"},"properties":{"nombre":"Telesecundaria 412 Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.931944,16.127778],"type":"Point"},"properties":{"nombre":"Escuadron 201","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.8208,16.0042],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.820833,16.004444],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.820833,16.004444],"type":"Point"},"properties":{"nombre":"Telesecundaria 523 Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0803,15.9378],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7506,16.093599],"type":"Point"},"properties":{"nombre":"Fray Matias De Cordova Y Ordoñez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.018889,16.120278],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.7053,16.124199],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4083,16.1083],"type":"Point"},"properties":{"nombre":"Presidente Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.6292,16.0972],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.4014,16.086099],"type":"Point"},"properties":{"nombre":"Presidente Ordaz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.966667,15.972222],"type":"Point"},"properties":{"nombre":"Pascual Ortiz Rubio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.966667,15.972222],"type":"Point"},"properties":{"nombre":"Telesecundaria 846 Javier Ruiz Velasco","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.978611,15.851389],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.059167,15.898611],"type":"Point"},"properties":{"nombre":"Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.047336,15.893029],"type":"Point"},"properties":{"nombre":"Telesecundaria 1293 Organizacion De Las Naciones Unidas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.148889,17.248611],"type":"Point"},"properties":{"nombre":"Jerusalem","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.148889,17.248611],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.148889,17.248611],"type":"Point"},"properties":{"nombre":"Telesecundaria 564 Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.225,17.3225],"type":"Point"},"properties":{"nombre":"Telesecundaria 1020 Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2722,17.3039],"type":"Point"},"properties":{"nombre":"Lic. Benito Juárez García","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.267222,17.305278],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.267222,17.305278],"type":"Point"},"properties":{"nombre":"Telesecundaria 731 Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.177222,17.307222],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.177222,17.307222],"type":"Point"},"properties":{"nombre":"Telesecundaria 261 Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.290556,17.337222],"type":"Point"},"properties":{"nombre":"Lic. Buenavista Mata Sanos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.291667,17.336111],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.291667,17.336111],"type":"Point"},"properties":{"nombre":"Telesecundaria 827 20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3178,17.3594],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.317778,17.358889],"type":"Point"},"properties":{"nombre":"Telesecundaria 826 Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.213889,17.271944],"type":"Point"},"properties":{"nombre":"Telesecundaria 617 Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.228333,17.265278],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.228333,17.265278],"type":"Point"},"properties":{"nombre":"Telesecundaria 828 Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.174478,17.242103],"type":"Point"},"properties":{"nombre":"Telesecundaria 862 Ricardo Flores Magos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3808,17.3339],"type":"Point"},"properties":{"nombre":"Cuahutémoc","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.380833,17.3325],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.380833,17.3325],"type":"Point"},"properties":{"nombre":"Telesecundaria 1186 Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.173056,17.302778],"type":"Point"},"properties":{"nombre":"General Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.173056,17.302778],"type":"Point"},"properties":{"nombre":"Telesecundaria 242 Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.273611,17.313889],"type":"Point"},"properties":{"nombre":"Juan De La Barrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.256111,17.258056],"type":"Point"},"properties":{"nombre":"Dr. Samuel León Brindis","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2567,17.2594],"type":"Point"},"properties":{"nombre":"Gabriela Mistral","horario":0,"dependencia":"CDI","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.256111,17.258056],"type":"Point"},"properties":{"nombre":"Enrique Rebsamen","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.256111,17.258056],"type":"Point"},"properties":{"nombre":"Telesecundaria 688 Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.110556,17.257222],"type":"Point"},"properties":{"nombre":"Telesecundaria 604 Juan Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.341389,17.363056],"type":"Point"},"properties":{"nombre":"Telesecundaria 825 13 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.147447,14.90885],"type":"Point"},"properties":{"nombre":"Lic Emilio Rabasa Estebanell","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3722,15.1764],"type":"Point"},"properties":{"nombre":"Manacal","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.375833,15.168889],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3628,15.1844],"type":"Point"},"properties":{"nombre":"San Cristobal","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3856,15.2169],"type":"Point"},"properties":{"nombre":"El Tarral","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.229167,16.011389],"type":"Point"},"properties":{"nombre":"Telesecundaria 1292 Rosario Castellanos Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2861,16.0678],"type":"Point"},"properties":{"nombre":"Héroes De Chapultepec (El Limón)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.293333,16.178611],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.275556,16.182778],"type":"Point"},"properties":{"nombre":"Doña Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.227778,16.130556],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.279167,16.266111],"type":"Point"},"properties":{"nombre":"Eliseo Bandala Fernandez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.094167,15.060833],"type":"Point"},"properties":{"nombre":"Telesecundaria 918 Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.099722,15.092222],"type":"Point"},"properties":{"nombre":"Ilhuicamina","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0864,15.0711],"type":"Point"},"properties":{"nombre":"El Desenlace","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.0836,15.0847],"type":"Point"},"properties":{"nombre":"Talquién","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.585,16.481111],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6792,16.3336],"type":"Point"},"properties":{"nombre":"Rafael Ramirez Castañeda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.7114,16.4367],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.6058,16.1825],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.193333,15.963056],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.312778,15.985278],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.115,16.1508],"type":"Point"},"properties":{"nombre":"1O. De Mayo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.221944,15.955],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.970833,16.205556],"type":"Point"},"properties":{"nombre":"24 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4425,16.000556],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.409167,16.000833],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.2906,16.020299],"type":"Point"},"properties":{"nombre":"21 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.456891,16.432459],"type":"Point"},"properties":{"nombre":"San Isidro","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.171944,16.294444],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.4403,16.198899],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.1339,16.3711],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.3661,16.3697],"type":"Point"},"properties":{"nombre":"Joaquín Miguel Gutierrez","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5106,16.4089],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.322222,16.4775],"type":"Point"},"properties":{"nombre":"Armando Guerra","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.415,16.2792],"type":"Point"},"properties":{"nombre":"Ursulo Galván","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.703611,16.236944],"type":"Point"},"properties":{"nombre":"Sta. Rosalia","horario":0,"dependencia":"SALUD","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5844,16.232199],"type":"Point"},"properties":{"nombre":"Nueva Reforma Educativa","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5928,16.2975],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.612222,16.26],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.5053,16.2589],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-93.101944,16.481389],"type":"Point"},"properties":{"nombre":"Emiliano Zapata Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.2436,17.2286],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.429444,17.129167],"type":"Point"},"properties":{"nombre":"Telesecundaria 1171 Miguel Alvarez Del Toro","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.731111,16.621111],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.710278,16.646389],"type":"Point"},"properties":{"nombre":"Telesecundaria 1249 Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.680556,16.588889],"type":"Point"},"properties":{"nombre":"Raul Tellez Chavez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.806944,16.723611],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.851667,16.708333],"type":"Point"},"properties":{"nombre":"Heroes De Mi Patria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.851389,16.708333],"type":"Point"},"properties":{"nombre":"Telesecundaria 1365 Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.841389,16.708333],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.738889,16.741389],"type":"Point"},"properties":{"nombre":"Raza De Bronce","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.738889,16.741389],"type":"Point"},"properties":{"nombre":"Telesecundaria 1023 Juana De Arco","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.833333,16.69],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.774444,16.768611],"type":"Point"},"properties":{"nombre":"Crescencio Rosas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.736111,16.722222],"type":"Point"},"properties":{"nombre":"Liberacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.755556,16.735556],"type":"Point"},"properties":{"nombre":"Primero De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.828611,16.711944],"type":"Point"},"properties":{"nombre":"El Indio Chiapaneco","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.828611,16.711944],"type":"Point"},"properties":{"nombre":"Telesecundaria 892","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.819444,16.727222],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.764722,16.731667],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.751389,16.7025],"type":"Point"},"properties":{"nombre":"Jacinto Canek","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.350556,16.986667],"type":"Point"},"properties":{"nombre":"Rafael Ramirez Castañeda","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.344364,16.977545],"type":"Point"},"properties":{"nombre":"Telesecundaria 1253 Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.436944,16.949167],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.424722,16.885278],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.424108,16.887283],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 143","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.401389,16.947222],"type":"Point"},"properties":{"nombre":"Lic Luis Echeverria Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.409167,16.977778],"type":"Point"},"properties":{"nombre":"Alfonso Caso","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.433889,16.98],"type":"Point"},"properties":{"nombre":"Manuel Avila Camacho","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.433889,16.98],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 154","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.434167,16.872222],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.3875,16.968889],"type":"Point"},"properties":{"nombre":"Los Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.323889,16.944722],"type":"Point"},"properties":{"nombre":"Telesecundaria 1330 Juan De La Barrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.401111,16.888889],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.385833,16.946944],"type":"Point"},"properties":{"nombre":"Alfonso Fabila","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-92.701944,16.933889],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.1819,16.079999],"type":"Point"},"properties":{"nombre":"Luis Echeverria Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2764,16.153099],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3108,16.197199],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2519,16.096699],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3339,16.195799],"type":"Point"},"properties":{"nombre":"Adolfo Ruiz Cortinez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2097,16.2467],"type":"Point"},"properties":{"nombre":"Juan Sabines Gutierrez","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2583,16.2225],"type":"Point"},"properties":{"nombre":"Belisario Dominguez Palencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.15,16.1353],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2981,16.2728],"type":"Point"},"properties":{"nombre":"Plan De Ayutla","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.3619,16.2389],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2222,16.098099],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-91.2214,16.262799],"type":"Point"},"properties":{"nombre":"Justicia Social","horario":0,"dependencia":"SEP","publico":null,"empresa":"ELARA COMUNICACIONES"},"type":"Feature"},{"geometry":{"coordinates":[-106.7956,30.3033],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.512222,30.618611],"type":"Point"},"properties":{"nombre":"Miguel Ahumada","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.243611,29.956389],"type":"Point"},"properties":{"nombre":"Primaria Indigena Comunitaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.1433,29.065],"type":"Point"},"properties":{"nombre":"Maclovio Herrera 2132","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.192778,27.313056],"type":"Point"},"properties":{"nombre":"Plan De Ayala (Allende)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4344,26.9133],"type":"Point"},"properties":{"nombre":"Heroes De Talamantes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.325278,26.987778],"type":"Point"},"properties":{"nombre":"Pueblito De Allende","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.8731,28.6053],"type":"Point"},"properties":{"nombre":"Juventud Minera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.93,28.5864],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.7378,31.5344],"type":"Point"},"properties":{"nombre":"Telesecundaria 6083","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.4283,28.9767],"type":"Point"},"properties":{"nombre":"Abraham Gonzalez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.1264,28.8528],"type":"Point"},"properties":{"nombre":"Niño Artillero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3441,26.9529],"type":"Point"},"properties":{"nombre":"Paula Aun De Aguirre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3431,26.9552],"type":"Point"},"properties":{"nombre":"Mariano Balleza 2096","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3444,27.0167],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.4822,26.4819],"type":"Point"},"properties":{"nombre":"Chihuahua","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3225,26.8694],"type":"Point"},"properties":{"nombre":"La Magdalena","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3222,26.8692],"type":"Point"},"properties":{"nombre":"20 De Noviembre 2107","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3222,26.8692],"type":"Point"},"properties":{"nombre":"Telesecundaria 6164","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7325,26.72],"type":"Point"},"properties":{"nombre":"Gabriel Teporaca","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3875,26.4756],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3875,26.4756],"type":"Point"},"properties":{"nombre":"Secundaria Tecnica 23","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.7392,27.0269],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.7399,27.0258],"type":"Point"},"properties":{"nombre":"Secundaria General Es-30","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6306,26.9583],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6361,26.8356],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8786,26.8911],"type":"Point"},"properties":{"nombre":"Niño Artillero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5325,27.0253],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5325,27.0253],"type":"Point"},"properties":{"nombre":"Telesecundaria 6126","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5325,27.025278],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5067,29.8947],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.9631,29.9439],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5192,29.9186],"type":"Point"},"properties":{"nombre":"Eugenio Prado 2350","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.075,29.8133],"type":"Point"},"properties":{"nombre":"21 De Diciembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7917,29.9192],"type":"Point"},"properties":{"nombre":"Ignacio Aldama","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.023889,26.4125],"type":"Point"},"properties":{"nombre":"Barbechitos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.0542,30.2828],"type":"Point"},"properties":{"nombre":"Cuauhtemoc 2391","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.0208,30.1792],"type":"Point"},"properties":{"nombre":"Juan Mata Ortiz (Pearson)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.0219,30.1819],"type":"Point"},"properties":{"nombre":"Juan Mata Ortiz 2272","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.0936,29.4617],"type":"Point"},"properties":{"nombre":"Telesecundaria 6014","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.0939,29.4615],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon 2146","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.1675,27.8103],"type":"Point"},"properties":{"nombre":"Felipe Carrillo Puerto","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.0258,29.1117],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.0953,28.6831],"type":"Point"},"properties":{"nombre":"El Progreso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.0206,28.8472],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.1014,28.1886],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.169722,28.260833],"type":"Point"},"properties":{"nombre":"Chopeque","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.996389,28.1625],"type":"Point"},"properties":{"nombre":"Rancho De González","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.251389,29.072778],"type":"Point"},"properties":{"nombre":"Colonia Nuevas Delicias","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.2519,29.0483],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5361,27.3931],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"CDI","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5378,27.3945],"type":"Point"},"properties":{"nombre":"Alvaro Obregon Salido 2768","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5363,27.3938],"type":"Point"},"properties":{"nombre":"Gran Morelos 2015","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5353,27.3929],"type":"Point"},"properties":{"nombre":"Roberto Cruz 2664","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5384,27.3941],"type":"Point"},"properties":{"nombre":"Secundaria General Es-97 Toribio Ortega","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.536111,27.393056],"type":"Point"},"properties":{"nombre":"Francisco R Almada","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.536111,27.393056],"type":"Point"},"properties":{"nombre":"Telesecundaria 6229","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5306,27.6358],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.6467,27.2425],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5608,27.7517],"type":"Point"},"properties":{"nombre":"Benito Juárez","horario":0,"dependencia":"CDI","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5606,27.7522],"type":"Point"},"properties":{"nombre":"Ignacio Valenzuela","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.560556,27.752222],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.644167,27.204444],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.4097,27.3978],"type":"Point"},"properties":{"nombre":"Doce De Octubre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5256,28.0911],"type":"Point"},"properties":{"nombre":"Nicolas Bravo 2291","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6163,30.1136],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana 2063","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5686,30.0114],"type":"Point"},"properties":{"nombre":"Centro Regional De Educ Int Miguel Hidalgo 2402","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.7119,29.2839],"type":"Point"},"properties":{"nombre":"Felipe Carrillo Puerto","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6717,29.2331],"type":"Point"},"properties":{"nombre":"Nueva Juventud","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.2494,26.7056],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.1739,27.0603],"type":"Point"},"properties":{"nombre":"Rocheachi","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.1733,27.06],"type":"Point"},"properties":{"nombre":"Gabino Barreda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.2767,26.9464],"type":"Point"},"properties":{"nombre":"Cuitlahuac","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5403,27.3014],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"CDI","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5397,27.3011],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5397,27.3011],"type":"Point"},"properties":{"nombre":"Gabriel Teporaca","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.2917,27.4486],"type":"Point"},"properties":{"nombre":"5 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.3247,27.0867],"type":"Point"},"properties":{"nombre":"Rosario Castellanos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.1417,31.4256],"type":"Point"},"properties":{"nombre":"Ley Seis De Enero 2012","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.1714,31.4436],"type":"Point"},"properties":{"nombre":"Francisco Villa 2530","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.0553,31.3492],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.1394,31.4025],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.8128,25.7522],"type":"Point"},"properties":{"nombre":"Ricardo Ramirez Carrillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.8128,25.7522],"type":"Point"},"properties":{"nombre":"Secundaria General Es-82","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.812778,25.752222],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.0228,26.4594],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7711,26.2286],"type":"Point"},"properties":{"nombre":"Telesecundaria Federal","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.6564,25.7806],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.6564,25.7806],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.6558,25.7822],"type":"Point"},"properties":{"nombre":"Mesa De San Rafael","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.4381,26.3439],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.6211,26.1856],"type":"Point"},"properties":{"nombre":"San Pedro De Chinata (Ranchería San Pedro)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.6172,26.1872],"type":"Point"},"properties":{"nombre":"Escuela Primaria Indigena","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.617222,26.187222],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.05,26.2122],"type":"Point"},"properties":{"nombre":"Escuela Primaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.705,26.130278],"type":"Point"},"properties":{"nombre":"Eduardo Omarini","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7042,26.1314],"type":"Point"},"properties":{"nombre":"Eduardo Omarini","horario":0,"dependencia":"CDI","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.705,26.1303],"type":"Point"},"properties":{"nombre":"Niño Tarahumara","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.705,26.1303],"type":"Point"},"properties":{"nombre":"Jose Revueltas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7797,26.0803],"type":"Point"},"properties":{"nombre":"Las Yerbitas (Aserradero Yerbitas)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7775,26.0764],"type":"Point"},"properties":{"nombre":"Carmen Vazquez De Canizo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7775,26.0764],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.0233,26.4122],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.8197,26.1983],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.9286,25.8069],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.9694,25.7617],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.6442,25.7906],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.1533,25.8583],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.284167,27.371667],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.4047,27.1203],"type":"Point"},"properties":{"nombre":"Mariano Escobedo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.4017,28.5211],"type":"Point"},"properties":{"nombre":"Benito Juarez 2068","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.42,28.5319],"type":"Point"},"properties":{"nombre":"Libertad 2511","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.3997,28.2825],"type":"Point"},"properties":{"nombre":"Morelos 2202","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.1867,28.3528],"type":"Point"},"properties":{"nombre":"19 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8003,28.4764],"type":"Point"},"properties":{"nombre":"Santos Degollado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.4722,28.3503],"type":"Point"},"properties":{"nombre":"5 De Mayo 2227","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.4397,28.2494],"type":"Point"},"properties":{"nombre":"Lázaro Cárdenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.4911,28.895],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla 2275","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8158,29.7211],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8,29.7053],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.7667,29.6661],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.2853,30.8517],"type":"Point"},"properties":{"nombre":"Telesecundaria 6157","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.6433,30.8031],"type":"Point"},"properties":{"nombre":"Telesecundaria 6154","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.7144,30.9131],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3408,26.7528],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9331,26.8861],"type":"Point"},"properties":{"nombre":"Arturo Gamiz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.4772,31.3431],"type":"Point"},"properties":{"nombre":"Unidad Nacional","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.2542,31.5172],"type":"Point"},"properties":{"nombre":"Plan De Ayala 2135","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.2014,31.4583],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.2353,31.4925],"type":"Point"},"properties":{"nombre":"Angel Posada 2469","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4314,28.4255],"type":"Point"},"properties":{"nombre":"Jose T Cuellar 2485","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4539,28.4469],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4511,28.4131],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.2025,27.031944],"type":"Point"},"properties":{"nombre":"Salaices","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.010278,27.022222],"type":"Point"},"properties":{"nombre":"Santa María (López)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.01,27.0214],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.0981,29.3875],"type":"Point"},"properties":{"nombre":"Año De Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.9313,29.3531],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.3906,29.6478],"type":"Point"},"properties":{"nombre":"Cristobal Colon 2345","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.4514,29.6444],"type":"Point"},"properties":{"nombre":"Division Del Norte 2231","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.025,29.4806],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.1425,29.2847],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.6678,29.2394],"type":"Point"},"properties":{"nombre":"Dolores Carbajal De Degortari","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9059,29.1068],"type":"Point"},"properties":{"nombre":"Aquiles Serdan 2392","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9118,29.1042],"type":"Point"},"properties":{"nombre":"Heroes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.456389,26.681667],"type":"Point"},"properties":{"nombre":"Santa Rosalía (La Maroma)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.595,28.3314],"type":"Point"},"properties":{"nombre":"5 De Febrero 2311","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5117,28.385],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4275,28.3564],"type":"Point"},"properties":{"nombre":"Fray Pedro De Gante 2309","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6775,26.6708],"type":"Point"},"properties":{"nombre":"Benito Juárez","horario":0,"dependencia":"CDI","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6775,26.670833],"type":"Point"},"properties":{"nombre":"Morelos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6757,26.6714],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6735,26.669],"type":"Point"},"properties":{"nombre":"Mariano Arista","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6755,26.6707],"type":"Point"},"properties":{"nombre":"Telesecundaria 6128","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.7756,26.3806],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6689,26.5803],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8194,26.5086],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.6189,26.4167],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.854722,26.491944],"type":"Point"},"properties":{"nombre":"Lajitas De Palmira","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5222,28.1493],"type":"Point"},"properties":{"nombre":"Juventino Rosas 2210","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.5219,28.1484],"type":"Point"},"properties":{"nombre":"Secundaria Tecnica 12","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.610556,28.106389],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.6106,28.1053],"type":"Point"},"properties":{"nombre":"Jose Ma Caraveo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.7517,28.2286],"type":"Point"},"properties":{"nombre":"Rafael Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.6436,28.0361],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.5417,29.0903],"type":"Point"},"properties":{"nombre":"Independencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.9603,29.1683],"type":"Point"},"properties":{"nombre":"Josefa O De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7369,27.4704],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7333,27.4729],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7338,27.4729],"type":"Point"},"properties":{"nombre":"Secundaria Estatal 3048 Ernesto Lozano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7672,27.2614],"type":"Point"},"properties":{"nombre":"Redencion Del Tarahumara","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.6983,27.4558],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.698889,27.456111],"type":"Point"},"properties":{"nombre":"El Terrero (Nonoava)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.3671,28.1938],"type":"Point"},"properties":{"nombre":"Melchor Ocampo 2211","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.3671,28.1941],"type":"Point"},"properties":{"nombre":"Telesecundaria 6106","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.366944,28.193333],"type":"Point"},"properties":{"nombre":"Melchor Ocampo (Ocampo)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.2086,28.2058],"type":"Point"},"properties":{"nombre":"Basaseachi","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.25,28.2189],"type":"Point"},"properties":{"nombre":"Pascual Ortiz Rubio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.1372,28.1011],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":0,"dependencia":"CDI","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.1369,28.0978],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.1369,28.0978],"type":"Point"},"properties":{"nombre":"Telesecundaria 6133","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.0208,28.1153],"type":"Point"},"properties":{"nombre":"Constitucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.3675,28.0764],"type":"Point"},"properties":{"nombre":"Simon Bolivar 2395","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.2828,28.1886],"type":"Point"},"properties":{"nombre":"Huajumar (San Isidro Huajumar)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.649444,29.026111],"type":"Point"},"properties":{"nombre":"Escuela Primaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.0116,31.3741],"type":"Point"},"properties":{"nombre":"Lucas Balderas 2731","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.9628,31.3303],"type":"Point"},"properties":{"nombre":"Daniel Delgadillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.8807,31.2342],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon 2407","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.6111,28.4378],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5797,28.1447],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5814,28.1232],"type":"Point"},"properties":{"nombre":"Evolucion Juvenil 2307","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5472,28.4961],"type":"Point"},"properties":{"nombre":"Graciano Sanchez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.295833,27.319167],"type":"Point"},"properties":{"nombre":"Valle Del Rosario","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.4047,27.2],"type":"Point"},"properties":{"nombre":"Nicolas Bravo 2119","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.313056,27.136389],"type":"Point"},"properties":{"nombre":"Juan Mendoza","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.353333,27.209444],"type":"Point"},"properties":{"nombre":"San Javier","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3533,27.2086],"type":"Point"},"properties":{"nombre":"Felipe Angeles 2120","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.7883,27.8392],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3425,28.1156],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3404,28.1541],"type":"Point"},"properties":{"nombre":"Niños Heroes 2266","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.9003,28.7092],"type":"Point"},"properties":{"nombre":"Telesecundaria 6058","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.3722,28.4219],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.372222,28.421944],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.3775,28.4219],"type":"Point"},"properties":{"nombre":"Yepachi","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.2428,28.7164],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.2671,27.0539],"type":"Point"},"properties":{"nombre":"Marin Portillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.9145,27.211],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.915,27.2158],"type":"Point"},"properties":{"nombre":"Secundaria General Es-44","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.914493,27.210957],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.0661,27.4069],"type":"Point"},"properties":{"nombre":"Bahuichivo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.0672,27.4089],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.067222,27.408889],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.0283,27.1361],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8944,27.1775],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"CDI","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8925,27.1722],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8925,27.172222],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.894444,27.1775],"type":"Point"},"properties":{"nombre":"Telesecundaria Federalizada","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.889167,27.495],"type":"Point"},"properties":{"nombre":"Escuela Primaria Bilingue","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.889167,27.495],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.889167,27.495],"type":"Point"},"properties":{"nombre":"Melchor Ocampo 2573","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8892,27.495],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.8892,27.495],"type":"Point"},"properties":{"nombre":"Secundaria General Es-72","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.9897,27.1047],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.796389,27.385],"type":"Point"},"properties":{"nombre":"Guagueyvo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.7958,27.3847],"type":"Point"},"properties":{"nombre":"Francisco J Mujica","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.696667,27.274167],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.2144,27.8678],"type":"Point"},"properties":{"nombre":"Jose Albino Lopez Carrasco 2213","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.2144,27.8677],"type":"Point"},"properties":{"nombre":"Secundaria Por Cooperacion 8335","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.308611,27.913889],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.3081,27.9136],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.3169,27.8486],"type":"Point"},"properties":{"nombre":"Venustiano Carranza 2459","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-108.1781,27.9989],"type":"Point"},"properties":{"nombre":"Niños Heroes 2024","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6386,24.615],"type":"Point"},"properties":{"nombre":"Donato Guerra","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3925,24.3772],"type":"Point"},"properties":{"nombre":"Heroes De La Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3925,24.3772],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 229","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.8375,24.6397],"type":"Point"},"properties":{"nombre":"El Progreso (Los Pinos)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5303,24.4614],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magón","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.9289,24.7606],"type":"Point"},"properties":{"nombre":"La Soledad","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.9283,24.7603],"type":"Point"},"properties":{"nombre":"General Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.5467,25.1239],"type":"Point"},"properties":{"nombre":"Francisco Zarco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.5466,25.1246],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 84","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7219,24.9794],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7219,24.9794],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 238","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7728,25.0864],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7728,25.0864],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 72","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.9856,25.1364],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.9856,25.1364],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 110","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7375,24.1603],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7375,24.1603],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 167","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7706,25.0956],"type":"Point"},"properties":{"nombre":"Prof Jose Tuero Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8082,24.2939],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.5736,24.7083],"type":"Point"},"properties":{"nombre":"12 De Diciembre (Sombreretillo)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.5722,24.7072],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8886,24.4425],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8792,24.9525],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8792,24.9525],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 325","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7178,24.2167],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 9","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7178,24.2167],"type":"Point"},"properties":{"nombre":"Ignacio Lopez Rayon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8475,25.0389],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8475,25.0389],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 10","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8058,24.9272],"type":"Point"},"properties":{"nombre":"Pasaje","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8075,24.9275],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8075,24.9275],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 11","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7908,25.1192],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7908,25.1192],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7961,24.2483],"type":"Point"},"properties":{"nombre":"La Purísima","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7953,24.2469],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7564,24.3833],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 73","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7564,24.3833],"type":"Point"},"properties":{"nombre":"Felipe Pescador","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.6208,24.9428],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.6208,24.9428],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 358","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.6928,24.8308],"type":"Point"},"properties":{"nombre":"Calixto Contreras","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.6458,24.8472],"type":"Point"},"properties":{"nombre":"Jesus Gonzalez Ortega","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.6458,24.8472],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 525","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7939,25.0925],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.72,25.0375],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.72,25.0375],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 591","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.6921,24.8636],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.6871,24.8669],"type":"Point"},"properties":{"nombre":"General Felipe Angeles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7847,24.9092],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4328,24.0633],"type":"Point"},"properties":{"nombre":"El Arenal (San Jerónimo)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.33972222,23.92583333],"type":"Point"},"properties":{"nombre":"Telesecundaria No 113","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.33972222,23.92583333],"type":"Point"},"properties":{"nombre":"Gabriel Ramos Millan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4522,24.2828],"type":"Point"},"properties":{"nombre":"General Carlos Real","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4189,23.8419],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3822,24.0203],"type":"Point"},"properties":{"nombre":"Jesus Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.14861111,24.37111111],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.14861111,24.37111111],"type":"Point"},"properties":{"nombre":"Telesecundaria No 75","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3394,24.0444],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6661,24.2072],"type":"Point"},"properties":{"nombre":"Juan B. Ceballos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.48972222,23.79194444],"type":"Point"},"properties":{"nombre":"Nicolas Romero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4606,24.0572],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4475,24.05555556],"type":"Point"},"properties":{"nombre":"Telesecundaria No 117","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.49805556,24.01083333],"type":"Point"},"properties":{"nombre":"Secundaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4983,24.0111],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6144,23.8919],"type":"Point"},"properties":{"nombre":"Santiago Bayacora","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4092,23.9828],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2264,24.6881],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2847,24.7275],"type":"Point"},"properties":{"nombre":"Esfuerzo Del Campesino","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2847,24.7275],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 145","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.1606,24.8481],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.1606,24.8481],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 210","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2925,24.6422],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 144","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2933,24.6425],"type":"Point"},"properties":{"nombre":"José Isabel Robles","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2925,24.6422],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.1783,24.7806],"type":"Point"},"properties":{"nombre":"Victoria De Durango","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.1783,24.7806],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 350","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2356,24.9008],"type":"Point"},"properties":{"nombre":"Cuatro De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2356,24.9008],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 147","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.415,25.1831],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.415,25.1831],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 607","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.1311,24.4406],"type":"Point"},"properties":{"nombre":"San José De Reyes","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.2022,24.59],"type":"Point"},"properties":{"nombre":"General Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3206,25.09],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4072,25.7761],"type":"Point"},"properties":{"nombre":"Arcinas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3833,25.8314],"type":"Point"},"properties":{"nombre":"Pedro Sandoval","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3942,25.8356],"type":"Point"},"properties":{"nombre":"Curso Comunitario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4308,25.7433],"type":"Point"},"properties":{"nombre":"Esmeralda","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3517,25.8033],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3483,25.8569],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3575,25.8089],"type":"Point"},"properties":{"nombre":"Niños Heroes De Chapultepec","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3567,25.8297],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.5717,25.8594],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y P","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.5717,25.8594],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 254","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3442,25.8256],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.8083,25.7217],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.8083,25.7217],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 261","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.7869,25.7703],"type":"Point"},"properties":{"nombre":"El Zape","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.3,25.9408],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.9153,26.2472],"type":"Point"},"properties":{"nombre":"Bruno Martinez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.9184,26.2444],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 25","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7306,25.7344],"type":"Point"},"properties":{"nombre":"Independencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7306,25.7344],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 364","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.0819,26.2047],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.0819,26.2047],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 38","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.805,26.3222],"type":"Point"},"properties":{"nombre":"Once De Abril","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7417,25.835],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7417,25.835],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 104","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.0328,25.6914],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.0328,25.6914],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 263","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.0058,25.6128],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.0058,25.6128],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 190","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.2019,26.1028],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 265","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.5106,25.29],"type":"Point"},"properties":{"nombre":"Templo Del Trabajador","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.5106,25.29],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 437","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8733,25.7317],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8733,25.7317],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 269","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.6939,25.2003],"type":"Point"},"properties":{"nombre":"Margarito Machado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0956,26.1361],"type":"Point"},"properties":{"nombre":"Francisco Zarco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0956,26.1361],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 271","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7125,25.8703],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.7125,25.8703],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 392","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1489,26.6408],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1489,26.6408],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 273","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.6228,25.8411],"type":"Point"},"properties":{"nombre":"22 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.545,23.0778],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 423","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3031,23.0086],"type":"Point"},"properties":{"nombre":"Los Charcos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6317,22.9592],"type":"Point"},"properties":{"nombre":"Quetzalcoatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4931,22.525],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4931,22.525],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 69","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2633,23.1497],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.525,22.8644],"type":"Point"},"properties":{"nombre":"Llano Grande","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5253,22.8644],"type":"Point"},"properties":{"nombre":"Fray Pedro De Gante","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5253,22.8644],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 366","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.503889,22.5525],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6142,22.7042],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6142,22.7042],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 486","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.614444,22.704444],"type":"Point"},"properties":{"nombre":"San Pedro De Xícora","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5992,22.9158],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5992,22.9158],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 543","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.756667,23.081944],"type":"Point"},"properties":{"nombre":"Santiago Teneraca","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3862,23.4847],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 28","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3886,23.4917],"type":"Point"},"properties":{"nombre":"J Patrocinio Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.729167,22.881389],"type":"Point"},"properties":{"nombre":"San Francisco De Ocotán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.561389,23.148611],"type":"Point"},"properties":{"nombre":"Platanitos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.461667,22.733333],"type":"Point"},"properties":{"nombre":"Muruata","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3947,22.4453],"type":"Point"},"properties":{"nombre":"Bancos De Calitique","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3917,22.4414],"type":"Point"},"properties":{"nombre":"Lic Gustavo Diaz Ordaz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3917,22.4414],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 488","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0644,25.2589],"type":"Point"},"properties":{"nombre":"Diez De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2056,25.1931],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2056,25.1931],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 195","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1769,25.2256],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1769,25.2256],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 323","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0906,25.2664],"type":"Point"},"properties":{"nombre":"Hidalgo De Dolores","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0906,25.2664],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 322","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0172,25.2639],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0172,25.2639],"type":"Point"},"properties":{"nombre":"Ricardo Castro","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0486,25.2833],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0486,25.2833],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 275","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9994,25.2933],"type":"Point"},"properties":{"nombre":"Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9994,25.2933],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 83","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1281,25.2425],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1281,25.2425],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 542","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9847,25.2628],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0528,25.2608],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1865,23.8425],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2653,23.9158],"type":"Point"},"properties":{"nombre":"Martires De Rio Blanco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0919,23.8033],"type":"Point"},"properties":{"nombre":"Francisco Murguia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0553,23.8556],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1775,23.8514],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 37","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2539,23.9181],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2517,24.0289],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3728,26.3789],"type":"Point"},"properties":{"nombre":"Canutillo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3311,26.1642],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3311,26.1642],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 127","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.2742,26.3747],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.2742,26.3747],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 131","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.6685,26.4576],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.6411,26.5019],"type":"Point"},"properties":{"nombre":"Orestes Pereyra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.6411,26.5019],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 129","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.2214,25.4478],"type":"Point"},"properties":{"nombre":"Siete De Enero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.485,24.4925],"type":"Point"},"properties":{"nombre":"Francisco Javier Mina (Corralejo)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.035,24.8469],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 477","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.035,24.8469],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2167,24.9133],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 197","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2167,24.9133],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0519,24.0519],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0259,24.0332],"type":"Point"},"properties":{"nombre":"General Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0519,24.0519],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 87","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1989,23.9794],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9983,23.8361],"type":"Point"},"properties":{"nombre":"Jose Mariano Jimenez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9661,24.0122],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9661,24.0122],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 198","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9175,24.0208],"type":"Point"},"properties":{"nombre":"Francisco Zarco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9175,24.0208],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 72","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0564,24.1856],"type":"Point"},"properties":{"nombre":"Eva Samano De Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.6877,23.732],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5928,23.6483],"type":"Point"},"properties":{"nombre":"Chavarría Nuevo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3872,23.7989],"type":"Point"},"properties":{"nombre":"Gabriela Mistral","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3872,23.7989],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 56","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.0428,23.4103],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 54","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5042,23.3544],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4919,23.3625],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4919,23.3625],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 63","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3772,23.5708],"type":"Point"},"properties":{"nombre":"La Peña","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.6531,23.6042],"type":"Point"},"properties":{"nombre":"Suave Patria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.6531,23.6042],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 64","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3708,23.3836],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3708,23.3836],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 65","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.1531,23.3856],"type":"Point"},"properties":{"nombre":"San Bernardino De Milpillas Chico","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.1539,23.3869],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.1539,23.3869],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 105","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.51,23.6114],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 135","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.51,23.6114],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3592,23.3283],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.3592,23.3283],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 58","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4947,23.7294],"type":"Point"},"properties":{"nombre":"Don Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4947,23.7294],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 316","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5194,23.7711],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5194,23.7711],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 315","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6547,25.3106],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6547,25.3106],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 9","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6092,25.3969],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6092,25.3969],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 340","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5697,25.2031],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5808,25.0933],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5808,25.0933],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 200","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4864,25.0469],"type":"Point"},"properties":{"nombre":"General Leandro Valle","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4864,25.0469],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 201","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5036,25.0808],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 202","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5808,25.2672],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 278","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5808,25.2672],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6225,25.2656],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.6225,25.2656],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 137","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5719,25.2367],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5719,25.2367],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 203","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4994,26.0219],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.805278,24.060833],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.548333,24.113056],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.8922,24.2539],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.8922,24.2539],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 378","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.660833,24.095278],"type":"Point"},"properties":{"nombre":"San Luis De Villa Corona","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.47,24.1867],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.47,24.1867],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 305","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.6267,24.6344],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.6267,24.6344],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 280","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.8033,24.685],"type":"Point"},"properties":{"nombre":"Justo Sierra Mendez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.764,24.7264],"type":"Point"},"properties":{"nombre":"Curso Comunitario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.8033,24.685],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 281","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.628889,24.54],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3225,24.8128],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.3225,24.8128],"type":"Point"},"properties":{"nombre":"Telesecundaria Num. 140","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.5028,24.7928],"type":"Point"},"properties":{"nombre":"General De Division Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4556,24.9042],"type":"Point"},"properties":{"nombre":"Francisco Primo De Verdad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4556,24.9042],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 99","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4336,24.8969],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4336,24.8969],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 496","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4469,24.8775],"type":"Point"},"properties":{"nombre":"Heroinas Mexicanas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4469,24.8775],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 98","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4911,24.7019],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4911,24.7019],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 100","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4689,24.7042],"type":"Point"},"properties":{"nombre":"Emilio Portes Gil","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4689,24.7042],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 286","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2754,25.418],"type":"Point"},"properties":{"nombre":"Francisco Gomez Palacio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2908,25.5622],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 207","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.2912,25.5631],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4803,24.5556],"type":"Point"},"properties":{"nombre":"General Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4803,24.5556],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 101","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.345,24.6011],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.345,24.6011],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 142","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.425,24.5564],"type":"Point"},"properties":{"nombre":"Don Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.425,24.5564],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 279","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4406,24.3808],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4406,24.3808],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 141","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.5444,24.2953],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.5444,24.2953],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 102","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4472,25.1669],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 287","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.4472,25.1669],"type":"Point"},"properties":{"nombre":"Juan Nevarez Acosta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5025,25.1617],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.5025,25.1617],"type":"Point"},"properties":{"nombre":"Silvestre Revueltas Sanchez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.173611,25.053611],"type":"Point"},"properties":{"nombre":"La Palestina","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.1747,25.0514],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1325,23.4347],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.1325,23.4347],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 331","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0614,23.5911],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0614,23.5911],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 211","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.601389,24.613611],"type":"Point"},"properties":{"nombre":"Amaculí","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.738611,24.811667],"type":"Point"},"properties":{"nombre":"Chacala","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.4053,24.6189],"type":"Point"},"properties":{"nombre":"General Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.4053,24.6189],"type":"Point"},"properties":{"nombre":"Escuela Secundaria General Siervo De La Nacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.405833,24.619167],"type":"Point"},"properties":{"nombre":"Los Remedios (Tamazula)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-107.116389,25.492222],"type":"Point"},"properties":{"nombre":"El Limón De Copalquín","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.9064,25.6403],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.9064,25.6403],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 351","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.9536,25.5597],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.9536,25.5597],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 156","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3564,25.8711],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4183,25.9364],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.3739,25.9281],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.4003,25.9044],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.5699,25.2115],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.5712,25.2112],"type":"Point"},"properties":{"nombre":"Escuela Secundaria Tecnica Num 42","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.783889,25.205278],"type":"Point"},"properties":{"nombre":"El Platanar De Sianori","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-106.761389,25.270278],"type":"Point"},"properties":{"nombre":"Sianori","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0067,23.7469],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0067,23.7469],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8464,23.7744],"type":"Point"},"properties":{"nombre":"La Corregidora","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.8464,23.7744],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 159","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.9408,25.0053],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7728,24.8722],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 216","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.7728,24.8722],"type":"Point"},"properties":{"nombre":"Anahuac","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.9906,24.8217],"type":"Point"},"properties":{"nombre":"Triunfo Del Proletariado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.8625,24.8508],"type":"Point"},"properties":{"nombre":"Niño Artillero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.9697,24.8522],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.8792,24.9522],"type":"Point"},"properties":{"nombre":"21 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.55605,20.57505],"type":"Point"},"properties":{"nombre":"General Alvaro Obregon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.43353,20.4143],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.6162,20.32814],"type":"Point"},"properties":{"nombre":"15 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.52072,20.56014],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.60191,20.31614],"type":"Point"},"properties":{"nombre":"Diez De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.4435,20.43214],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.57994,20.32853],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.59883,20.34908],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.39208,20.44892],"type":"Point"},"properties":{"nombre":"Ignacio Aldama","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.55527,20.65378],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 309","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.54272,20.62806],"type":"Point"},"properties":{"nombre":"Leyes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.865052,19.955977],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.621992,20.00891],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.829988,20.079926],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.840673,20.063717],"type":"Point"},"properties":{"nombre":"Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.849367,20.108938],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.623122,19.96377],"type":"Point"},"properties":{"nombre":"Presidente Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.79841,20.80517],"type":"Point"},"properties":{"nombre":"Hermanos Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.66498,20.81274],"type":"Point"},"properties":{"nombre":"Ignacio Lopez Rayon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.72682,21.05523],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.59824,20.88572],"type":"Point"},"properties":{"nombre":"General Miguel Aleman","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.56024,21.01273],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 805","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.60768,20.72753],"type":"Point"},"properties":{"nombre":"Jose Mariano Abasolo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.59477,21.09022],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.57613,20.86462],"type":"Point"},"properties":{"nombre":"Niños Heroes De Chapultepec","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.82864,20.81995],"type":"Point"},"properties":{"nombre":"Profr Claudio Cortes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.60796,20.9295],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.5133,20.89039],"type":"Point"},"properties":{"nombre":"Profr Graciano Sanchez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.73051,21.00642],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.93566,20.90757],"type":"Point"},"properties":{"nombre":"Luis Ferro Medina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.65578,20.86027],"type":"Point"},"properties":{"nombre":"Naciones Unidas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.64079,20.88409],"type":"Point"},"properties":{"nombre":"General Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.77119,21.0201],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.57299,20.92113],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.80524,20.83841],"type":"Point"},"properties":{"nombre":"Juan Aldama","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.54411,20.8741],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.52306,20.3675],"type":"Point"},"properties":{"nombre":"Maestro Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.52778,20.39556],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.590453,20.557555],"type":"Point"},"properties":{"nombre":"Veinte De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.641997,20.628879],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.6038,20.69537],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.73833,21.27889],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.76278,21.25861],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.84666,21.25972],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.87222,21.18444],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 920","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.86367,20.77701],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.86511,20.82723],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.91833,20.70292],"type":"Point"},"properties":{"nombre":"Presidente Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.89997,20.72181],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.90278,20.69881],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.93642,20.78933],"type":"Point"},"properties":{"nombre":"Leyes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.663962,20.77549],"type":"Point"},"properties":{"nombre":"Constitucion De 1857","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.86389,20.76944],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.635955,20.711321],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.94547,20.72128],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.89239,20.71861],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.36561,20.22797],"type":"Point"},"properties":{"nombre":"Plan De Once Anos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.41119,20.19049],"type":"Point"},"properties":{"nombre":"Profr Jose R Muñiz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.36131,20.26683],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.94585,20.374848],"type":"Point"},"properties":{"nombre":"Felipe Carrillo Puerto","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.64779,20.60437],"type":"Point"},"properties":{"nombre":"Francisco Javier Mina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.30737,21.10715],"type":"Point"},"properties":{"nombre":"Primero De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.35506,21.13254],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.34151,21.16262],"type":"Point"},"properties":{"nombre":"Amanecer","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.722032,21.236544],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.728674,21.103072],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.720783,21.252513],"type":"Point"},"properties":{"nombre":"Mariano Abasolo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.005774,21.206505],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.69381,21.197941],"type":"Point"},"properties":{"nombre":"General Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.026874,20.913694],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.698748,21.218342],"type":"Point"},"properties":{"nombre":"Heroes De Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.857563,21.29549],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.683733,21.148957],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.39837,21.10083],"type":"Point"},"properties":{"nombre":"Octavio Paz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.22476,20.99065],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 401","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.13094,21.11102],"type":"Point"},"properties":{"nombre":"Alfredo Nobel","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.14017,20.9135],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 322","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.30923,20.90559],"type":"Point"},"properties":{"nombre":"Dr Jose Maria Luis Mora","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.30751,20.87548],"type":"Point"},"properties":{"nombre":"Carlos Linneo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.30275,20.9694],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 865","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.25421,21.08868],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 893","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.24336,20.8584],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 866","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.19027,21.00311],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 225","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.39641,21.08577],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.39619,21.08751],"type":"Point"},"properties":{"nombre":"Naciones Unidas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.42888,21.10956],"type":"Point"},"properties":{"nombre":"Jose Noriega","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.32317,20.83976],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 864","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.37768,21.07181],"type":"Point"},"properties":{"nombre":"Luis Pasteur","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.33534,21.05828],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 402","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.27774,21.11143],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.27678,21.11195],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 1019","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.31619,20.85889],"type":"Point"},"properties":{"nombre":"Juan Rulfo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.36103,21.08562],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.36234,21.08861],"type":"Point"},"properties":{"nombre":"El Nigromante","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.30093,20.95133],"type":"Point"},"properties":{"nombre":"Telesecundaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.34751,20.85135],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.34624,20.85003],"type":"Point"},"properties":{"nombre":"Luis Pasteur","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.27918,20.92957],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 91","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3924,21.12562],"type":"Point"},"properties":{"nombre":"Jose Ma Pino Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.39326,21.12565],"type":"Point"},"properties":{"nombre":"Tomas Alva Edison","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.21857,20.9161],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.21782,20.91691],"type":"Point"},"properties":{"nombre":"Isaac Newton","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3311,20.93001],"type":"Point"},"properties":{"nombre":"Jose Joaquin Fernandez De Lizardi","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.27026,21.04807],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 441","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.29964,20.93305],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 44","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.19885,21.06724],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 98","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.192,20.89771],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 89","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.192,20.89771],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 1096","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.22839,20.89041],"type":"Point"},"properties":{"nombre":"Manuel Gutierrez Najera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3168,21.12443],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.31722,21.12694],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 1074","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.25152,20.90659],"type":"Point"},"properties":{"nombre":"General Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.25103,20.90692],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 448","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.27183,20.8574],"type":"Point"},"properties":{"nombre":"Enrique Beltran","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.22784,21.11258],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 871","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.46567,20.33018],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.40278,20.75519],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.46711,20.60656],"type":"Point"},"properties":{"nombre":"Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.48464,20.54175],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.36166,20.78142],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.34783,20.82714],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.43772,20.74108],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.42511,20.60511],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.37073,20.82378],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.37217,20.82167],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 110","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.34197,20.82928],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.41489,20.60186],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.35125,20.83503],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.51728,20.75231],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.42533,20.56736],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.52201,20.24759],"type":"Point"},"properties":{"nombre":"Francisco Montes De Oca","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.46713,20.36176],"type":"Point"},"properties":{"nombre":"Plan De Iguala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.39278,20.04956],"type":"Point"},"properties":{"nombre":"General Heriberto Jara","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.64268,20.17473],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.60626,20.22119],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.44282,20.14192],"type":"Point"},"properties":{"nombre":"General Felipe Angeles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.45996,20.12077],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.49104,20.24978],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.41064,20.32867],"type":"Point"},"properties":{"nombre":"Pipila","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.52731,20.09255],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.50512,20.18304],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.50084,20.2732],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.54778,20.32556],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.62812,20.30195],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.38882,20.03526],"type":"Point"},"properties":{"nombre":"Jose Guadalupe Posada","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.41321,20.02843],"type":"Point"},"properties":{"nombre":"Luis Chavez Orozco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.46914,20.28258],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.58224,20.18151],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.58974,20.17499],"type":"Point"},"properties":{"nombre":"General Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.431944,20.036111],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 1110","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.39629,20.32368],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.5724,20.07491],"type":"Point"},"properties":{"nombre":"Presidente Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.53522,20.13368],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.47156,20.06207],"type":"Point"},"properties":{"nombre":"Fray Servando Teresa De Mier","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.49279,20.20729],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.62414,20.2953],"type":"Point"},"properties":{"nombre":"Batalla De Puebla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.46968,20.20338],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.4856,20.0264],"type":"Point"},"properties":{"nombre":"S N T E","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.62286,20.16621],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.45411,20.38189],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.48078,20.27954],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.54083,20.24838],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.64828,20.29321],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.61546,20.33422],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.4928,20.11392],"type":"Point"},"properties":{"nombre":"Plan De Guadalupe","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.47708,20.23063],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.5728,20.13688],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.58354,20.18912],"type":"Point"},"properties":{"nombre":"Division Del Norte","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.45345,20.16383],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.47846,20.12661],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.50312,21.04055],"type":"Point"},"properties":{"nombre":"Pino Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.61306,20.94169],"type":"Point"},"properties":{"nombre":"Praxedis Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.64225,20.93704],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.70521,21.00036],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.64684,20.96193],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.69327,20.99866],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.62289,21.00638],"type":"Point"},"properties":{"nombre":"Veinte De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.6999,20.91824],"type":"Point"},"properties":{"nombre":"Alberto Teran","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.49101,21.03649],"type":"Point"},"properties":{"nombre":"Enrique C Rebsamen","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.39497,21.15562],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.50772,21.0301],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.67152,20.92997],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.50255,21.09595],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.5786,21.01789],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.60519,20.99991],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.55268,21.08431],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 961","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.41086,21.62817],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.46852,21.60866],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.46886,21.47225],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.640761,20.337463],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.90436,20.205],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.845714,20.284114],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.90125,20.23508],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.847203,20.319186],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.871692,20.332522],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.629739,20.507194],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.88989,20.25144],"type":"Point"},"properties":{"nombre":"Pipila","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.63892,20.33322],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.92039,20.38939],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.782056,20.308553],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.850842,20.394022],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.73008,20.28967],"type":"Point"},"properties":{"nombre":"General Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.932469,20.249677],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.859802,20.21333],"type":"Point"},"properties":{"nombre":"Luis Villarreal","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.844664,20.269275],"type":"Point"},"properties":{"nombre":"Pensador Mexicano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.91111,20.44186],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.897564,20.313233],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.910089,20.283841],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.94656,20.43736],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.768764,20.5802],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.90489,20.39197],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.878231,20.292583],"type":"Point"},"properties":{"nombre":"Filomeno Mata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.69178,20.21406],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.67381,20.34894],"type":"Point"},"properties":{"nombre":"Manuel Doblado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.83305,20.22622],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.825686,20.399438],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.6272,20.48472],"type":"Point"},"properties":{"nombre":"Naciones Unidas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.910681,20.410052],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.843694,20.356822],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.802536,20.344563],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.82714,20.2695],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.891094,20.393836],"type":"Point"},"properties":{"nombre":"Fernando Montes De Oca","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.813092,20.332566],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.82919,20.22772],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.011369,20.452477],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.800919,20.313569],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.77003,20.32308],"type":"Point"},"properties":{"nombre":"Bonifacio Ibarra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.848836,20.259036],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.63672,20.30956],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.89072,20.23344],"type":"Point"},"properties":{"nombre":"Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.97755,20.473005],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.904831,20.403727],"type":"Point"},"properties":{"nombre":"Sebastian Lerdo De Tejada","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.988461,20.440119],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.32291,20.54861],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.917728,20.926111],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.98361,20.8637],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.98003,20.88372],"type":"Point"},"properties":{"nombre":"Eufrasia Sierra Cabrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.91778,20.90242],"type":"Point"},"properties":{"nombre":"Juan De La Barrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.62718,20.79608],"type":"Point"},"properties":{"nombre":"Montes De Oca","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.56564,20.79039],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.6782,20.80136],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.64084,20.81755],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.5198,20.75802],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.23203,20.47733],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.086111,20.810555],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.14309,20.79587],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.11175,20.82992],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.949726,20.277314],"type":"Point"},"properties":{"nombre":"21 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.02488,20.261037],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.995966,20.0564],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.80588,21.50232],"type":"Point"},"properties":{"nombre":"Heroinas De Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.71147,21.43946],"type":"Point"},"properties":{"nombre":"Fernando Montes De Oca","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.77561,21.51515],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.78815,21.38358],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.76438,21.43115],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.89661,21.40695],"type":"Point"},"properties":{"nombre":"Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.84808,21.45243],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.27496,21.27629],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.27405,21.31219],"type":"Point"},"properties":{"nombre":"Pedro Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.06011,21.38447],"type":"Point"},"properties":{"nombre":"Profr Rafael Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.27553,21.28771],"type":"Point"},"properties":{"nombre":"Dr Jose Maria Luis Mora","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.52129,21.36244],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.1293,21.32318],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.06166,21.34362],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.27213,21.40496],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.0891,21.5902],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.96082,21.63001],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.11156,21.38899],"type":"Point"},"properties":{"nombre":"Juventino Rosas Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.06548,21.6641],"type":"Point"},"properties":{"nombre":"Pedro Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.30612,21.64574],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.34234,21.56899],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.97035,21.7133],"type":"Point"},"properties":{"nombre":"Candido Navarro","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.28857,21.54372],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.15287,21.58461],"type":"Point"},"properties":{"nombre":"El Pipila","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.0229,21.69348],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.97595,21.71615],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.23206,21.27818],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.15057,21.60441],"type":"Point"},"properties":{"nombre":"J Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.2624,21.56998],"type":"Point"},"properties":{"nombre":"Vasco De Quiroga","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.24036,21.36637],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.18286,21.63231],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.15472,21.35382],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.40651,21.32317],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.35904,21.73465],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.21304,21.60442],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.32138,21.35937],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.24402,21.33174],"type":"Point"},"properties":{"nombre":"Profr Atanacio Hernandez Romo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.20259,21.36089],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.33038,21.6451],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.05862,21.63215],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.04031,21.69668],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.33772,21.72043],"type":"Point"},"properties":{"nombre":"Manuel Avila Camacho","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.51102,21.33902],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.19734,21.35651],"type":"Point"},"properties":{"nombre":"Ramon Lopez Velarde","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.08891,21.54913],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.36935,21.3466],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.23142,21.29526],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.04901,21.73504],"type":"Point"},"properties":{"nombre":"Jose Ma Arteaga","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.00552,21.59577],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.37017,21.6869],"type":"Point"},"properties":{"nombre":"Año Internacional Del Niño","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.22891,21.59278],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.9975,21.74193],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.71444,20.83962],"type":"Point"},"properties":{"nombre":"Patria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.858314,20.85637],"type":"Point"},"properties":{"nombre":"Gabino Barreda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.684,20.95405],"type":"Point"},"properties":{"nombre":"Maestro Rafael Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.80398,20.85323],"type":"Point"},"properties":{"nombre":"Jaime Nuno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.76364,20.97528],"type":"Point"},"properties":{"nombre":"Jose Atanasio Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.49345,21.05715],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.39606,20.89343],"type":"Point"},"properties":{"nombre":"Eduardo Tresguerras","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.33356,21.07234],"type":"Point"},"properties":{"nombre":"Leyes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.48338,21.08714],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.47177,21.06629],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.52316,21.41051],"type":"Point"},"properties":{"nombre":"Revolucion Mexicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.69012,21.26071],"type":"Point"},"properties":{"nombre":"Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.46479,21.43438],"type":"Point"},"properties":{"nombre":"Juan Aldama","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.705119,21.286045],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.49729,21.14727],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.41292,21.32556],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.58228,21.18534],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.67339,21.30994],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.67183,21.47172],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.60645,21.4076],"type":"Point"},"properties":{"nombre":"Raul Cordero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.462267,21.111487],"type":"Point"},"properties":{"nombre":"Profr Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.63259,21.15925],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.52267,21.08879],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.54398,21.14019],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.62015,21.1247],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.66898,21.18805],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.65881,21.29453],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.550155,21.107086],"type":"Point"},"properties":{"nombre":"Felipe Carrillo Puerto","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.57239,21.43512],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 1010","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.6445,21.17184],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.52867,21.0961],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.608112,21.215219],"type":"Point"},"properties":{"nombre":"Pensador Mexicano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.51283,21.09613],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.08228,21.13885],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.909865,20.581173],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.91139,20.59945],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.98718,20.19656],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.47261,21.07676],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.52155,21.01069],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.52827,20.98532],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.35697,20.86991],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.50281,21.00854],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.39114,21.02623],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.532651,21.017085],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.34662,20.88018],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.51245,20.01465],"type":"Point"},"properties":{"nombre":"España Republicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.18219,21.04006],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1734,21.0873],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.230204,21.098972],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.15104,21.12937],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.13599,21.11217],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.18235,21.08533],"type":"Point"},"properties":{"nombre":"Justicia Social","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.18877,21.07424],"type":"Point"},"properties":{"nombre":"Solidaridad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.14812,21.03584],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.20119,21.08289],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.22568,21.06921],"type":"Point"},"properties":{"nombre":"15 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.302578,20.287038],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.32118,20.40409],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.41096,20.38148],"type":"Point"},"properties":{"nombre":"Jose Mamorelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3412,20.33037],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.25845,20.29442],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.311853,20.376802],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3881,20.3059],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.289344,20.338558],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.38947,20.47569],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.2972,20.41838],"type":"Point"},"properties":{"nombre":"David G Berlanga","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.39515,20.38946],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.40185,20.40268],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.170603,21.6017],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.35283,21.26724],"type":"Point"},"properties":{"nombre":"Alvaro Obregon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.19789,21.16801],"type":"Point"},"properties":{"nombre":"Joaquin Baranda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.31471,21.28267],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2529,21.2332],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.22888,21.23682],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.25125,21.26003],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.11401,21.41886],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.160985,21.548192],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.30244,21.21257],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.19939,21.18542],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.19954,21.21341],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.18298,21.21235],"type":"Point"},"properties":{"nombre":"Niño Artillero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.23541,21.22235],"type":"Point"},"properties":{"nombre":"El Niño Artillero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.92329,21.25085],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.138727,21.296304],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.14168,21.30601],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 477","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.94709,21.32234],"type":"Point"},"properties":{"nombre":"Telesecundaria Num 618","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.94588,21.32236],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.93549,21.39329],"type":"Point"},"properties":{"nombre":"15 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.96637,21.28107],"type":"Point"},"properties":{"nombre":"Pablo Neruda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0124,21.26764],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.35417,20.10629],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.31047,20.25689],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.34689,20.21626],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.295968,20.13174],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.30852,20.19628],"type":"Point"},"properties":{"nombre":"Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.36942,20.10746],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.30089,20.24475],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.38995,20.18315],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.33,20.26778],"type":"Point"},"properties":{"nombre":"Arnulfo Rosas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.03593,20.16413],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.38182,20.15913],"type":"Point"},"properties":{"nombre":"Jose Quezada","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.33794,20.14284],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.22205,20.246],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.26851,20.23357],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.03982,20.11439],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.640556,16.8425],"type":"Point"},"properties":{"nombre":"R-01 Aguacaliente","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.588653,16.84899],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.589161,16.91295],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.68822,17.045921],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.597468,16.894115],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6296,16.77556],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.616592,16.847344],"type":"Point"},"properties":{"nombre":"24 De Octubre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.661872,16.919869],"type":"Point"},"properties":{"nombre":"Leonardo Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.520935,16.971673],"type":"Point"},"properties":{"nombre":"Lic Javier Rojo Gomez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.778591,17.042793],"type":"Point"},"properties":{"nombre":"27 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.769596,17.046714],"type":"Point"},"properties":{"nombre":"Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.751455,17.068692],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.661691,16.756947],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.866113,16.954483],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.682196,17.058433],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.747553,16.840184],"type":"Point"},"properties":{"nombre":"General Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.657537,16.823037],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.625278,16.911944],"type":"Point"},"properties":{"nombre":"R-01 Las Parotas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.620403,16.876231],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.762197,16.901432],"type":"Point"},"properties":{"nombre":"Jaime Nuno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6725,17.126111],"type":"Point"},"properties":{"nombre":"R-01 Pueblo Madero","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6692,17.1261],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.643502,16.863694],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.630352,16.83565],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.656493,16.800641],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.670182,16.81063],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.740037,17.054317],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.785082,16.888745],"type":"Point"},"properties":{"nombre":"General Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.7019,17.1172],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.849502,16.988484],"type":"Point"},"properties":{"nombre":"Plan De Ayutla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.809005,16.961551],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.812829,16.979351],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.60119,16.773421],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.712457,16.797038],"type":"Point"},"properties":{"nombre":"Club De Leones De Acapulco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.742615,17.014645],"type":"Point"},"properties":{"nombre":"O N U","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.634019,16.693306],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.617336,16.810461],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.651166,16.829023],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.600322,16.968219],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.710786,17.082126],"type":"Point"},"properties":{"nombre":"Alejandro Gomez Maganda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.968226,17.715506],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.949454,17.731113],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.973611,17.767222],"type":"Point"},"properties":{"nombre":"R-01 Tepoztlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.018646,17.721329],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.818473,17.692132],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.862089,17.713508],"type":"Point"},"properties":{"nombre":"Tlaloc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.852431,17.702817],"type":"Point"},"properties":{"nombre":"Xochkoskatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3592,18.1939],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3592,18.1939],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.572925,18.20654],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.574686,18.208929],"type":"Point"},"properties":{"nombre":"Jose Inocente Lugo Gomez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.502085,18.200204],"type":"Point"},"properties":{"nombre":"Capitan Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.503713,18.198176],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.4264,18.1889],"type":"Point"},"properties":{"nombre":"Prof Ramon B Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.523143,18.123115],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.375,18.1853],"type":"Point"},"properties":{"nombre":"Niños Heroes De Chapultepec","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.5039,18.1203],"type":"Point"},"properties":{"nombre":"Descubrimiento De America","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.585426,18.178516],"type":"Point"},"properties":{"nombre":"Custodio Hernandez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3825,18.2194],"type":"Point"},"properties":{"nombre":"Vicente Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.489224,18.175365],"type":"Point"},"properties":{"nombre":"Técnicanum. 164","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.610633,18.272611],"type":"Point"},"properties":{"nombre":"General Don Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.456903,18.159293],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.513899,18.197581],"type":"Point"},"properties":{"nombre":"Abraham Lincoln","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3644,18.1728],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.5197,18.0881],"type":"Point"},"properties":{"nombre":"Redencion Proletaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.5197,18.0881],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.520556,18.09],"type":"Point"},"properties":{"nombre":"R-01 San Pedro Y Garzas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.396944,18.2075],"type":"Point"},"properties":{"nombre":"Santa Ana Del Aguila","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.551493,18.163839],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.391758,18.206955],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.55198,18.164396],"type":"Point"},"properties":{"nombre":"Jose Marti","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.528338,18.201144],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.530548,18.199735],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.4631,18.06],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.5333,17.6994],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.384167,17.461111],"type":"Point"},"properties":{"nombre":"Alcozauca De Guerrero","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3589,17.3836],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.45,17.490556],"type":"Point"},"properties":{"nombre":"R-01 Ahuejutla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3547,17.4189],"type":"Point"},"properties":{"nombre":"Luz De La Montaña","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3839,17.4978],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3456,17.4797],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3381,17.475],"type":"Point"},"properties":{"nombre":"Cuauhtémoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.341228,17.483091],"type":"Point"},"properties":{"nombre":"Telesecundaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3736,17.3981],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3425,17.369444],"type":"Point"},"properties":{"nombre":"Ixcuinatoyac","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3436,17.3719],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4611,17.3542],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.466117,17.360881],"type":"Point"},"properties":{"nombre":"Telesecundaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4483,17.3578],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.491667,17.373889],"type":"Point"},"properties":{"nombre":"R-01 Petlacalancingo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4558,17.4372],"type":"Point"},"properties":{"nombre":"Alfonso Caso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.236944,17.243611],"type":"Point"},"properties":{"nombre":"San Miguel El Grande","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2342,17.2436],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.34,17.3767],"type":"Point"},"properties":{"nombre":"Martires De Rio Blanco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.33337,17.369774],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3375,17.375],"type":"Point"},"properties":{"nombre":"R-01 Tlahuapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.450833,17.3825],"type":"Point"},"properties":{"nombre":"R-01 Xochapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4522,17.3836],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4522,17.3836],"type":"Point"},"properties":{"nombre":"Sebastian Lerdo De Tejada","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.448587,17.381216],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.451628,17.384225],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4122,17.5019],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3667,17.3236],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0089,18.0461],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0319,18.1897],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0658,18.1739],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.8872,18.1494],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.8964,18.0606],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0911,18.0983],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.9619,18.0206],"type":"Point"},"properties":{"nombre":"General Adrian Castrejon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2542,18.2314],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0883,18.2833],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.24,18.0983],"type":"Point"},"properties":{"nombre":"Don Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2097,18.1406],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.176111,18.368056],"type":"Point"},"properties":{"nombre":"R-01 Almoloya","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2775,18.158889],"type":"Point"},"properties":{"nombre":"R-01 El Guayabo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1069,18.1037],"type":"Point"},"properties":{"nombre":"Primaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0686,18.1547],"type":"Point"},"properties":{"nombre":"Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.952222,18.117222],"type":"Point"},"properties":{"nombre":"R-01 Temalac","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9544,18.1158],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1825,18.2044],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0583,18.2103],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.49737,17.401176],"type":"Point"},"properties":{"nombre":"Heroes De Chapultepec","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5197,17.3294],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5661,17.3247],"type":"Point"},"properties":{"nombre":"Rafael Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5375,17.3164],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.548611,17.294167],"type":"Point"},"properties":{"nombre":"R-01 Zilacayotitlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.886111,17.385278],"type":"Point"},"properties":{"nombre":"R-01 Cacalotepec","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8881,17.39],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8411,17.44],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8411,17.44],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.889606,17.501245],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.906533,17.558688],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.877742,17.549787],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8514,17.4225],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8897,17.3644],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9367,17.3356],"type":"Point"},"properties":{"nombre":"Xuajin Uatzii","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.825,17.5475],"type":"Point"},"properties":{"nombre":"R-01 Tlatlauquitepec","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9494,17.3122],"type":"Point"},"properties":{"nombre":"5 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0206,17.5997],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9508,17.3428],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.87831,17.489695],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8703,17.4453],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.804344,17.423407],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.96877,17.292251],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.4008,17.2911],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.349914,17.12327],"type":"Point"},"properties":{"nombre":"Juan R Escudero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3725,17.3133],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2558,17.1964],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2917,17.225],"type":"Point"},"properties":{"nombre":"Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3078,17.1058],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3367,17.2397],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.369444,17.473333],"type":"Point"},"properties":{"nombre":"R-01 Pie De La Cuesta","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2872,17.1918],"type":"Point"},"properties":{"nombre":"Ñuu Na Isavi","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3081,17.4222],"type":"Point"},"properties":{"nombre":"Dr Belisario Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2597,17.255],"type":"Point"},"properties":{"nombre":"Hombres De La Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.397222,17.315833],"type":"Point"},"properties":{"nombre":"R-01 San Juan De Las Flores","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3964,17.3153],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3964,17.3153],"type":"Point"},"properties":{"nombre":"Plan De Ayutla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2833,17.2953],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3481,17.2831],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.375753,17.130009],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.116389,17.087778],"type":"Point"},"properties":{"nombre":"R-01 Acalmani","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.11494,17.086403],"type":"Point"},"properties":{"nombre":"Mi Patria Es Primero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.120488,17.09082],"type":"Point"},"properties":{"nombre":"Rosario Castellanos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.985742,16.829738],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.989056,16.828961],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.033019,16.876082],"type":"Point"},"properties":{"nombre":"Clemente Orozco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.050996,16.864951],"type":"Point"},"properties":{"nombre":"Octavio Paz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.170935,17.039837],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.172415,17.034919],"type":"Point"},"properties":{"nombre":"Plan De Ayutla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.983377,17.040587],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.977727,16.905933],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.97844,16.906574],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.201169,17.12403],"type":"Point"},"properties":{"nombre":"Nomaxticalli","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.150854,16.815265],"type":"Point"},"properties":{"nombre":"Plan De Ayutla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.231854,17.040907],"type":"Point"},"properties":{"nombre":"Miguel Aleman","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.015897,16.794347],"type":"Point"},"properties":{"nombre":"Revolucion Mexicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.964852,16.859096],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.977889,16.969192],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.999962,16.932311],"type":"Point"},"properties":{"nombre":"Juan B Salazar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.926784,16.912095],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.168773,17.071043],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.040833,17.061736],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.038607,17.065876],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.246681,17.061346],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.252618,17.059648],"type":"Point"},"properties":{"nombre":"Bernal Diaz Del Castillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.020154,17.021269],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.054444,16.861667],"type":"Point"},"properties":{"nombre":"R-01 Tonala","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.054393,16.86062],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.055482,16.860394],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.121497,16.817436],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.126989,16.819493],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.042195,16.849242],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.090796,16.835585],"type":"Point"},"properties":{"nombre":"Union Y Progreso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.089454,16.836535],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.117404,16.84717],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.950954,16.87729],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.08211,16.848642],"type":"Point"},"properties":{"nombre":"Antonio I Delgado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.124461,17.128666],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.983685,17.063909],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.948216,17.035284],"type":"Point"},"properties":{"nombre":"Telesecundaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.629723,16.684663],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.558889,16.635833],"type":"Point"},"properties":{"nombre":"R-01 Huehuetan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.579041,16.692711],"type":"Point"},"properties":{"nombre":"Eugenio Bustos Fuentes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.587834,16.768941],"type":"Point"},"properties":{"nombre":"General Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.625261,16.654733],"type":"Point"},"properties":{"nombre":"Belisario Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.506127,16.648644],"type":"Point"},"properties":{"nombre":"Luz De America","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.531537,16.6685],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.625289,16.726825],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.636944,16.6725],"type":"Point"},"properties":{"nombre":"R-01 La Pelota","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.426111,18.522778],"type":"Point"},"properties":{"nombre":"R-01 Palmillas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.424167,18.548333],"type":"Point"},"properties":{"nombre":"R-01 Santa Fe Tepetlapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.443611,18.538056],"type":"Point"},"properties":{"nombre":"R-01 Zacapalco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.8211,18.5522],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.6919,18.3056],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.6897,18.3883],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.6181,18.2642],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.7242,18.5378],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.8428,18.4508],"type":"Point"},"properties":{"nombre":"Raul Isidro Burgos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.7842,18.1897],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.7917,18.4208],"type":"Point"},"properties":{"nombre":"Juan N Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.7325,18.3619],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.7614,18.1269],"type":"Point"},"properties":{"nombre":"Gabino Barreda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.67741,18.23549],"type":"Point"},"properties":{"nombre":"Minerva","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.7303,18.0064],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6867,18.1728],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.634048,18.283467],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.656436,18.216456],"type":"Point"},"properties":{"nombre":"Corregidora De Queretaro","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.693186,18.294857],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.595742,18.250683],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.935278,16.634444],"type":"Point"},"properties":{"nombre":"R-01 Atrixco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.026321,16.636936],"type":"Point"},"properties":{"nombre":"Vicente Guerrero Saldaña","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.911944,16.538056],"type":"Point"},"properties":{"nombre":"R-01 Col Juan N. Alvarez (P.Ventur","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.840558,16.579013],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.850833,16.568889],"type":"Point"},"properties":{"nombre":"R-01 Las Salinas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.059444,16.633611],"type":"Point"},"properties":{"nombre":"R-01 Las Penas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9144,17.9494],"type":"Point"},"properties":{"nombre":"General Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.935,18.0214],"type":"Point"},"properties":{"nombre":"Adolfo Ruiz Cortinez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9042,18.0214],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9864,17.9481],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.13,17.8822],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1328,17.9047],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.761023,17.508038],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6569,17.4231],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7375,17.4094],"type":"Point"},"properties":{"nombre":"Juan N Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6272,17.3406],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7317,17.4242],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.713653,17.438944],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6292,17.4228],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.942853,17.050765],"type":"Point"},"properties":{"nombre":"Emperador Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0425,17.104722],"type":"Point"},"properties":{"nombre":"R-01 Atoyaquillo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1553,17.1825],"type":"Point"},"properties":{"nombre":"Juan N Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.949282,16.948726],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1942,17.2411],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1386,17.1267],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1272,17.095],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1839,17.1197],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.950092,17.02931],"type":"Point"},"properties":{"nombre":"Revolucion Mexicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.864444,17.235556],"type":"Point"},"properties":{"nombre":"R-01 Santa Rosa De Lima","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1542,17.1128],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.958186,17.054281],"type":"Point"},"properties":{"nombre":"Juan N Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2972,17.0561],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.992847,16.966623],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.880654,18.343225],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.885216,18.335564],"type":"Point"},"properties":{"nombre":"Nezahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.740854,18.205234],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.776427,18.249802],"type":"Point"},"properties":{"nombre":"Republica De Suiza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.776217,18.248647],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.9378,17.7772],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.798815,18.244841],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.886345,18.355962],"type":"Point"},"properties":{"nombre":"Primaria General","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.880351,18.355515],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.738419,18.267444],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.894197,18.297675],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.846389,18.303333],"type":"Point"},"properties":{"nombre":"R-02 Paso De La Arena","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.849503,18.302631],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.846788,18.297236],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.870627,18.223472],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.869937,18.22169],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.803072,18.313663],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.854508,18.29025],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.8908,18.1769],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.8976,18.241809],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.901667,18.236944],"type":"Point"},"properties":{"nombre":"R-02 Placeres Del Oro","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.900155,18.236842],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.702522,18.250157],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.815293,18.341772],"type":"Point"},"properties":{"nombre":"Liberacion Campesina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.814473,18.341147],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.760719,18.208323],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.488673,16.532615],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.439402,16.56052],"type":"Point"},"properties":{"nombre":"Nueva Luz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.616667,17.78],"type":"Point"},"properties":{"nombre":"R-01 Cuaulote","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.699958,17.743264],"type":"Point"},"properties":{"nombre":"Corregidora","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.631584,17.788223],"type":"Point"},"properties":{"nombre":"Niño Artillero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.666111,17.705556],"type":"Point"},"properties":{"nombre":"R-01 Tlalapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.86103,16.71034],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9175,16.7425],"type":"Point"},"properties":{"nombre":"San José Cuilutla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.008548,16.767672],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.95536,16.746116],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.95417,16.701071],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.995976,16.6855],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.831389,18.133056],"type":"Point"},"properties":{"nombre":"R-02 Cuetzala Del Progreso","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.7608,18.2722],"type":"Point"},"properties":{"nombre":"Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.761101,18.273468],"type":"Point"},"properties":{"nombre":"Rafael Ramos Pedrueza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.7667,18.1761],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.76,18.1758],"type":"Point"},"properties":{"nombre":"General Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.8192,18.0581],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.5806,18.6686],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.6622,18.6983],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.6131,18.6669],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.544372,18.434579],"type":"Point"},"properties":{"nombre":"Francisco Javier Mina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.600474,18.545945],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.573726,18.542158],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.603611,18.669167],"type":"Point"},"properties":{"nombre":"R-01 Zacapuato","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.581192,18.592694],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.6353,18.7094],"type":"Point"},"properties":{"nombre":"Prof Federico Encarnacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.562016,18.475158],"type":"Point"},"properties":{"nombre":"General Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.006508,17.453477],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.009482,17.425681],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.149784,17.621745],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1675,17.5036],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.197711,17.616361],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.17197,17.628082],"type":"Point"},"properties":{"nombre":"General Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.236035,17.579097],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.164506,17.505221],"type":"Point"},"properties":{"nombre":"Redencion Y Luz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.267379,17.540008],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.249071,17.51889],"type":"Point"},"properties":{"nombre":"Juan N Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9417,17.4883],"type":"Point"},"properties":{"nombre":"Huitzilopochtli","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1386,17.5128],"type":"Point"},"properties":{"nombre":"Ruffo Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.119804,17.499739],"type":"Point"},"properties":{"nombre":"Sentimientos De La Nacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.26541,17.527067],"type":"Point"},"properties":{"nombre":"Heroe De Nacozari","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.055,17.3653],"type":"Point"},"properties":{"nombre":"Quetzalcoatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.055,17.3653],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9194,17.4667],"type":"Point"},"properties":{"nombre":"Tepancaltzin","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.142751,17.488172],"type":"Point"},"properties":{"nombre":"Emperador Cuauhtémoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1014,17.5186],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0003,17.3836],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0003,17.3836],"type":"Point"},"properties":{"nombre":"Alejandro Cervantes Delgado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.002626,17.36718],"type":"Point"},"properties":{"nombre":"Axayakatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.269149,17.500786],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.271879,17.499815],"type":"Point"},"properties":{"nombre":"Calmácac","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0058,17.3517],"type":"Point"},"properties":{"nombre":"Tezcatlipoca","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.26348,17.554404],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0292,17.5711],"type":"Point"},"properties":{"nombre":"Malintzin","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.033115,17.570602],"type":"Point"},"properties":{"nombre":"Adolfo Cienfuegos Y Camus","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1186,17.4828],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.223435,17.494271],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1147,17.5092],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0622,17.5075],"type":"Point"},"properties":{"nombre":"Xilonantli","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0789,17.4628],"type":"Point"},"properties":{"nombre":"Ahuitzotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.135,17.4497],"type":"Point"},"properties":{"nombre":"Tonal Tlauiltsin","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1078,17.4475],"type":"Point"},"properties":{"nombre":"Genaro Vazquez Rojas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0636,17.5603],"type":"Point"},"properties":{"nombre":"Akamapichtli","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.057765,17.564504],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.03,17.3331],"type":"Point"},"properties":{"nombre":"Moctezuma Ilhuicamina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0842,17.5461],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0894,17.4381],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9381,17.4247],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0989,17.4936],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0669,17.5894],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0208,17.3767],"type":"Point"},"properties":{"nombre":"Tlakatekutli","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.020993,17.376841],"type":"Point"},"properties":{"nombre":"Moises Saenz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.002626,17.376996],"type":"Point"},"properties":{"nombre":"Francisco Padilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9936,17.3564],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9819,17.3633],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0517,17.3944],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9994,17.3694],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9322,17.4931],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.468978,17.358829],"type":"Point"},"properties":{"nombre":"Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.468695,17.362337],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.708486,17.4251],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.555218,17.406903],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.502378,17.260087],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.50139,17.260108],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.493589,17.269636],"type":"Point"},"properties":{"nombre":"Baltazar R Leyva Mancilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.492646,17.265254],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.741522,17.354425],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.672562,17.230313],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.648796,17.335775],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.650277,17.328846],"type":"Point"},"properties":{"nombre":"Primer Congreso De Anahuac","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.741369,17.509969],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.603283,17.387248],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.586188,17.431842],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.583413,17.429763],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.730919,17.367154],"type":"Point"},"properties":{"nombre":"Unificacion Proletaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.72734,17.36921],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.858449,17.443952],"type":"Point"},"properties":{"nombre":"Baltazar Castorena","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.85919,17.447338],"type":"Point"},"properties":{"nombre":"Nicolas Catalan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.861858,17.45011],"type":"Point"},"properties":{"nombre":"Leonardo Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.46622,17.403452],"type":"Point"},"properties":{"nombre":"Daniel Delgadillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.696198,17.447505],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.482715,17.288599],"type":"Point"},"properties":{"nombre":"Rufo Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.482873,17.287668],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.7822,17.2006],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.835,17.2344],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.8639,17.3081],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.681996,17.512614],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.684668,17.514204],"type":"Point"},"properties":{"nombre":"Juan Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.603667,17.306151],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.601456,17.303346],"type":"Point"},"properties":{"nombre":"Vicente Guerrero Saldaña","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.55434,17.327706],"type":"Point"},"properties":{"nombre":"Gabriela Mistral","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.565753,17.314085],"type":"Point"},"properties":{"nombre":"Armando Chavarria Barrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.554756,17.328211],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.917367,17.510029],"type":"Point"},"properties":{"nombre":"Revolucion Social","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.918384,17.513622],"type":"Point"},"properties":{"nombre":"24 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1419,18.4197],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0306,17.9558],"type":"Point"},"properties":{"nombre":"Francisco Perez Rios","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0225,17.9572],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.869,17.811089],"type":"Point"},"properties":{"nombre":"Revolucionarios Del Sur","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.874465,17.81346],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.944978,17.812119],"type":"Point"},"properties":{"nombre":"Triunfo Aliado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.064856,17.806677],"type":"Point"},"properties":{"nombre":"Abraham Lincoln","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.06464,17.801943],"type":"Point"},"properties":{"nombre":"Vicente Guerrero Saldaña","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.122969,17.756185],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.123349,17.755072],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.170294,17.606982],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.135654,17.681183],"type":"Point"},"properties":{"nombre":"Protasio I Gomez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.140179,17.679638],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.943117,17.678332],"type":"Point"},"properties":{"nombre":"Renovacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.953661,17.583861],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.954549,17.582483],"type":"Point"},"properties":{"nombre":"Guillermo Prieto","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.942541,17.743091],"type":"Point"},"properties":{"nombre":"Luz Y Redencion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.132568,17.641544],"type":"Point"},"properties":{"nombre":"Navidad En Las Montanas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1175,17.538056],"type":"Point"},"properties":{"nombre":"R-01 Pueblo Viejo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.119465,17.538807],"type":"Point"},"properties":{"nombre":"Herminio V Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.116077,17.536296],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.948174,17.70769],"type":"Point"},"properties":{"nombre":"Leyes De Reforma","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.948915,17.708698],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.045847,17.621453],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.05704,17.850642],"type":"Point"},"properties":{"nombre":"Heroes Del Sur","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0769,17.98],"type":"Point"},"properties":{"nombre":"Indio De Nuyoo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.930341,17.780512],"type":"Point"},"properties":{"nombre":"Felipe Carrillo Puerto","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.930794,17.782326],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.907375,17.809451],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.906524,17.81279],"type":"Point"},"properties":{"nombre":"Leonardo Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.90497,17.706483],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.900765,17.706629],"type":"Point"},"properties":{"nombre":"Juan N Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.998611,17.636111],"type":"Point"},"properties":{"nombre":"R-01 Villa Xochitl","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.851626,17.857991],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.851856,17.86072],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.013619,17.761942],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.017025,17.760442],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.992464,17.740034],"type":"Point"},"properties":{"nombre":"Heliodoro Castillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.993896,17.739801],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.045402,17.66359],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.065833,17.582222],"type":"Point"},"properties":{"nombre":"R-01 Margaritas Las","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.040278,17.673889],"type":"Point"},"properties":{"nombre":"R-01 Limoncito","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.122785,17.592861],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5458,17.9261],"type":"Point"},"properties":{"nombre":"Raymundo Abarca Alarcon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2844,18.1128],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.30484,18.21468],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.413056,18.361944],"type":"Point"},"properties":{"nombre":"R-01 Tlaxmalac","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.384214,18.16574],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.651413,18.340212],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.508333,18.230556],"type":"Point"},"properties":{"nombre":"R-01 Santa Teresa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.529583,18.250579],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.495784,16.851655],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.496944,16.76],"type":"Point"},"properties":{"nombre":"R-01 La Victoria","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.467084,16.929863],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.791389,18.501389],"type":"Point"},"properties":{"nombre":"R-02 Ixcateopan De Cuauhtémoc","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.807986,18.448352],"type":"Point"},"properties":{"nombre":"Antorcha Socialista","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.827222,18.465278],"type":"Point"},"properties":{"nombre":"R-01 Simatel","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.829311,18.477867],"type":"Point"},"properties":{"nombre":"Paz Y Justicia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.713333,18.455],"type":"Point"},"properties":{"nombre":"R-01 Teucizapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.636936,17.719461],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.423873,17.592242],"type":"Point"},"properties":{"nombre":"Primaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.323456,17.926415],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3225,17.921944],"type":"Point"},"properties":{"nombre":"Vallecito","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.676693,17.770236],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.80959,17.5743],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.809415,17.575186],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.832038,17.620003],"type":"Point"},"properties":{"nombre":"Primer Congreso De Anahuac","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.838254,17.620953],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.84618,17.721577],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.944667,17.662725],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.944386,17.663196],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.802535,17.687758],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.905578,17.637647],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.843365,17.649899],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.834578,17.651789],"type":"Point"},"properties":{"nombre":"Leonardo Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.828601,17.477728],"type":"Point"},"properties":{"nombre":"Juan N Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.830301,17.474612],"type":"Point"},"properties":{"nombre":"Octavio Paz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.864424,17.671408],"type":"Point"},"properties":{"nombre":"Alvaro Obregon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.817087,17.661425],"type":"Point"},"properties":{"nombre":"Naciones Unidas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.820984,17.655895],"type":"Point"},"properties":{"nombre":"Jose Maria Pino Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.849795,17.648018],"type":"Point"},"properties":{"nombre":"Raimundo Abarca Alarcon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6725,17.2423],"type":"Point"},"properties":{"nombre":"Progreso Y Civilizacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.635,17.2833],"type":"Point"},"properties":{"nombre":"Ignacio M. Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.635,17.2833],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.62953,17.27659],"type":"Point"},"properties":{"nombre":"Educacion Y Cultura","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7572,17.085],"type":"Point"},"properties":{"nombre":"Alfonso Fabila","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.612042,17.279721],"type":"Point"},"properties":{"nombre":"Heroes Mexicanos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.619069,17.29435],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.715,17.2292],"type":"Point"},"properties":{"nombre":"Rosalio Torres Calvo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.653964,17.200551],"type":"Point"},"properties":{"nombre":"Secundaria Tecnica","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.703889,17.163333],"type":"Point"},"properties":{"nombre":"R-01 Paraje Montero","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7044,17.1633],"type":"Point"},"properties":{"nombre":"El Porvenir","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7044,17.1633],"type":"Point"},"properties":{"nombre":"Guadalupe Valentino Lopez Carrasco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.804167,17.036944],"type":"Point"},"properties":{"nombre":"R-01 Rancho Viejo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.735278,16.996111],"type":"Point"},"properties":{"nombre":"R-01 Rincon El","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7353,16.995],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7353,16.995],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.733592,16.995902],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.68,17.271944],"type":"Point"},"properties":{"nombre":"R-01 Col. San Mateo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6836,17.1969],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.687309,17.330733],"type":"Point"},"properties":{"nombre":"Técnicanum. 206 Moises Bruno García","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.759833,17.038665],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.749167,17.049444],"type":"Point"},"properties":{"nombre":"R-01 Tilapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7489,17.0481],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7489,17.0481],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.749472,17.04968],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6483,17.1342],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6572,17.2408],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6381,17.2289],"type":"Point"},"properties":{"nombre":"La Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6872,17.2119],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7794,17.0203],"type":"Point"},"properties":{"nombre":"Alfonso Caso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7358,17.0639],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7592,17.1136],"type":"Point"},"properties":{"nombre":"Antonio Casso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7586,17.0339],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.631753,17.265422],"type":"Point"},"properties":{"nombre":"Primaria Bilingue","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.363611,17.799722],"type":"Point"},"properties":{"nombre":"R-01 Aixcualco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.387222,17.793889],"type":"Point"},"properties":{"nombre":"R-01 Ahuexotitlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.4411,17.9428],"type":"Point"},"properties":{"nombre":"Manuel Avila Camacho","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.245833,17.760278],"type":"Point"},"properties":{"nombre":"La Esperanza Ii","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2486,17.7594],"type":"Point"},"properties":{"nombre":"Xicotencatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2486,17.7594],"type":"Point"},"properties":{"nombre":"Jose Francisco Ruiz Massieu","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.249271,17.760192],"type":"Point"},"properties":{"nombre":"Quince De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.295394,17.675317],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.294113,17.676042],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.349863,17.921406],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3275,17.908889],"type":"Point"},"properties":{"nombre":"R-01 San Juan Totolcintla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3278,17.9081],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3278,17.9081],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.331981,17.906614],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.481667,17.934444],"type":"Point"},"properties":{"nombre":"R-01 San Marcos Oacatzingo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.4806,17.9339],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.4806,17.9339],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.526009,17.924597],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.295395,17.716534],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.283333,17.712515],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.301491,17.71883],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2706,17.7831],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.380746,17.248471],"type":"Point"},"properties":{"nombre":"Juan N Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.426459,17.298448],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.414017,17.245679],"type":"Point"},"properties":{"nombre":"José Vasconcelos Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5108,17.3278],"type":"Point"},"properties":{"nombre":"Fray Servando Teresa De Mier","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5108,17.3278],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4675,17.2997],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5439,17.1336],"type":"Point"},"properties":{"nombre":"Profr Caritino M Perez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.519232,17.281364],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.520278,17.278889],"type":"Point"},"properties":{"nombre":"R-01 San Juan Puerto Montana","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.52,17.2786],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4747,17.3433],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2633,17.1378],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5192,17.2694],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.392491,17.212117],"type":"Point"},"properties":{"nombre":" Ko ' Ndo Iku Nani ","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5494,17.1914],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2661,17.1492],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2764,17.1519],"type":"Point"},"properties":{"nombre":"Escuadron 201","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2925,17.1844],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.322738,17.473345],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.321671,17.472081],"type":"Point"},"properties":{"nombre":"Belizario Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.347222,17.391667],"type":"Point"},"properties":{"nombre":"R-01 Cuaxtlahuacan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.347432,17.387912],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.347109,17.391727],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.425209,17.427795],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.433913,17.393563],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.425556,17.396667],"type":"Point"},"properties":{"nombre":"R-01 Salado El","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.301187,17.461438],"type":"Point"},"properties":{"nombre":"Manuel M Acosta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.300997,17.46029],"type":"Point"},"properties":{"nombre":"Rafael Ramirez Castañeda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.425614,17.362975],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.298879,17.495428],"type":"Point"},"properties":{"nombre":"Adolfo Cienfuegos Y Camus","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.300491,17.495923],"type":"Point"},"properties":{"nombre":"Juan Ruiz De Alarcon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.720437,17.912164],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.736533,17.746625],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.756896,17.82442],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.671977,17.915442],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7642,17.9739],"type":"Point"},"properties":{"nombre":"Martires De Rio Blanco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.653741,17.898201],"type":"Point"},"properties":{"nombre":"Jose De San Martin","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.796111,17.7575],"type":"Point"},"properties":{"nombre":"R-01 Tehuaxtitlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.762647,17.921015],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.848056,17.867222],"type":"Point"},"properties":{"nombre":"R-01 Teticic","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.851389,17.944722],"type":"Point"},"properties":{"nombre":"R-01 Xixila","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.698693,17.9066],"type":"Point"},"properties":{"nombre":"Escuela Primaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.823611,17.801389],"type":"Point"},"properties":{"nombre":"R-01 Juntas Las","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.430655,16.577337],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.258484,16.662695],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.290316,16.633393],"type":"Point"},"properties":{"nombre":"Josefa O De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.461304,16.581396],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.355152,16.58838],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.413321,16.599698],"type":"Point"},"properties":{"nombre":"Articulo Tercero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.487992,16.609567],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.252433,16.738232],"type":"Point"},"properties":{"nombre":"Jaime Nuno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.323739,16.74353],"type":"Point"},"properties":{"nombre":"Año De Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.886111,18.511944],"type":"Point"},"properties":{"nombre":"R-01 Ixcapuzalco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.8862,18.511],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.843611,18.598333],"type":"Point"},"properties":{"nombre":"R-01 Tlanilpa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.847363,18.512499],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.112222,17.374722],"type":"Point"},"properties":{"nombre":"R-01 Arroyo Seco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.058333,17.380833],"type":"Point"},"properties":{"nombre":"Coyuquilla Norte","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.056944,17.378333],"type":"Point"},"properties":{"nombre":"R-01 Coyuquilla Norte","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.070587,17.357929],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.387577,17.696612],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.228333,17.455],"type":"Point"},"properties":{"nombre":"R-01 Juluchuca","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.995833,17.589167],"type":"Point"},"properties":{"nombre":"R-01 Mameyal El","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.995,17.5883],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.055556,17.514167],"type":"Point"},"properties":{"nombre":"R-01 Mesas Las","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.31,17.7283],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.334762,17.666301],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.20554,17.444608],"type":"Point"},"properties":{"nombre":"Ines Lobato Giron","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.44047,17.540436],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.033049,17.406332],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.505556,18.681667],"type":"Point"},"properties":{"nombre":"R-01 Cacahuamilpa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.511101,18.673242],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.701082,18.710351],"type":"Point"},"properties":{"nombre":"Revolucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.606695,18.718796],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.710794,18.728507],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.234929,17.473667],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1636,17.3769],"type":"Point"},"properties":{"nombre":"Juan Ruiz De Alarcon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2103,17.3367],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1083,17.2944],"type":"Point"},"properties":{"nombre":"Benemerito De Las Americas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2033,17.2628],"type":"Point"},"properties":{"nombre":"Tetoquihuatzin","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.270212,17.487253],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.272425,17.334001],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.29906,17.200291],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2014,17.3514],"type":"Point"},"properties":{"nombre":"Emperador Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1522,17.2375],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.224066,17.448108],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1089,17.2853],"type":"Point"},"properties":{"nombre":"Moctezuma Xocoyotzin","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2067,17.3022],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0522,17.3217],"type":"Point"},"properties":{"nombre":"Quetzalcoatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.294876,17.460508],"type":"Point"},"properties":{"nombre":"Constituyentes De 1857","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.262778,17.310833],"type":"Point"},"properties":{"nombre":"R-01 Santa Cruz","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2386,17.3247],"type":"Point"},"properties":{"nombre":"Gabino Barreda","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.223697,17.181515],"type":"Point"},"properties":{"nombre":"Vicente Lombardo Toledano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1844,17.3272],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1836,17.4461],"type":"Point"},"properties":{"nombre":"Revolucion Social","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.821116,16.670028],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.612602,16.876686],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.617464,16.87731],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.86279,17.027307],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.579444,16.9625],"type":"Point"},"properties":{"nombre":"R-01 Buenavista","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.758333,16.813056],"type":"Point"},"properties":{"nombre":"R-01 El Carmen","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.758316,16.813659],"type":"Point"},"properties":{"nombre":"Francisco G Torres","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.754532,16.814514],"type":"Point"},"properties":{"nombre":"Telesecundaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.742494,16.888271],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.744452,16.884721],"type":"Point"},"properties":{"nombre":"Juan Aldama","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5897,16.9542],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.730556,16.752222],"type":"Point"},"properties":{"nombre":"R-01 Jolotichan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.730754,16.751441],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.734589,16.753001],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.692752,16.77114],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.808931,16.804176],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.81325,16.803077],"type":"Point"},"properties":{"nombre":"Plan De San Luis","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.808661,17.044258],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.774687,16.771399],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.90982,16.802844],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.90952,16.803476],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.558363,16.974437],"type":"Point"},"properties":{"nombre":"Esc.Sec.Tec. N/C","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.775657,16.98271],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.780529,16.97759],"type":"Point"},"properties":{"nombre":"Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6811,16.91],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.627222,17.236667],"type":"Point"},"properties":{"nombre":"Rural De 01 Nucleo Basico","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.630692,17.245398],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.631568,17.235574],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.609564,17.24553],"type":"Point"},"properties":{"nombre":"Mi Patria Es Primero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.624915,17.194921],"type":"Point"},"properties":{"nombre":"Prof Genaro Vazquez Rojas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.606675,17.224155],"type":"Point"},"properties":{"nombre":"Yita Yucu","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.625866,17.250225],"type":"Point"},"properties":{"nombre":"Congreso De Chilpancingo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.255202,16.801819],"type":"Point"},"properties":{"nombre":"Niño Artillero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.441384,16.974727],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.5103,16.6997],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2394,16.6517],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2025,16.7825],"type":"Point"},"properties":{"nombre":"Las Lomitas De Nexpa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.288821,16.83429],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.469365,16.944156],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.592222,16.690278],"type":"Point"},"properties":{"nombre":"R-01 San José Guatemala","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.515608,16.84698],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.502222,16.8525],"type":"Point"},"properties":{"nombre":"R-01 Yucatan De Las Flores","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.576982,16.754724],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2297,17.9161],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.4036,17.8256],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2639,17.8783],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3761,18.0925],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2939,18.1169],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2119,17.6697],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.168144,17.653618],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.168746,17.654971],"type":"Point"},"properties":{"nombre":"Leonardo Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.3403,18.1],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.1889,17.8764],"type":"Point"},"properties":{"nombre":"Luz De La Revolucion Social","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.415,18.1692],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2467,17.9528],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.2494,17.6519],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.514603,18.605106],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.517724,18.60263],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.628889,18.415278],"type":"Point"},"properties":{"nombre":"R-01 Huahuaxtla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.658598,18.46029],"type":"Point"},"properties":{"nombre":"Martires Del 27 De Octubre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.654104,18.456419],"type":"Point"},"properties":{"nombre":"Jose Ma Pino Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.588597,18.450976],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.588814,18.450569],"type":"Point"},"properties":{"nombre":"Juan Ruiz De Alarcon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.471873,18.64625],"type":"Point"},"properties":{"nombre":"Redencion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.467897,18.64513],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.629888,18.43322],"type":"Point"},"properties":{"nombre":"Prof Francisco Figueroa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.628527,18.433694],"type":"Point"},"properties":{"nombre":"Primer Congreso De Anahuac","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.462843,18.620523],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.601648,18.443009],"type":"Point"},"properties":{"nombre":"Pablo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.680787,18.428941],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.683631,18.429799],"type":"Point"},"properties":{"nombre":"Ruben Mora","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.486421,18.581095],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.668773,18.38788],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.662755,18.43544],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.499549,18.607532],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.486298,18.607748],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.312226,16.877664],"type":"Point"},"properties":{"nombre":"Plan De Ayutla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.319444,16.971389],"type":"Point"},"properties":{"nombre":"R-01 Las Animas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.238644,16.971367],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.221371,16.924146],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.262805,16.890922],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.390556,17.091667],"type":"Point"},"properties":{"nombre":"R-01 Chautipa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.372821,17.068828],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.206667,16.939444],"type":"Point"},"properties":{"nombre":"R-01 El Guayabo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.194673,17.015066],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3775,16.995556],"type":"Point"},"properties":{"nombre":"R-01 El Limon","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.238099,16.985967],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.312778,17.111944],"type":"Point"},"properties":{"nombre":"R-01 Ochoapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.171988,16.906467],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.375636,17.080492],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.227778,16.870833],"type":"Point"},"properties":{"nombre":"R-01 El Potrero","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.173611,16.895278],"type":"Point"},"properties":{"nombre":"R-01 Rancho Nuevo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.399501,17.09472],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.282019,17.006819],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.229812,16.853032],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.300234,16.988054],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.270277,16.903098],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.249175,17.000119],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.392672,16.925561],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.244216,16.936396],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.273544,16.961046],"type":"Point"},"properties":{"nombre":"Union Y Progreso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.329203,16.938735],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.7617,17.5722],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.7964,17.5942],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.013961,17.279309],"type":"Point"},"properties":{"nombre":"Ilhuicamina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.791093,17.216754],"type":"Point"},"properties":{"nombre":"General Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.788946,17.216357],"type":"Point"},"properties":{"nombre":"Siglo Xxi","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.002279,17.27218],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.810508,17.285197],"type":"Point"},"properties":{"nombre":"Pablo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.75769,17.205979],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.755279,17.208458],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.761687,17.210083],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.74972,17.227157],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.055,17.275556],"type":"Point"},"properties":{"nombre":"R-01 Puerto Escondido","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.951914,17.27311],"type":"Point"},"properties":{"nombre":"Moctezuma I","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.953928,17.273289],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.05069,17.376555],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.732001,17.165016],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.935556,17.5325],"type":"Point"},"properties":{"nombre":"R-01 El Porvenir","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.813056,17.396111],"type":"Point"},"properties":{"nombre":"R-01 Santa Lucia","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.793624,17.354841],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0375,18.5728],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0086,18.2558],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.025,18.4486],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.9722,18.2697],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0097,18.4425],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0167,18.2456],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.9019,18.2703],"type":"Point"},"properties":{"nombre":"Alborada Campesina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.9761,18.3414],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.70757,18.328163],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.9994,18.1947],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.9056,18.2444],"type":"Point"},"properties":{"nombre":"Baltazar R Leyva Mancilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.0622,18.5747],"type":"Point"},"properties":{"nombre":"Primaria Estatal","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.479396,18.224491],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.428878,18.304084],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.392135,18.190073],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.466984,18.244469],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.438056,17.9525],"type":"Point"},"properties":{"nombre":"R-01 San Agustin Oapan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.4372,17.9522],"type":"Point"},"properties":{"nombre":"Progreso Y Civilizacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.405519,18.208059],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.576276,18.159132],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.4322,18.1072],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.647778,18.647778],"type":"Point"},"properties":{"nombre":"R-01 Tetipac","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.736331,18.700537],"type":"Point"},"properties":{"nombre":"Union Proletaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.731946,18.721855],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.557297,18.634809],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.746667,18.699722],"type":"Point"},"properties":{"nombre":"R-01 Chontalpan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.695186,18.685737],"type":"Point"},"properties":{"nombre":"La Corregidora","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.650221,18.666558],"type":"Point"},"properties":{"nombre":"Union Y Progreso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.664027,18.674002],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.278546,17.578607],"type":"Point"},"properties":{"nombre":"Fray Pedro De Gante","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.276951,17.558064],"type":"Point"},"properties":{"nombre":"Julio S Hernandez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.292083,17.527789],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.317263,17.515087],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.441177,16.922969],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.437537,16.871065],"type":"Point"},"properties":{"nombre":"Congreso De Anahuac","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.357484,16.819107],"type":"Point"},"properties":{"nombre":"General Juan Del Carmen","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2858,16.9381],"type":"Point"},"properties":{"nombre":"Plan De Guadalupe","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.233611,16.875],"type":"Point"},"properties":{"nombre":"Huehuetonoc","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.243524,16.874834],"type":"Point"},"properties":{"nombre":"Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.236111,17.126389],"type":"Point"},"properties":{"nombre":"Jicayan De Tovar","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.286389,16.864444],"type":"Point"},"properties":{"nombre":"R-01 Minas Las","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.360481,16.876859],"type":"Point"},"properties":{"nombre":"24 De Febrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2897,16.9239],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.307798,16.906951],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.748,17.2592],"type":"Point"},"properties":{"nombre":"27 De Septiembre De 1960","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.748,17.2592],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7569,17.2756],"type":"Point"},"properties":{"nombre":"La Luz De La Montana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8417,17.0878],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7219,17.3275],"type":"Point"},"properties":{"nombre":"Alvaro Obregon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.765,17.2464],"type":"Point"},"properties":{"nombre":"Jose Maria Pino Suarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.802778,17.1575],"type":"Point"},"properties":{"nombre":"R-01 Totomixtlahuaca","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8019,17.1572],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8019,17.1572],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7804,17.2103],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.835,17.2156],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.382222,18.343333],"type":"Point"},"properties":{"nombre":"R-01 Colonia Cuauhtémoc","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.533146,18.360966],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.480385,18.380449],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.498889,18.508889],"type":"Point"},"properties":{"nombre":"R-01 Otlaltepec","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3662,17.5748],"type":"Point"},"properties":{"nombre":"Hogar Y Patria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4247,17.5742],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4581,17.5764],"type":"Point"},"properties":{"nombre":"Escuadron 201","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4019,17.5778],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5053,17.44],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.709059,17.544196],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.76153,17.559759],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.681066,17.62488],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5169,17.3892],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51715,17.369118],"type":"Point"},"properties":{"nombre":"Miguel Aleman","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.740933,17.584889],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.509203,18.274549],"type":"Point"},"properties":{"nombre":"Don Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.387222,18.271389],"type":"Point"},"properties":{"nombre":"R-02 San José Poliutla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.8071,17.9855],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.87,17.9625],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.7792,17.9269],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.972778,18.0175],"type":"Point"},"properties":{"nombre":"Feliciano","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.7483,18.0333],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.9942,18.0756],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.0269,18.0089],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.7225,17.780278],"type":"Point"},"properties":{"nombre":"Troncones","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6019,17.3394],"type":"Point"},"properties":{"nombre":"Luz De La Montaña","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5703,17.34],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4778,17.4786],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4553,17.9383],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6025,17.9575],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1122,16.8439],"type":"Point"},"properties":{"nombre":"Amado Jesús Arango","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1189,16.9639],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.166944,16.92],"type":"Point"},"properties":{"nombre":"R-01 La Soledad","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1728,16.7908],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.237443,16.773185],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.204375,16.760595],"type":"Point"},"properties":{"nombre":"Eugenio Tapia Vazquez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.191118,16.767341],"type":"Point"},"properties":{"nombre":"Rafael Ramos Lopez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1978,16.7964],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1411,16.8103],"type":"Point"},"properties":{"nombre":"Fernando Montes De Oca","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.225727,16.765585],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.236381,16.754995],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.197975,16.729558],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.21962,16.772251],"type":"Point"},"properties":{"nombre":"El Pipila","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.210159,16.745703],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.780556,17.424167],"type":"Point"},"properties":{"nombre":"R-01 Zapotitlan Tablas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.835833,17.393889],"type":"Point"},"properties":{"nombre":"R-01 Ayotoxtla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7994,17.3381],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7808,17.4106],"type":"Point"},"properties":{"nombre":"15 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.2325,18.4003],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.0444,18.4908],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3583,18.4086],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.261667,18.304444],"type":"Point"},"properties":{"nombre":"R-01 Guayameo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.3164,18.5258],"type":"Point"},"properties":{"nombre":"General Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.9411,18.3864],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.098889,18.488611],"type":"Point"},"properties":{"nombre":"R-01 Parota La","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.0933,18.4867],"type":"Point"},"properties":{"nombre":"Revolucion Mexicana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-100.9869,18.2956],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.1456,18.225],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.242276,17.714564],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.240577,17.705934],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2206,17.7247],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1214,17.7417],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1225,17.7608],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1417,17.6903],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2086,17.8042],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.243616,17.65872],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2478,17.7456],"type":"Point"},"properties":{"nombre":"Alvaro Obregon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.76,17.865556],"type":"Point"},"properties":{"nombre":"R-01 Amatitlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.461992,17.80349],"type":"Point"},"properties":{"nombre":"Emperador Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.468202,17.804135],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.73,17.743889],"type":"Point"},"properties":{"nombre":"R-01 La Laguna","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6032,17.9312],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.754885,17.729442],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.614461,17.754136],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.7442,17.8753],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.452922,17.806205],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.449258,17.812757],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9847,17.2233],"type":"Point"},"properties":{"nombre":"Caritino Maldonado Perez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.980331,17.234835],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.80722,17.302022],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.862339,17.294502],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Domiguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9186,17.2967],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.881944,17.250278],"type":"Point"},"properties":{"nombre":"R-01 Barranca Pobre","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8814,17.2497],"type":"Point"},"properties":{"nombre":"General Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8814,17.2497],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9803,17.2583],"type":"Point"},"properties":{"nombre":"Xicotencatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.883333,17.349742],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8883,17.341784],"type":"Point"},"properties":{"nombre":"Telesecundaria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.944146,17.262108],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.124066,17.127428],"type":"Point"},"properties":{"nombre":"General Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.103538,17.117812],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.868555,17.352339],"type":"Point"},"properties":{"nombre":"Ernesto Che Guevara","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8611,17.1036],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0656,17.1525],"type":"Point"},"properties":{"nombre":"Antonio Caso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.063597,17.152594],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.920929,17.013309],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.931263,17.219764],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9653,17.17],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.95805,17.264453],"type":"Point"},"properties":{"nombre":"Bandera De Mexico","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.798386,17.29217],"type":"Point"},"properties":{"nombre":"Los Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.799194,17.292804],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8833,17.2739],"type":"Point"},"properties":{"nombre":"Tlaloc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.824201,17.286481],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0458,17.1347],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.805698,17.299662],"type":"Point"},"properties":{"nombre":"Sentimientos De La Nacion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.875556,17.311667],"type":"Point"},"properties":{"nombre":"R-01 El Llano","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.87602,17.224655],"type":"Point"},"properties":{"nombre":"Aguila Que Cae","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.824191,17.326417],"type":"Point"},"properties":{"nombre":"Moctezuma Ii","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8864,17.2628],"type":"Point"},"properties":{"nombre":"Antonio Casso","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.805404,17.275427],"type":"Point"},"properties":{"nombre":"Mahatma Gandhi","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.897636,17.15473],"type":"Point"},"properties":{"nombre":"Benito Juárez García","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.729722,16.507222],"type":"Point"},"properties":{"nombre":"R-01 Barra De Tecoanapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.762675,16.666254],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.830632,16.630631],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.456111,17.191667],"type":"Point"},"properties":{"nombre":"Cochoapa El Grande","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.310556,17.073333],"type":"Point"},"properties":{"nombre":"Arroyo Prieto","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.392901,17.132394],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4983,17.0072],"type":"Point"},"properties":{"nombre":"Juan Ruiz De Alarcon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4906,17.2692],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.424167,17.226667],"type":"Point"},"properties":{"nombre":"San Rafael","horario":0,"dependencia":"SEDESOL","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3797,17.0686],"type":"Point"},"properties":{"nombre":"Francisco Zarco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9769,17.48],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.989207,17.454742],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9928,17.4675],"type":"Point"},"properties":{"nombre":"Topiltzin","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0086,17.4017],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0267,17.465],"type":"Point"},"properties":{"nombre":"Juan N Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.999284,17.426007],"type":"Point"},"properties":{"nombre":"Frida Kahlo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9881,17.3964],"type":"Point"},"properties":{"nombre":"Ixtaccihuatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0186,17.4156],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0225,17.4875],"type":"Point"},"properties":{"nombre":"Chimalpopocatl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0119,17.4342],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9767,17.3761],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.702691,16.624612],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.764361,16.606729],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.687222,17.045833],"type":"Point"},"properties":{"nombre":"R-01 Iliatenco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.718889,17.073889],"type":"Point"},"properties":{"nombre":"R-01 Canada De Alchipahuac","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5858,17.0239],"type":"Point"},"properties":{"nombre":"José Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7075,17.050833],"type":"Point"},"properties":{"nombre":"R-01 Ojo De Agua","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6575,17.0594],"type":"Point"},"properties":{"nombre":"Miguel Sanchez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.615341,16.98455],"type":"Point"},"properties":{"nombre":"Vicente Guerrero Saldaña","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.686655,17.042624],"type":"Point"},"properties":{"nombre":"Benito Juárez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.44859,20.17581],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4328,20.1969],"type":"Point"},"properties":{"nombre":"Encinillos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.48127,20.14367],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.463889,20.252222],"type":"Point"},"properties":{"nombre":"San Bartolo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.464167,20.126667],"type":"Point"},"properties":{"nombre":"San Dionisio","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.39409,20.2046],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.47391,20.0789],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.14918,20.10671],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.22621,20.1628],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y P","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.246944,20.182222],"type":"Point"},"properties":{"nombre":"San Mateo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.18046,20.25218],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.21428,20.16338],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2167,20.14939],"type":"Point"},"properties":{"nombre":"Triunfo De La Republica","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.19169,20.14741],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.226667,20.171111],"type":"Point"},"properties":{"nombre":"Curso Comunitario","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.228611,20.215556],"type":"Point"},"properties":{"nombre":"Zacacuautla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.19653,20.11542],"type":"Point"},"properties":{"nombre":"Moises Saenz Garza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.902222,20.376667],"type":"Point"},"properties":{"nombre":"Las Mecas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.88013,20.3541],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.356389,20.348611],"type":"Point"},"properties":{"nombre":"Agua Blanca Iturbide","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.37213,20.32468],"type":"Point"},"properties":{"nombre":"Corregidora De Queretaro","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.39475,20.33751],"type":"Point"},"properties":{"nombre":"Alvaro Obregon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.370833,20.348056],"type":"Point"},"properties":{"nombre":"Curso Comunitario","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4008,20.3622],"type":"Point"},"properties":{"nombre":"Los Cubes","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3492,20.3172],"type":"Point"},"properties":{"nombre":"Ejido Milpa Vieja","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.34076,20.31487],"type":"Point"},"properties":{"nombre":"Pensador Mexicano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.39091,20.37645],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.42953,20.33018],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.31175,20.38993],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.311667,20.413056],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.99859,20.13165],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.4103,20.3761],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.36825,20.39337],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.31233,20.39219],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3092,20.3372],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.35535,20.43153],"type":"Point"},"properties":{"nombre":"Mariano Escobedo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.37168,20.4234],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.32506,20.43992],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.4428,20.3381],"type":"Point"},"properties":{"nombre":"Vasco De Quiroga","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3326,20.39499],"type":"Point"},"properties":{"nombre":"Jaime Nuno","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.36407,20.41539],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.390833,20.476389],"type":"Point"},"properties":{"nombre":"San Francisco Sacachichilco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.43711,20.46964],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3875,20.3694],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.32166,20.43016],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.33392,20.487],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.34558,20.38802],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.32763,20.40859],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.36665,20.47289],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.33791,20.44911],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.45508,20.46809],"type":"Point"},"properties":{"nombre":"Adolfo Espinosa Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8464,20.2339],"type":"Point"},"properties":{"nombre":"San Jerónimo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8725,20.207222],"type":"Point"},"properties":{"nombre":"Curso Comunitario","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3661,20.98264],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.36752,21.00237],"type":"Point"},"properties":{"nombre":"La Gran Tenochtitlan","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.40976,21.02366],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.394167,20.993889],"type":"Point"},"properties":{"nombre":"Cochiscoatitla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.35889,20.98071],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.362778,21.004444],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.35128,21.06494],"type":"Point"},"properties":{"nombre":"Rafael Ramirez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.63199,20.30875],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.718333,20.406944],"type":"Point"},"properties":{"nombre":"Cerro Colorado","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.64307,20.30421],"type":"Point"},"properties":{"nombre":"Isabel Lugo De Rojo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.69344,20.36752],"type":"Point"},"properties":{"nombre":"Profr Malaquias Piña","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.63985,20.27366],"type":"Point"},"properties":{"nombre":"Gral Felipe Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.68967,20.29949],"type":"Point"},"properties":{"nombre":"Gral Felipe Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6094,20.2858],"type":"Point"},"properties":{"nombre":"Montecillos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.72891,20.30334],"type":"Point"},"properties":{"nombre":"Reforma","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.61341,20.323],"type":"Point"},"properties":{"nombre":"Gral Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.78251,20.30243],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.65692,20.36748],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.74103,20.38965],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7722,20.3533],"type":"Point"},"properties":{"nombre":"Sauz Sabino","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.65809,20.25898],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.639,20.2431],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.68349,20.31403],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.73025,20.37006],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.75431,20.30658],"type":"Point"},"properties":{"nombre":"Antonio Peñafiel","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.56516,20.31658],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.72054,20.30661],"type":"Point"},"properties":{"nombre":"Juan De La Barrera","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.64925,20.33559],"type":"Point"},"properties":{"nombre":"Ignacio Jose Allende","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6442,20.8906],"type":"Point"},"properties":{"nombre":"Ahuacatlán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.49,20.8833],"type":"Point"},"properties":{"nombre":"Atempa","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.545278,20.895278],"type":"Point"},"properties":{"nombre":"Pezmatlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.50739,20.92076],"type":"Point"},"properties":{"nombre":"Ambrosio Hernandez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.59167,20.93045],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.61301,20.92675],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51477,20.8977],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5408,20.8753],"type":"Point"},"properties":{"nombre":"Tula","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.116667,20.6125],"type":"Point"},"properties":{"nombre":"Cardonal","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1314,20.56083],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.14378,20.64457],"type":"Point"},"properties":{"nombre":"Teodomiro Manzano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.13512,20.60726],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.141389,20.612222],"type":"Point"},"properties":{"nombre":"El Deca","horario":9,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.000278,20.513611],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.109,20.735083],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0593,20.49325],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.133889,20.579444],"type":"Point"},"properties":{"nombre":"San Antonio Sabanillas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1577,20.63554],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.136111,20.662222],"type":"Point"},"properties":{"nombre":"Santuario Mapethe","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.084722,20.587222],"type":"Point"},"properties":{"nombre":"El Sauz Juxmaye","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.12211,20.62736],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.06884,20.5448],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.09488,20.62968],"type":"Point"},"properties":{"nombre":"Lucha Y Libertad","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.07532,20.6455],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.12565,20.55213],"type":"Point"},"properties":{"nombre":"Angelica Castro De La Fuente","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.066389,20.601944],"type":"Point"},"properties":{"nombre":"Curso Comunitario","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.33089,19.9214],"type":"Point"},"properties":{"nombre":"Lauro Aguirre","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.20047,20.01822],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.35376,19.9303],"type":"Point"},"properties":{"nombre":"Pedro Maria Anaya","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.28672,19.89834],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.170555,20.083055],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.20625,20.0632],"type":"Point"},"properties":{"nombre":"Ernesto Viveros","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.265,20.0325],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.31749,19.87262],"type":"Point"},"properties":{"nombre":"Nicanor Guzman","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.244167,19.995556],"type":"Point"},"properties":{"nombre":"Santa Elena Paliseca","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.18703,19.99727],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.18761,20.06659],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.29308,19.92],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.5489,20.2364],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.4639,20.2836],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.50421,20.1821],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.5892,20.2383],"type":"Point"},"properties":{"nombre":"Felix Olvera Godoy","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0025,21.1458],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9392,21.1589],"type":"Point"},"properties":{"nombre":"Gral Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9339,21.1575],"type":"Point"},"properties":{"nombre":"Guillermo Prieto","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8528,21.1389],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8528,21.1389],"type":"Point"},"properties":{"nombre":"Telesecundaria 432","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.855278,21.139722],"type":"Point"},"properties":{"nombre":"Cahuazas Hacienda De Cahuazas","horario":9,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9994,21.0603],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9961,21.0653],"type":"Point"},"properties":{"nombre":"El Coyol","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9206,21.115],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9206,21.115],"type":"Point"},"properties":{"nombre":"Telesecundaria 35","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9231,21.1158],"type":"Point"},"properties":{"nombre":"Neblinas","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0275,21.0775],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0022,21.1036],"type":"Point"},"properties":{"nombre":"Palo Semita","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9478,21.0819],"type":"Point"},"properties":{"nombre":"Ignacio Lopez Rayon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9311,21.1714],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9522,21.1503],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9367,21.1153],"type":"Point"},"properties":{"nombre":"Revolucion","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9858,21.1242],"type":"Point"},"properties":{"nombre":"Insurgentes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9858,21.1242],"type":"Point"},"properties":{"nombre":"Telesecundaria 26","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.985833,21.123889],"type":"Point"},"properties":{"nombre":"Santa Ana De Allende","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9903,21.0853],"type":"Point"},"properties":{"nombre":"Gral Francisco Villa","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9544,21.0733],"type":"Point"},"properties":{"nombre":"Manuel Avila Camacho","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8944,21.1892],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8719,21.1644],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0025,21.1161],"type":"Point"},"properties":{"nombre":"Francisco Gonzalez Bocanegra","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8956,21.1364],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.003056,21.112778],"type":"Point"},"properties":{"nombre":"Curso Comunitario","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8475,21.1731],"type":"Point"},"properties":{"nombre":"Escuela Primaria General","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2361,20.3375],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.20202,20.38919],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.181369,20.38598],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1738,20.40385],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.806389,20.7475],"type":"Point"},"properties":{"nombre":"Eloxochitlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8353,20.7078],"type":"Point"},"properties":{"nombre":"Hualula (San Juan Hualula)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.621111,19.9825],"type":"Point"},"properties":{"nombre":"Santa Monica","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.55003,20.24836],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.48373,20.19911],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.58663,20.27136],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.61146,20.26924],"type":"Point"},"properties":{"nombre":"Fray Pedro De Gante","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.52285,20.22943],"type":"Point"},"properties":{"nombre":"Aguiluchos De Chapultepec","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.54015,20.18561],"type":"Point"},"properties":{"nombre":"Manuel Fernando Soto","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4978,20.2081],"type":"Point"},"properties":{"nombre":"Río Seco Puente De Doria","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.58873,20.22559],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.49945,20.15333],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.61943,20.23181],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.55658,20.15694],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4996,20.26027],"type":"Point"},"properties":{"nombre":"Nicolas G De San Vicente","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.47715,20.20308],"type":"Point"},"properties":{"nombre":"Francisco Chapa","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5204,20.17738],"type":"Point"},"properties":{"nombre":"Manuel Sanchez Vite","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.62249,20.26171],"type":"Point"},"properties":{"nombre":"Esfuerzo Campesino","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.27381,20.95477],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.22013,20.96481],"type":"Point"},"properties":{"nombre":"Indo America","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.28477,21.04802],"type":"Point"},"properties":{"nombre":"Liberacion Campesina","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.20155,21.04297],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.22636,21.01338],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.30678,21.02889],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.24616,21.02774],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.23978,20.97461],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.27615,21.06627],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2821,21.00225],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.22051,21.09977],"type":"Point"},"properties":{"nombre":"Felipe Garcia","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2168,21.06383],"type":"Point"},"properties":{"nombre":"Ignacio Altamirano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.25924,20.99149],"type":"Point"},"properties":{"nombre":"Damian Carmona","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.30717,21.01493],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.26966,20.96381],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.31436,21.03535],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.17779,21.08659],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1957,21.01835],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.24036,21.12042],"type":"Point"},"properties":{"nombre":"Nicolas Bautista","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.24899,20.95483],"type":"Point"},"properties":{"nombre":"Alma Infantil","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.31151,21.04024],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.24707,20.99004],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2436,21.0936],"type":"Point"},"properties":{"nombre":"Santo Domingo","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.18702,21.06311],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.256667,20.950833],"type":"Point"},"properties":{"nombre":"Zacatipa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.27086,21.04827],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.28963,21.0619],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.42749,21.02668],"type":"Point"},"properties":{"nombre":"Teodomiro Manzano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.45387,21.01633],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5267,21.0217],"type":"Point"},"properties":{"nombre":"Chiatipan","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.49247,20.95855],"type":"Point"},"properties":{"nombre":"Alvaro Obregon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.46935,21.03432],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5044,20.9889],"type":"Point"},"properties":{"nombre":"San Juan","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.52613,20.95184],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.46802,20.99769],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.45087,20.98864],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.46871,20.96382],"type":"Point"},"properties":{"nombre":"Abraham Castellanos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.48139,20.97877],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.50504,21.0383],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0544,20.4875],"type":"Point"},"properties":{"nombre":"Veintiuno De Marzo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1467,20.4047],"type":"Point"},"properties":{"nombre":"San Clemente","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0178,20.4969],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0178,20.4969],"type":"Point"},"properties":{"nombre":"Telesecundaria 591","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0731,20.4436],"type":"Point"},"properties":{"nombre":"Guillermo Prieto","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1042,20.4194],"type":"Point"},"properties":{"nombre":"Santa Úrsula","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0536,20.5714],"type":"Point"},"properties":{"nombre":"Pensador Mexicano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0278,20.5492],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0672,20.4603],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1222,20.4167],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0708,20.4392],"type":"Point"},"properties":{"nombre":"Curso Comunitario","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.478108,21.216478],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5319,21.10524],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.54076,21.06997],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.55025,21.20664],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.515347,21.238528],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51717,21.11692],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.41844,21.04556],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.50561,21.07389],"type":"Point"},"properties":{"nombre":"Adolfo Espinosa Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.49393,21.05981],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.50155,21.19474],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2941,21.17463],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51256,21.22067],"type":"Point"},"properties":{"nombre":"El Pipila","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.577689,21.136158],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.528478,21.105178],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.508611,21.053611],"type":"Point"},"properties":{"nombre":"Tehuetlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.54491,21.07415],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.49871,21.08677],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.52777,21.05407],"type":"Point"},"properties":{"nombre":"Manuel T Andrade","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4849,21.231928],"type":"Point"},"properties":{"nombre":"Libertad","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.29721,21.13429],"type":"Point"},"properties":{"nombre":"Liberacion Campesina","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.49322,21.07805],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.553447,21.127758],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.50153,21.07319],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.515697,21.070878],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.48342,21.06664],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51959,21.11787],"type":"Point"},"properties":{"nombre":"Ricardo Flores Magon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.555758,21.140689],"type":"Point"},"properties":{"nombre":"Gral Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51261,21.05585],"type":"Point"},"properties":{"nombre":"Miguel Dominguez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6286,20.3853],"type":"Point"},"properties":{"nombre":"Julian Villagran","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.825,20.3033],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6803,20.3578],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6619,20.4103],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6872,20.3925],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6431,20.3314],"type":"Point"},"properties":{"nombre":"Sor Juana I De La Cruz","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6247,20.3747],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.7161,20.3675],"type":"Point"},"properties":{"nombre":"Jose Lugo Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.23189,20.67439],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.166389,20.586944],"type":"Point"},"properties":{"nombre":"El Espiritu","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.104167,20.396389],"type":"Point"},"properties":{"nombre":"Julian Villagran","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.240278,20.665556],"type":"Point"},"properties":{"nombre":"La Lagunita","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.208611,20.584444],"type":"Point"},"properties":{"nombre":"Orizabita","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.18118,20.57554],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.156139,20.414358],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.15145,20.56518],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.09658,20.42254],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.12573,20.52759],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.10651,20.40329],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.11956,20.49765],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.20287,20.5923],"type":"Point"},"properties":{"nombre":"Gral Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1156,21.0272],"type":"Point"},"properties":{"nombre":"Cuesta Colorada","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1344,21.0703],"type":"Point"},"properties":{"nombre":"Los Duraznos","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0636,20.8775],"type":"Point"},"properties":{"nombre":"La Palma","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.045,20.855556],"type":"Point"},"properties":{"nombre":"Quetzalapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1644,20.9458],"type":"Point"},"properties":{"nombre":"San Nicolás","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1644,20.9444],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0953,20.8375],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.506389,21.135833],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.507778,21.153056],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.716667,20.842222],"type":"Point"},"properties":{"nombre":"Lolotla","horario":12,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.715556,20.908056],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7206,21.1761],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.691944,20.875],"type":"Point"},"properties":{"nombre":"Chalma","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7489,21.1686],"type":"Point"},"properties":{"nombre":"Casa Del Pueblo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7489,21.1686],"type":"Point"},"properties":{"nombre":"Telesecundaria 294","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.749444,21.17],"type":"Point"},"properties":{"nombre":"Chantasco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.736389,20.981667],"type":"Point"},"properties":{"nombre":"Chiconcoac","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.73374,20.98177],"type":"Point"},"properties":{"nombre":"Ignacio M Altamirano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.64811,20.90138],"type":"Point"},"properties":{"nombre":"Hermanos Galeana","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7519,20.9228],"type":"Point"},"properties":{"nombre":"Huitznopala","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.75411,21.03885],"type":"Point"},"properties":{"nombre":"Articulo 3 Constitucional","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7031,20.8833],"type":"Point"},"properties":{"nombre":"Ixtlahuaco","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7047,20.8835],"type":"Point"},"properties":{"nombre":"Domitilo Austria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7361,21.1539],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.72927,20.93364],"type":"Point"},"properties":{"nombre":"Alvaro Obregon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7197,21.1844],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7439,21.0639],"type":"Point"},"properties":{"nombre":"Xuchitlán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.36027,20.21857],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.34486,20.30162],"type":"Point"},"properties":{"nombre":"Enrique C Rebsamen","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3022,20.21597],"type":"Point"},"properties":{"nombre":"Gral Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.29368,20.25406],"type":"Point"},"properties":{"nombre":"Progreso Y Libertad","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.34047,20.25704],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.58975,20.50759],"type":"Point"},"properties":{"nombre":"Profr Alfonso Hernandez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5383,20.5869],"type":"Point"},"properties":{"nombre":"Carpinteros","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.66457,20.51665],"type":"Point"},"properties":{"nombre":"Fray Pedro De Gante","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.62541,20.51585],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.59839,20.54451],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5642,20.6092],"type":"Point"},"properties":{"nombre":"Zahuastipán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.80722,20.63469],"type":"Point"},"properties":{"nombre":"Carlos A Carrillo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.81402,20.59806],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.694444,20.498333],"type":"Point"},"properties":{"nombre":"El Carrizal","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.81267,20.68492],"type":"Point"},"properties":{"nombre":"Tomas Lujan","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.75276,20.62888],"type":"Point"},"properties":{"nombre":"Emilio Carranza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.74693,20.54932],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8002,20.51486],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.808889,20.643611],"type":"Point"},"properties":{"nombre":"El Pedregal De Zaragoza","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.71527,20.45894],"type":"Point"},"properties":{"nombre":"Serapio Lopez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7725,20.63048],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8297,20.66888],"type":"Point"},"properties":{"nombre":"Adolfo Espinosa Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.78246,20.60661],"type":"Point"},"properties":{"nombre":"Fernando Vazquez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.79383,20.59115],"type":"Point"},"properties":{"nombre":"Malaquias Piña","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.805139,20.187611],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.772222,20.260833],"type":"Point"},"properties":{"nombre":"San Sebastian Capulines","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1225,21.099167],"type":"Point"},"properties":{"nombre":"La Mision","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0639,21.0889],"type":"Point"},"properties":{"nombre":"Curso Comunitario","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0483,21.0139],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1044,21.0556],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1064,21.0672],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0867,21.0981],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9836,21.0253],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.1244,21.1081],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0586,21.1247],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0544,21.1378],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.75176,20.8061],"type":"Point"},"properties":{"nombre":"Eusebio A Velasco","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8181,20.9717],"type":"Point"},"properties":{"nombre":"Cuxhuacan","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7314,20.7597],"type":"Point"},"properties":{"nombre":"Ixmolintla","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.71503,20.73525],"type":"Point"},"properties":{"nombre":"Veinte De Noviembre","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.76322,20.83145],"type":"Point"},"properties":{"nombre":"Jaime Nuno","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.83592,20.89081],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.72638,20.81817],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7121,20.86757],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.80475,20.90445],"type":"Point"},"properties":{"nombre":"Felipe Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.15271,20.73621],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.15074,20.75746],"type":"Point"},"properties":{"nombre":"Gral Nicolas Flores","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.219722,20.758889],"type":"Point"},"properties":{"nombre":"Taxhay","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.135278,20.732222],"type":"Point"},"properties":{"nombre":"Villa Hermosa","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.195278,20.860556],"type":"Point"},"properties":{"nombre":"Villa Juárez","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.206389,20.795],"type":"Point"},"properties":{"nombre":"Cerro Prieto","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.5872,20.2039],"type":"Point"},"properties":{"nombre":"Narciso Mendoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.600278,21.233056],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.59573,21.25714],"type":"Point"},"properties":{"nombre":"Patria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.59498,21.15703],"type":"Point"},"properties":{"nombre":"Jose Lopez Portillo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3839,20.9233],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.343611,20.981111],"type":"Point"},"properties":{"nombre":"Jiliapan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.31475,20.892333],"type":"Point"},"properties":{"nombre":"El Tormento De Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3592,20.9792],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.006389,21.194167],"type":"Point"},"properties":{"nombre":"Pisaflores","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9925,21.2397],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9606,21.2172],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9436,21.24],"type":"Point"},"properties":{"nombre":"Chalahuite","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0175,21.2508],"type":"Point"},"properties":{"nombre":"Jaime Nuno","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9422,21.1983],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.957778,21.265278],"type":"Point"},"properties":{"nombre":"Gargantilla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9575,21.2606],"type":"Point"},"properties":{"nombre":"Leandro Valle","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0272,21.2744],"type":"Point"},"properties":{"nombre":"Leona Vicario","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.028889,21.274722],"type":"Point"},"properties":{"nombre":"Guayabos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9867,21.2853],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9464,21.2844],"type":"Point"},"properties":{"nombre":"Las Moras","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.04,21.1842],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0453,21.2047],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0378,21.2569],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0581,21.2333],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9533,21.2469],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9617,21.2933],"type":"Point"},"properties":{"nombre":"Pedro Maria Anaya","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9825,20.124889],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.01666,20.03628],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.98775,20.150917],"type":"Point"},"properties":{"nombre":"Guillermo Prieto","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.03492,20.01568],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.85154,20.0281],"type":"Point"},"properties":{"nombre":"Maria Isabel Ordaz Camacho","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.20862,20.38607],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0686,20.5039],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.19816,20.41793],"type":"Point"},"properties":{"nombre":"Lic Luis Echeverria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.20741,20.4913],"type":"Point"},"properties":{"nombre":"Pensador Mexicano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.19796,20.40942],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.0961,20.5017],"type":"Point"},"properties":{"nombre":"Primero De Mayo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1514,20.5089],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1486,20.4975],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.05584,20.34576],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.023889,20.325278],"type":"Point"},"properties":{"nombre":"Dextho De Victoria","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0275,20.343889],"type":"Point"},"properties":{"nombre":"Lagunilla","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.03145,20.36397],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.012222,20.353056],"type":"Point"},"properties":{"nombre":"Cerritos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.918889,20.442778],"type":"Point"},"properties":{"nombre":"El Encino","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.98526,20.36967],"type":"Point"},"properties":{"nombre":"Cinco De Febrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9478,20.4128],"type":"Point"},"properties":{"nombre":"Hermosillo Monte Noble","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.021111,20.373056],"type":"Point"},"properties":{"nombre":"Mezquital","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.0132,20.39491],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.052222,20.370833],"type":"Point"},"properties":{"nombre":"Patria Nueva","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.94598,20.37268],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.95267,20.35889],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.381944,20.013611],"type":"Point"},"properties":{"nombre":"Clinica Imss-Oportunidades","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4783,19.9008],"type":"Point"},"properties":{"nombre":"Francisco I. Madero","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.386556,19.930472],"type":"Point"},"properties":{"nombre":"Profr Jose M Serratos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.472583,20.049972],"type":"Point"},"properties":{"nombre":"Don Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3282,20.55974],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.369167,20.5375],"type":"Point"},"properties":{"nombre":"Caltimacán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.28912,20.54888],"type":"Point"},"properties":{"nombre":"Miguel Othon De Mendizabal","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.43,20.5822],"type":"Point"},"properties":{"nombre":"Noxthey","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.32439,20.50109],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.32899,20.53927],"type":"Point"},"properties":{"nombre":"Escuela De Educacion Primaria Indigena","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.50661,20.60988],"type":"Point"},"properties":{"nombre":"Gral Nicolas Bravo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.52503,20.52528],"type":"Point"},"properties":{"nombre":"Revolucion","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6467,20.4853],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6472,20.5097],"type":"Point"},"properties":{"nombre":"Gral Felipe Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.55788,20.5313],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6356,20.5981],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.670278,20.485],"type":"Point"},"properties":{"nombre":"La Mesilla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.5361,20.4725],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6208,20.5614],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.52374,20.55103],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6389,20.5775],"type":"Point"},"properties":{"nombre":"Nicolas Romero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.49112,20.53018],"type":"Point"},"properties":{"nombre":"Guillermo Prieto","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.6481,20.5553],"type":"Point"},"properties":{"nombre":"Melchor Camacho Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.5189,20.61119],"type":"Point"},"properties":{"nombre":"Lic Luis Echeverria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1894,20.3731],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.210833,20.358333],"type":"Point"},"properties":{"nombre":"El Bopo","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1761,20.3861],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.27275,20.28279],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.22071,20.32777],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2303,20.3522],"type":"Point"},"properties":{"nombre":"El Deque","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1286,20.3786],"type":"Point"},"properties":{"nombre":"Heroes De Chapultepec","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1706,20.3533],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.26695,20.31009],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1847,20.3456],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.20083,20.34463],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1117,20.3797],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1269,20.3658],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1389,20.3831],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.18822,20.32183],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1592,20.3603],"type":"Point"},"properties":{"nombre":"Telesecundaria 319","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.16,20.361111],"type":"Point"},"properties":{"nombre":"San Pablo El Grande","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.1592,20.3603],"type":"Point"},"properties":{"nombre":"18 De Marzo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.198611,20.380556],"type":"Point"},"properties":{"nombre":"Santa Maria Temaxcalapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.2214,20.3058],"type":"Point"},"properties":{"nombre":"Santa Mónica","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.21921,20.30745],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.21106,20.37468],"type":"Point"},"properties":{"nombre":"Margarita Maza De Juárez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.28655,20.26731],"type":"Point"},"properties":{"nombre":"José Maria Morelos Y Pavon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7775,20.9739],"type":"Point"},"properties":{"nombre":"Acoxcatlán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.77743,20.97202],"type":"Point"},"properties":{"nombre":"Evolucion Social","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7797,21.1253],"type":"Point"},"properties":{"nombre":"Ley Del 21 De Agosto","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7797,21.1253],"type":"Point"},"properties":{"nombre":"Telesecundaria 429","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.79775,21.0359],"type":"Point"},"properties":{"nombre":"Gregorio Torres Quintero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9072,21.0364],"type":"Point"},"properties":{"nombre":"San Juan Ahuehueco","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.75774,21.01763],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.84934,20.97691],"type":"Point"},"properties":{"nombre":"Articulo 27","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8386,21.1514],"type":"Point"},"properties":{"nombre":"Pensador Mexicano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8386,21.1514],"type":"Point"},"properties":{"nombre":"Telesecundaria 473","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8261,21.1189],"type":"Point"},"properties":{"nombre":"Heroes De Chapultepec","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8261,21.1189],"type":"Point"},"properties":{"nombre":"Telesecundaria 229","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8261,21.1197],"type":"Point"},"properties":{"nombre":"Cuatolol","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.88604,21.01722],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.87089,21.01051],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9508,21.0428],"type":"Point"},"properties":{"nombre":"Rafael Delgado","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9136,21.0869],"type":"Point"},"properties":{"nombre":"Lic Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.78,21.1703],"type":"Point"},"properties":{"nombre":"Fray Bartolome De Las Casas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.81552,21.01157],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.80002,20.99834],"type":"Point"},"properties":{"nombre":"Tomas L Rubalcaba","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.853611,21.092222],"type":"Point"},"properties":{"nombre":"Curso Comunitario Indigena","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7503,21.15],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8619,21.1319],"type":"Point"},"properties":{"nombre":"Educacion Y Patria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.93739,21.06912],"type":"Point"},"properties":{"nombre":"Escuela De Educacion Primaria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8125,21.1297],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8475,21.0567],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9197,21.0292],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8897,21.0856],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9394,21.0292],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.353169,19.791919],"type":"Point"},"properties":{"nombre":"Juventino Rosas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.3593,19.8061],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.37825,20.166583],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.397333,20.199111],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.76834,19.94029],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.31374,20.17865],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.467778,20.825833],"type":"Point"},"properties":{"nombre":"Atecoxco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.467222,20.758611],"type":"Point"},"properties":{"nombre":"Coamelco","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.54461,20.777],"type":"Point"},"properties":{"nombre":"Francisco Sarabia","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.50031,20.74676],"type":"Point"},"properties":{"nombre":"Ignacio Comonfort","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.53061,20.75634],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51623,20.83128],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5075,20.7647],"type":"Point"},"properties":{"nombre":"Polintotla","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.54595,20.81989],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4455,20.85918],"type":"Point"},"properties":{"nombre":"Gral Felipe Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5193,20.76105],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4922,20.78483],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51259,20.78604],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4547,20.8608],"type":"Point"},"properties":{"nombre":"Yatipán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51044,20.83793],"type":"Point"},"properties":{"nombre":"1 De Mayo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9022,20.9011],"type":"Point"},"properties":{"nombre":"Acapa (Santiago Acapa)","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9942,20.9906],"type":"Point"},"properties":{"nombre":"Paz Y Educacion","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.9742,20.9908],"type":"Point"},"properties":{"nombre":"Buenavista","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.97556,20.99147],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.8956,20.9525],"type":"Point"},"properties":{"nombre":"Coyocala","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.895556,20.9525],"type":"Point"},"properties":{"nombre":"Simon Bolivar","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.91229,20.98848],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.59758,20.96182],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.56919,20.9553],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5833,20.9892],"type":"Point"},"properties":{"nombre":"Apantlazol","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.58412,20.98629],"type":"Point"},"properties":{"nombre":"Articulo Tercero Constitucional","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6983,21.0667],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.56386,21.03546],"type":"Point"},"properties":{"nombre":"Profr Eliseo Bandala Fernandez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6631,21.0978],"type":"Point"},"properties":{"nombre":"Cuatlimax","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6966,20.97181],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.58564,21.05074],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.63172,20.9612],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.54684,21.02692],"type":"Point"},"properties":{"nombre":"Juan De La Barrera","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.64862,21.11025],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6894,21.0836],"type":"Point"},"properties":{"nombre":"Hueyapa","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.62731,21.07167],"type":"Point"},"properties":{"nombre":"Rafael Ramirez Castañeda","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5717,21.0392],"type":"Point"},"properties":{"nombre":"Peyula","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6864,21.0478],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.69642,20.93108],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.66093,20.95566],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.59327,21.06756],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.59857,21.01215],"type":"Point"},"properties":{"nombre":"Independencia","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7256,21.0847],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.56812,21.03118],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.5808,21.0103],"type":"Point"},"properties":{"nombre":"Toctitlán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6409,20.94876],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7094,21.085],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.60647,21.00022],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.91441,19.98397],"type":"Point"},"properties":{"nombre":"Vasco De Quiroga","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.278361,20.141694],"type":"Point"},"properties":{"nombre":"Profr Adolfo Espinosa Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.26326,20.91615],"type":"Point"},"properties":{"nombre":"Gral Mariano Escobedo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.30463,20.81118],"type":"Point"},"properties":{"nombre":"Gral Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.29234,20.88843],"type":"Point"},"properties":{"nombre":"El Progreso","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.29774,20.87888],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.26178,20.82405],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.28849,20.82513],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.31123,20.84325],"type":"Point"},"properties":{"nombre":"Agustin Melgar","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.31195,20.86834],"type":"Point"},"properties":{"nombre":"La Corregidora","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.26801,20.84567],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.28408,20.88879],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.25307,20.79481],"type":"Point"},"properties":{"nombre":"Lic Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.296,20.81241],"type":"Point"},"properties":{"nombre":"Guillermo Prieto","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.27409,20.82049],"type":"Point"},"properties":{"nombre":"Xicotencatl","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.25996,20.79361],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.30119,20.90231],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.678611,20.776667],"type":"Point"},"properties":{"nombre":"Xochicoatlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.583972,20.793361],"type":"Point"},"properties":{"nombre":"15 De Mayo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.6147,20.8392],"type":"Point"},"properties":{"nombre":"Texcaco","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.387222,20.91],"type":"Point"},"properties":{"nombre":"El Arenal","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.34903,20.90909],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.37155,20.89326],"type":"Point"},"properties":{"nombre":"Cinco De Mayo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.3329,20.90604],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.33981,20.90681],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4028,20.935],"type":"Point"},"properties":{"nombre":"Mecatlán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.41678,20.94363],"type":"Point"},"properties":{"nombre":"Espiritu Del Pueblo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.39498,20.91376],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.35302,20.92654],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.36264,20.88278],"type":"Point"},"properties":{"nombre":"21 De Marzo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.34287,20.90061],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.38286,20.96225],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.399722,20.970278],"type":"Point"},"properties":{"nombre":"Tlalchiyahualica","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.355278,20.899167],"type":"Point"},"properties":{"nombre":"Xochitl","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.42394,20.87539],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.36777,20.90213],"type":"Point"},"properties":{"nombre":"24 De Febrero","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.4325,20.9094],"type":"Point"},"properties":{"nombre":"Zoquitipán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.40092,20.96599],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.33984,20.8741],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.51618,20.67215],"type":"Point"},"properties":{"nombre":"Gral Ignacio Zaragoza","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.655278,19.881056],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.683667,19.957972],"type":"Point"},"properties":{"nombre":"Eduardo Vera Gutierrez","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.576778,19.940306],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7164,19.8722],"type":"Point"},"properties":{"nombre":"San Agustín Zapotlán","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.663278,19.93125],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.552417,19.898778],"type":"Point"},"properties":{"nombre":"Netzahualcoyotl","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.7531,19.9447],"type":"Point"},"properties":{"nombre":"San Pedro Tlaquilpan","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-98.705528,19.960056],"type":"Point"},"properties":{"nombre":"General Felipe Angeles","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.4428,20.8669],"type":"Point"},"properties":{"nombre":"Gral Antonio Viruegas","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.22573,20.83847],"type":"Point"},"properties":{"nombre":"Hermenegildo Galeana","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.23,20.8947],"type":"Point"},"properties":{"nombre":"Durango","horario":8,"dependencia":"IMSS","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.43761,20.63865],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.2586,20.84034],"type":"Point"},"properties":{"nombre":"Enrique C Rebsamen","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.22007,20.87238],"type":"Point"},"properties":{"nombre":"Nicolas Bravo","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-99.30237,20.64843],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":8,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.83777778,20.79638889],"type":"Point"},"properties":{"nombre":"Francisco J Mujica","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.59611111,20.01055556],"type":"Point"},"properties":{"nombre":"Centro De Atencion Multiple 43 Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.641667,19.989444],"type":"Point"},"properties":{"nombre":"Centro De Salud Rural De Tepec","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.72611111,20.77833333],"type":"Point"},"properties":{"nombre":"Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.66222222,20.84416667],"type":"Point"},"properties":{"nombre":"Jose Clemente Orozco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.02277778,20.44222222],"type":"Point"},"properties":{"nombre":"Ignacio Manuel Altamirano","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.17777778,20.58972222],"type":"Point"},"properties":{"nombre":"Juan Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.08944444,20.61972222],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.24055556,20.60944444],"type":"Point"},"properties":{"nombre":"Pedro Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.05388889,20.47611111],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.09138889,20.54722222],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.03305556,20.45138889],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.071944,20.455556],"type":"Point"},"properties":{"nombre":"Texcalame","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.99277778,20.49361111],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.17166667,20.58611111],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.0875,20.8825],"type":"Point"},"properties":{"nombre":"Estancia De Ayones","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.121389,20.833333],"type":"Point"},"properties":{"nombre":"C.S. Manuel Martinez Valadez","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.12138889,20.83333333],"type":"Point"},"properties":{"nombre":"Independencia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.236944,20.725556],"type":"Point"},"properties":{"nombre":"C.S. Santiguito De Velazquez","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.62638889,20.71777778],"type":"Point"},"properties":{"nombre":"Joaquin Gutierrenz Heras","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.73694444,20.20472222],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.30361111,20.26138889],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.55694444,20.29777778],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.65722222,20.52055556],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.55888889,20.48277778],"type":"Point"},"properties":{"nombre":"Carlos Darwin","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.474167,20.453056],"type":"Point"},"properties":{"nombre":"Margaritas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.43583333,20.51361111],"type":"Point"},"properties":{"nombre":"Juan De La Barrera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.616667,20.550833],"type":"Point"},"properties":{"nombre":"San Antonio De Fernandez","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.59305556,20.47027778],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.44805556,19.96138889],"type":"Point"},"properties":{"nombre":"Constitucion","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.45138889,19.91111111],"type":"Point"},"properties":{"nombre":"Cristobal Colon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.38305556,19.87805556],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.326389,19.678889],"type":"Point"},"properties":{"nombre":"Ahuacapan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.38333333,19.80361111],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.28444444,19.84611111],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.288889,19.716944],"type":"Point"},"properties":{"nombre":"Lagunillas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.33722222,19.8225],"type":"Point"},"properties":{"nombre":"Jose Maria Vigil","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.38,20.58111111],"type":"Point"},"properties":{"nombre":"Alfonso Reyes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.30166667,20.46],"type":"Point"},"properties":{"nombre":"Articulo 3","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.40138889,20.50638889],"type":"Point"},"properties":{"nombre":"Plan De San Luis","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.388889,20.4425],"type":"Point"},"properties":{"nombre":"Santa Rita","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.27944444,20.09694444],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.46555556,20.03611111],"type":"Point"},"properties":{"nombre":"Diego Rivera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.328611,20.187222],"type":"Point"},"properties":{"nombre":"Tepantla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.32861111,20.18722222],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.37777778,20.07055556],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.32638889,20.21972222],"type":"Point"},"properties":{"nombre":"Fernando Montes De Oca","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.61638889,20.40611111],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.45555556,20.38944444],"type":"Point"},"properties":{"nombre":"Agustin Yañez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.59722222,20.40138889],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.56138889,20.39638889],"type":"Point"},"properties":{"nombre":"Jose Ma Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.36916667,20.36555556],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.780556,21.831667],"type":"Point"},"properties":{"nombre":"Bolanos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.014556,21.873361],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.01305556,21.87472222],"type":"Point"},"properties":{"nombre":"Enrique Gonzalez Martinez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.46777778,20.42833333],"type":"Point"},"properties":{"nombre":"Otilio Montaño","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.52472222,20.445],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.52305556,19.49805556],"type":"Point"},"properties":{"nombre":"Esteban Vaca Calderon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.555833,19.565],"type":"Point"},"properties":{"nombre":"El Chico","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.4425,19.63527778],"type":"Point"},"properties":{"nombre":"Ramon G Bonfil","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.71777778,19.24277778],"type":"Point"},"properties":{"nombre":"David Alfaro Siqueiros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.78305556,20.32611111],"type":"Point"},"properties":{"nombre":"Salvador Alvarado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.12611111,22.04916667],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.39138889,22.19],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.21777778,20.03444444],"type":"Point"},"properties":{"nombre":"Jose Pablo Calvillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.184167,19.469444],"type":"Point"},"properties":{"nombre":"Ayotitlan I","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.10388889,19.42333333],"type":"Point"},"properties":{"nombre":"Juan Jose Arreola","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.317222,19.4975],"type":"Point"},"properties":{"nombre":"Cuzalapa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.283611,19.326389],"type":"Point"},"properties":{"nombre":"Chacala","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.101279,19.455336],"type":"Point"},"properties":{"nombre":"Kafentitla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.16,19.45444444],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.19444444,19.46],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.50916667,19.45222222],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.198056,19.4555],"type":"Point"},"properties":{"nombre":"Tepekali","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.267116,19.380061],"type":"Point"},"properties":{"nombre":"Yolpakilistli","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.18305556,19.49277778],"type":"Point"},"properties":{"nombre":"Octavio Paz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.083778,19.496445],"type":"Point"},"properties":{"nombre":"Amochtlapoilistli","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.213225,19.31812],"type":"Point"},"properties":{"nombre":"Tesosomok","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.162391,19.318398],"type":"Point"},"properties":{"nombre":"Kuikakalko","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.25722222,19.3875],"type":"Point"},"properties":{"nombre":"Juan Rulfo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.315639,19.463028],"type":"Point"},"properties":{"nombre":"Xochikoalkaj","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.202948,19.393116],"type":"Point"},"properties":{"nombre":"Xinachtojketl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.125556,19.475833],"type":"Point"},"properties":{"nombre":"Telcruz","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.518889,19.386389],"type":"Point"},"properties":{"nombre":"Tequesquitlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.141917,19.467722],"type":"Point"},"properties":{"nombre":"Tlamaxtikakonetl","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.210448,19.474502],"type":"Point"},"properties":{"nombre":"Tepetlamachtilistli","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.159195,19.432806],"type":"Point"},"properties":{"nombre":"Selnemilistli","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.64861111,20.13861111],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.025833,20.856111],"type":"Point"},"properties":{"nombre":"El Cuatro","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.780556,21.778611],"type":"Point"},"properties":{"nombre":"Chimaltitan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.639167,21.625],"type":"Point"},"properties":{"nombre":"Tepizuac","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.92944444,20.08333333],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.93444444,20.03527778],"type":"Point"},"properties":{"nombre":"Guillermo Prieto","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.1775,20.38361111],"type":"Point"},"properties":{"nombre":"Filiberto Vargas Tentory","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.1025,20.38416667],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.0775,20.41305556],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.20638889,20.36138889],"type":"Point"},"properties":{"nombre":"Manuel M Cerna","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.19111111,20.44222222],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.26638889,20.41027778],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.07472222,21.5125],"type":"Point"},"properties":{"nombre":"Rita Perez De Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.2475,21.423611],"type":"Point"},"properties":{"nombre":"Estacion San Juan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.10944444,21.71944444],"type":"Point"},"properties":{"nombre":"Jose Rosas Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.142778,21.574722],"type":"Point"},"properties":{"nombre":"Meson De Los Sauces","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.34944444,21.43833333],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.22222222,21.41888889],"type":"Point"},"properties":{"nombre":"Pedro Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.01833333,21.65111111],"type":"Point"},"properties":{"nombre":"Gabriela Mistral","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.14638889,19.71361111],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.52277778,20.77944444],"type":"Point"},"properties":{"nombre":"Naciones Unidas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.60027778,20.9275],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.933333,21.035],"type":"Point"},"properties":{"nombre":"Cinco Minas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.14555556,21.13527778],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.99027778,21.095],"type":"Point"},"properties":{"nombre":"Santo Domingo De Guzman","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.11472222,20.99472222],"type":"Point"},"properties":{"nombre":"David Alfaro Siqueiros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.05305556,20.99277778],"type":"Point"},"properties":{"nombre":"Primitivo Avila Leal","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.14694444,21.01916667],"type":"Point"},"properties":{"nombre":"Pedro Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.146944,21.019167],"type":"Point"},"properties":{"nombre":"Venta De Mochitiltic","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.9,22.43416667],"type":"Point"},"properties":{"nombre":"Jaime Torres Bodet","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.926667,22.371944],"type":"Point"},"properties":{"nombre":"Tenzompa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.92666667,22.37194444],"type":"Point"},"properties":{"nombre":"Octavio Paz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.71694444,19.51694444],"type":"Point"},"properties":{"nombre":"Marina Camarena Hernandez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.968333,19.385278],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.88666667,19.30555556],"type":"Point"},"properties":{"nombre":"Manuel Lopez Cotilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.07,19.6025],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.152778,20.871944],"type":"Point"},"properties":{"nombre":"Palos Altos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.146111,20.816944],"type":"Point"},"properties":{"nombre":"San Antonio De Los Vazquez","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.188333,20.816944],"type":"Point"},"properties":{"nombre":"Tlacotan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.190833,20.793889],"type":"Point"},"properties":{"nombre":"Trejos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.55194444,21.29166667],"type":"Point"},"properties":{"nombre":"Jose Clemente Orozco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.68277778,20.22583333],"type":"Point"},"properties":{"nombre":"Luis Donaldo Colosio Murrieta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.13555556,20.59444444],"type":"Point"},"properties":{"nombre":"Manuel Doblado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.99111111,20.61388889],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.991111,20.613889],"type":"Point"},"properties":{"nombre":"C.S. Ayo El Grande","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.055833,20.549722],"type":"Point"},"properties":{"nombre":"C.S. San José De La Paz","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.01972222,19.37055556],"type":"Point"},"properties":{"nombre":"Centro De Salud Jilotlan De Los Dolores","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.66,19.43],"type":"Point"},"properties":{"nombre":"Centro De Salud La Loma","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.98361111,19.27416667],"type":"Point"},"properties":{"nombre":"Ignacio Zaragoza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.64333333,19.29305556],"type":"Point"},"properties":{"nombre":"Centro De Salud Tazumbos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.64333333,19.29305556],"type":"Point"},"properties":{"nombre":"Octavio Paz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.705,19.30972222],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.48694444,20.3525],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.32916667,20.33388889],"type":"Point"},"properties":{"nombre":"Ramon Lopez Velarde","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.01972222,21.34333333],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.71388889,21.32555556],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.850556,21.225556],"type":"Point"},"properties":{"nombre":"Las Cruces","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.96916667,21.73638889],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.79861111,21.48083333],"type":"Point"},"properties":{"nombre":"Francisco Javier Mina","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.90444444,21.52194444],"type":"Point"},"properties":{"nombre":"Jose Clemente Orozco","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.82611111,21.74472222],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.9975,21.31166667],"type":"Point"},"properties":{"nombre":"Mariano Azuela","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.79527778,21.42805556],"type":"Point"},"properties":{"nombre":"Juan Escutia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.02277778,21.83527778],"type":"Point"},"properties":{"nombre":"Congreso De Chilpancingo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.86722222,21.4825],"type":"Point"},"properties":{"nombre":"Jose Rosas Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.8375,21.40166667],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.83916667,21.38527778],"type":"Point"},"properties":{"nombre":"Juan Jose De Los Reyes Martinez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.82722222,21.46611111],"type":"Point"},"properties":{"nombre":"Luis Moreno Perez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.87611111,21.49472222],"type":"Point"},"properties":{"nombre":"Alvaro Galvez Y Fuentes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.93972222,21.68],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.06972222,21.39361111],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.96138889,21.77694444],"type":"Point"},"properties":{"nombre":"Manuel M Cerna","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.90444444,21.73083333],"type":"Point"},"properties":{"nombre":"Enrique Gonzalez Martinez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.86555556,21.37166667],"type":"Point"},"properties":{"nombre":"Macedonio Ayala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.95027778,21.37944444],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.03972222,19.89083333],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.08222222,19.83277778],"type":"Point"},"properties":{"nombre":"Jesus Romero Flores","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.97638889,20.84583333],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.00861111,20.98777778],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.908333,19.5875],"type":"Point"},"properties":{"nombre":"Centro De Salud Santa Maria Del Oro","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.67305556,20.57083333],"type":"Point"},"properties":{"nombre":"Rosa Davalos Barajas","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.69611111,20.30027778],"type":"Point"},"properties":{"nombre":"Enrique Celis De La Torre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.75611111,20.52722222],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.58527778,20.80916667],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.12,19.88916667],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.08666667,19.85194444],"type":"Point"},"properties":{"nombre":"Saul Rodiles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.83722222,21.24138889],"type":"Point"},"properties":{"nombre":"Enrique C Rebsamen","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.72333333,21.36416667],"type":"Point"},"properties":{"nombre":"Salvador Novo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.67305556,21.25833333],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.93166667,22.05805556],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.326083,22.06325],"type":"Point"},"properties":{"nombre":"Diana Laura Rioja","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.735,22.31861111],"type":"Point"},"properties":{"nombre":"Panfilo Natera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.024806,22.311972],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.02555556,22.31083333],"type":"Point"},"properties":{"nombre":"Agustin Carrillo Sandoval","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.240833,22.189444],"type":"Point"},"properties":{"nombre":"San Andres Cohamiata","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.06361111,22.08083333],"type":"Point"},"properties":{"nombre":"Cuauhtemoc","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.27944444,22.13555556],"type":"Point"},"properties":{"nombre":"Andres Quintana Roo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.654722,20.427222],"type":"Point"},"properties":{"nombre":"San Vicente (Labor Vieja)","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.60555556,21.64916667],"type":"Point"},"properties":{"nombre":"Benito Juarez Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.73777778,21.9725],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.74666667,21.89111111],"type":"Point"},"properties":{"nombre":"Tierra Y Libertad","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.65527778,21.63333333],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.75444444,21.95083333],"type":"Point"},"properties":{"nombre":"Jose Maria Morelos Y Pavon","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.76694444,21.81527778],"type":"Point"},"properties":{"nombre":"Pedro Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.81555556,21.77472222],"type":"Point"},"properties":{"nombre":"Valentin Gomez Farias","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.65305556,21.7675],"type":"Point"},"properties":{"nombre":"Belisario Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.67333333,21.86527778],"type":"Point"},"properties":{"nombre":"Austreberto Gutierrez Alvarado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.40416667,19.01888889],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.37083333,18.98333333],"type":"Point"},"properties":{"nombre":"Prisciliano Sanchez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.45888889,19.22083333],"type":"Point"},"properties":{"nombre":"Guillermo Gonzalez Camarena","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.50083333,19.09277778],"type":"Point"},"properties":{"nombre":"Guadalupe Victoria","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.37611111,19.32777778],"type":"Point"},"properties":{"nombre":"Melchor Ocampo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.92888889,20.3125],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.098889,20.328611],"type":"Point"},"properties":{"nombre":"San Juan Tecomatlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.155,20.76972222],"type":"Point"},"properties":{"nombre":"Adolfo Ruiz Cortines","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.14972222,20.7325],"type":"Point"},"properties":{"nombre":"Diego Rivera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.13166667,20.86138889],"type":"Point"},"properties":{"nombre":"Amado Nervo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.726389,19.679444],"type":"Point"},"properties":{"nombre":"San Miguel Ii","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.81666667,19.80833333],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.834167,19.888611],"type":"Point"},"properties":{"nombre":"Centro De Salud Lázaro Cárdenas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.77666667,19.90055556],"type":"Point"},"properties":{"nombre":"Mariano Escobedo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.81527778,19.92833333],"type":"Point"},"properties":{"nombre":"Ignacio L Vallarta","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.429167,21.044444],"type":"Point"},"properties":{"nombre":"San Cristobal De La Barranca","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.1775,21.28888889],"type":"Point"},"properties":{"nombre":"Martha Alicia Verdin Cedeño","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.45722222,21.38333333],"type":"Point"},"properties":{"nombre":"Manuel Lopez Cotilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.23222222,21.33083333],"type":"Point"},"properties":{"nombre":"Niño Artillero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.30444444,21.22111111],"type":"Point"},"properties":{"nombre":"Juan Aldama","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.814167,21.683611],"type":"Point"},"properties":{"nombre":"San Martin De Bolanos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.91638889,20.35083333],"type":"Point"},"properties":{"nombre":"Jose Ma Luis Mora","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.98666667,20.405],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.950833,20.391667],"type":"Point"},"properties":{"nombre":"Santa Cruz De Las Flores","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.910278,20.433333],"type":"Point"},"properties":{"nombre":"Tepehuaje De Morelos","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.540833,20.943333],"type":"Point"},"properties":{"nombre":"C.S Mirandilla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.43611111,19.83888889],"type":"Point"},"properties":{"nombre":"Sor Juana Ines De La Cruz","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.851667,20.760833],"type":"Point"},"properties":{"nombre":"Centro De Salud San Sebastian Del Oeste","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.722222,20.901111],"type":"Point"},"properties":{"nombre":"Centro De Salud San Felipe De Hijar","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.644722,20.559722],"type":"Point"},"properties":{"nombre":"Cuxpala","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.64472222,20.55972222],"type":"Point"},"properties":{"nombre":"Doroteo Arango","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.680556,20.5325],"type":"Point"},"properties":{"nombre":"Navajas","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.821667,20.603056],"type":"Point"},"properties":{"nombre":"Pacana","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.72055556,20.60527778],"type":"Point"},"properties":{"nombre":"Diego Rivera","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.88138889,20.50472222],"type":"Point"},"properties":{"nombre":"M Amparo Cisneros Ponce","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.97083333,20.31638889],"type":"Point"},"properties":{"nombre":"Alfonso Reyes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.84972222,20.4225],"type":"Point"},"properties":{"nombre":"Ignacio Ramirez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.85083333,20.46805556],"type":"Point"},"properties":{"nombre":"Francisco I Madero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.180833,19.753056],"type":"Point"},"properties":{"nombre":"Centro De Salud Contla","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.09027778,19.66277778],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.19194444,19.82444444],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.28888889,19.71527778],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.12222222,19.72805556],"type":"Point"},"properties":{"nombre":"Juan De Dios Peza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.10055556,19.81166667],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.73,20.06555556],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.71805556,19.85],"type":"Point"},"properties":{"nombre":"Agustin Yañez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.81777778,19.84694444],"type":"Point"},"properties":{"nombre":"Emiliano Zapata","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.10083333,19.08472222],"type":"Point"},"properties":{"nombre":"Miguel Hidalgo Y Costilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.943611,20.219722],"type":"Point"},"properties":{"nombre":"Ayotitlan Ii","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.084444,20.355],"type":"Point"},"properties":{"nombre":"Quila","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.551667,20.074167],"type":"Point"},"properties":{"nombre":"Centro De Salud Rural De Techaluta","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.53361111,20.13333333],"type":"Point"},"properties":{"nombre":"Agustin De La Rosa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.15388889,20.09361111],"type":"Point"},"properties":{"nombre":"1 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.58555556,21.49694444],"type":"Point"},"properties":{"nombre":"Vicente Guerrero","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.44527778,21.61416667],"type":"Point"},"properties":{"nombre":"Manuel Lopez Cotilla","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.63722222,21.39111111],"type":"Point"},"properties":{"nombre":"Venustiano Carranza","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.74527778,21.60444444],"type":"Point"},"properties":{"nombre":"Mariano Matamoros","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.53611111,21.54305556],"type":"Point"},"properties":{"nombre":"Victoriano Salado Alvarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.51277778,21.56055556],"type":"Point"},"properties":{"nombre":"Doroteo Arango","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.46805556,21.42472222],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.47138889,21.52166667],"type":"Point"},"properties":{"nombre":"Antonio Ferrer","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.40083333,20.13833333],"type":"Point"},"properties":{"nombre":"Manuel M Dieguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.31027778,20.04416667],"type":"Point"},"properties":{"nombre":"Benito Juarez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.76666667,20.66972222],"type":"Point"},"properties":{"nombre":"Guillermo Gonzalez Camarena","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.910278,20.616667],"type":"Point"},"properties":{"nombre":"C.S. Tecomatlan","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.75027778,21.07527778],"type":"Point"},"properties":{"nombre":"Jose Maria Mercado","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.62916667,21.00527778],"type":"Point"},"properties":{"nombre":"Ignacio Allende","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.77916667,20.86722222],"type":"Point"},"properties":{"nombre":"Jose Vasconcelos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.715556,21.017222],"type":"Point"},"properties":{"nombre":"Salvador El","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.95,21.13777778],"type":"Point"},"properties":{"nombre":"5 De Mayo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.89166667,20.91638889],"type":"Point"},"properties":{"nombre":"Rita Perez De Moreno","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.80888889,21.18888889],"type":"Point"},"properties":{"nombre":"20 De Noviembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.11222222,20.15861111],"type":"Point"},"properties":{"nombre":"Adolfo Lopez Mateos","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.14472222,20.12222222],"type":"Point"},"properties":{"nombre":"Aquiles Serdan","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.99,20.16638889],"type":"Point"},"properties":{"nombre":"Plan De Ayala","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.10416667,20.05472222],"type":"Point"},"properties":{"nombre":"Casimiro Castillo","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.914444,19.6],"type":"Point"},"properties":{"nombre":"Centro De Salud Rural De Toliman","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.89027778,19.55944444],"type":"Point"},"properties":{"nombre":"Niños Heroes","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.87,19.550556],"type":"Point"},"properties":{"nombre":"Centro De Salud Rural De Santa Elena","horario":8,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-105.456389,20.007778],"type":"Point"},"properties":{"nombre":"Centro De Salud Cruz De Loreto","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.93194444,19.85388889],"type":"Point"},"properties":{"nombre":"Francisco Marquez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.96416667,19.89277778],"type":"Point"},"properties":{"nombre":"16 De Septiembre","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.50833333,21.87805556],"type":"Point"},"properties":{"nombre":"Josefa Ortiz De Dominguez","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.98361111,19.69722222],"type":"Point"},"properties":{"nombre":"Irene Robledo Garcia","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.04444444,19.64222222],"type":"Point"},"properties":{"nombre":"Lazaro Cardenas Del Rio","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-103.93666667,19.67388889],"type":"Point"},"properties":{"nombre":"Gabriela Mistral","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-104.07805556,19.65916667],"type":"Point"},"properties":{"nombre":"Francisco Villa","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.93,21.12527778],"type":"Point"},"properties":{"nombre":"Plutarco Elias Calles","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.85222222,21.16],"type":"Point"},"properties":{"nombre":"Justo Sierra","horario":0,"dependencia":"SEP","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-101.913889,21.134167],"type":"Point"},"properties":{"nombre":"Estacion Pedrito","horario":0,"dependencia":"SALUD","publico":null,"empresa":"GLOBAL SAT"},"type":"Feature"},{"geometry":{"coordinates":[-102.126111,21.197778],"type":"Point"},"properties":{"nombre":"Tlacuitapan","horario":0," |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment