BaşlayınÜcretsiz Başlayın

Import and explore the data

In this exercise, we will start with reading and exploring two new datasets:

For each of those datasets, the exercise consists of importing the necessary packages, reading the data with geopandas.read_file(), inspecting the first 5 rows and the Coordinate Reference System (CRS) of the data, and making a quick visualization.

Bu egzersiz

Working with Geospatial Data in Python

kursunun bir parçasıdır
Kursu Görüntüle

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Import GeoPandas and Matplotlib
____
import ____ as ___

# Read the mining site data
mining_sites = ____

# Print the first rows and the CRS information
print(____)
print(____)

# Make a quick visualisation
____
plt.show()
Kodu Düzenle ve Çalıştır