Import all of the usual things, as done in the earlier sections. Import Basemap from mpl, as shown here:
from mpl_toolkits.basemap import Basemap
The simplest map projection we get is the one where we translate latitude and longitude into x and y coordinates, and also when we create a basemap object with no projection keyword argument. Each of the following arguments represents a different parameter: llcrnrlat shows the minimum latitude, urcrnrlat shows the maximum latitude, llcrnrlon shows the minimum longitude, urcrnrlon shows the maximum longitude, ...