-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
I am currently writing code like this:
cities.to_view("cities", overwrite=True)
countries.to_view("countries", overwrite=True)
sd.sql("""
select * from cities
join countries
where ST_Intersects(cities.geometry, countries.geometry)
""").show()This could be cool to skip the explicit view registration:
sd.sql("""
select * from cities
join countries
where ST_Intersects(cities.geometry, countries.geometry)
""", cities=cities, countries=countries).show()It would be especially sweet if other objects (like dates & Shapely objects) could be parameterized too!
paleolimbot and mpetazzoni
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request