Comece agoraComece grátis

Spatial join practice

Is there a difference between art (point data) that intersects with neighborhoods (polygon data) and art (point data) within neighborhoods (polygon data)? Explore different spatial joins with the art_geo and neighborhoods GeoDataFrames, which has been pre-loaded for you.

Este exercicio faz parte do curso

Visualizing Geospatial Data in Python

Ver curso

exercicio interativo prático

Tente este exercicio completando este código de exemplo.

# Spatially join art_geo and neighborhoods 
art_intersect_neighborhoods = gpd.____(art_geo, neighborhoods, predicate = ____)

# Print the shape property of art_intersect_neighborhoods
print(art_intersect_neighborhoods.____)
Editar e Executar Código