This is part 2 of a 4-part series on The Making of Manhattan’s Coffee Kings. Read Part 1.
By this time, we had the shapefiles for Manhattan (by census tract), the population of each tract, and the location (in Sheet1) of coffee shops around Manhattan. The next step was to create the “coffee map” of Manhattan.
To merge the population data into the shapefile, I used geopandas — a slightly-complicated-but-better-than-alternatives Python library to work with Shapefiles. The code is here. What we did was:
Normally, this would have sufficed. But after several minutes of debugging, I found two other issues with the shapefile.
If you didn’t understand the projections bit, don’t worry. I don’t get it either. But if I find that my shapes are in the wrong place, I usually spend 10-20 minutes of trial and error on the projection, and something usually works.
I used geopandas again to take all the stores and check if they were within the Manhattan shape boundary. The result is a 288-row CSV file with the latitude, longitude, address and store name (Starbucks or McDonald’s).
Running the script manhattan.py creates 3 maps:
single.shp with Manhattan’s boundary as a single regionpoints.shp with the coordinates of individual storespopulation.shp with the census tract and populationTo create the coverage area, I used QGIS’ Voronoi Polygons. This splits Manhattan into regions that are nearest to each store.
I followed these steps.
pointssinglevoronoi-stores.shpvoronoi-stores.shp is a shapefile that has the coverage area of each store.
A naive but effective way of finding the population of any region is to assume that the population is uniformly distributed.
For example, the Starbucks at 120 Church Street is entirely within the census tract CT 002100 in Little Italy and covers 18.5% of its area. So we can assume that this Starbucks serves 18.5% of the 6,040 people in the tract, i.e. 1,120 people.
I wrote a utility merge.py to automate this calculation. By running this command:
python reshaper/merge.py voronoi-stores.shp population.shp \
manhattan-stores.shp -m Pop2010 … I was able to merge the census population data into the coverage area map.
Industry 4.0 solutions originally had their genesis in manufacturing. “The Fourth Industrial Revolution, Industry 4.0,… Read More
Improvement in production performance can enhance supply chain efficacy. There is a continuous discourse around… Read More
Sshhhhhh, ChatGPT knows everything!! In 2023, Generative AI (GenAI) emerged as a major technology disruption… Read More
Generative AI holds immense promise for healthcare, leveraging large datasets to innovate medical imaging, treatment… Read More
NJBIZ has recognized Naveen Gattu, Founder and Chief Operating Officer of Gramener—A Straive Company, as… Read More
This website uses cookies.
Leave a Comment