datamade / school-boundary-merge

Scripts and source data to create one file with all the attendance boundaries for all public schools in Chicago
4 stars 2 forks source link

School Boundary Merge

This represents a merge of all the attendance areas for the schools in the Chicago Public School System. The source for the final result (the files prefixed with all_schools) is the data from the City of Chicago Data Portal. The files that you get there are broken down by grade so this is an attempt to make one file that contains all the schools regardless of grade. The idea here is not to create a pretty map but to use this information to power other geospatially aware datasets to answer questions like "What kind of crime occurs within the attendance boudary of school X?"

What you have here is:

  1. A few different file type containing the final result of merging all the source data.
  2. The source data

The Chicago Public School system also provides data about the attendance boundaries in a few fusion tables, one for each type of school:

You can download the KML files for those maps from those locations (they are also included here in the source data folder).

We use GDAL to reproject the geojson file to Latitude-Longitude

> ogr2ogr -f "GeoJSON" all_schools_ll.geojson all_schools.geojson -s_srs EPSG:102671 -t_srs EPSG:4326 
> mv all_schools_ll.geojson all_schools.geojson