I'm following the accepted answer from here: https://gis.stackexchange.com/questions/198530/get-lat-long-of-us-cities-and-plot-them-on-a-map-using-matplotlib-and-basemap
Those 2 lines:
map = Basemap(llcrnrlon=-119,llcrnrlat=22,urcrnrlon=-64,urcrnrlat=49,
projection='lcc',lat_1=32,lat_2=45,lon_0=-95)
map.readshapefile('st99_d00', name='states', drawbounds=True)
Yilded this error:
OSError: cannot locate st99_d00.shp
I tried to understand how to add the .shp file - without success.
Any help will be appreciated!