CommencerCommencer gratuitement

Paris: spatial join of districts and bike stations

Let's return to the Paris data on districts and bike stations. We will now use the spatial join operation to identify the district in which each station is located.

The districts and bike sharing stations datasets are already pre-loaded for you as the districts and stations GeoDataFrames, and GeoPandas has been imported as geopandas

Cet exercice fait partie du cours

Working with Geospatial Data in Python

Afficher le cours

Instructions

  • Use the geopandas.sjoin() function to add the district name in which each station is located to the stations dataset. Call the result joined.
  • Check the result by showing the first five rows.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Join the districts and stations datasets
joined = ____

# Inspect the first five rows of the result
print(joined.____)
Modifier et exécuter le code