November 2018
Beginner to intermediate
214 pages
5h 2m
English
We can also add political boundaries, such as the divisions between nations and states:
# Countries & statesm = Basemap(projection='ortho',lon_0=-114, lat_0=51)m.drawcoastlines()m.drawcountries()plt.show()
The political boundaries can be seen in the following output:

# Countries & statesm = Basemap(projection='ortho',lon_0=-114, lat_0=51)m.drawcoastlines()m.drawcountries() ...
Read now
Unlock full access