In which district in the Eiffel Tower located?
Let's return to the Eiffel Tower example. In previous exercises, we constructed a Point geometry for its location, and we checked that it was not located in the Montparnasse district. Let's now determine in which of the districts of Paris it is located.
The districts GeoDataFrame has been loaded, and the Shapely and GeoPandas libraries are imported.
Это упражнение является частью курса
Working with Geospatial Data in Python
Инструкции к упражнению
- Create a boolean mask (or filter) indicating whether each district contains the Eiffel Tower or not. Call the result
mask. - Filter the
districtsdataframe with the boolean mask and print the result.
Интерактивное практическое упражнение
Попробуйте выполнить это упражнение, дополнив этот пример кода.
# Construct a point object for the Eiffel Tower
eiffel_tower = Point(255422.6, 6250868.9)
# Create a boolean Series
mask = ____
# Print the boolean Series
print(mask.head())
# Filter the districts with the boolean mask
print(____)