НачатьНачать бесплатно

Styling a multi-layered plot

Now we have converted both datasets to the same Coordinate Reference System, let's make a nicer plot combining the two.

The datasets in UTM coordinates as we saved them to files in the last exercise are read back in and made available as the mining_sites and national_parks variables. GeoPandas and matplotlib are already imported.

Это упражнение является частью курса

Working with Geospatial Data in Python

Посмотреть курс

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

# Plot of the parks and mining sites
ax = national_parks.plot()
mining_sites.plot(ax=ax)
plt.show()
Редактировать и запускать код