Plotting shapefile polygons
The next step is to show the map of polygons.
We have imported matplotlib.pyplot as plt and geopandas as gpd, and a GeoDataFrame of the service districts called service_district has been pre-loaded for you.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Visualizing Geospatial Data in Python
अभ्यास निर्देश
- First plot the service districts without additional arguments by calling
.plot()on the GeoDataFrame. - Take a look at it with
plt.show(). This has been done for you. - Now use the
.plot()method again, but this time addcolumn='name'to color the shapes according to their names andlegend=Trueto see those names. Remember to show the plot.
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# Import packages
import geopandas as gpd
import matplotlib.pyplot as plt
# Plot the Service Districts without any additional arguments
service_district.____()
plt.show()
# Plot the Service Districts, color them according to name, and show a legend
service_district.plot(____ = 'name', ____ = True)
plt.____()