เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

Plotting points over polygons - part 1

Make a basic plot of the service districts with the chicken locations. The packages needed have already been imported for you. The chickens DataFrame and service_district GeoDataFrame has been pre-loaded for you.

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Visualizing Geospatial Data in Python

ดูคอร์ส

คำแนะนำการฝึกหัด

  • Plot the shapefile for the service districts, using the name column to color the polygons.
  • Add chicken locations, using the lat and lng columns from the chickens DataFrame, and make them black.
  • Show your plot.

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

# Plot the service district shapefile
service_district.plot(column=____)

# Add the chicken locations
plt.scatter(x=____, y=____, ____ = 'black')

# Show the plot
plt.____()
แก้ไขและรันโค้ด