-
Notifications
You must be signed in to change notification settings - Fork 745
Closed
Description
As for now, the SpatialJoinQuery is an inner join between 2 spatial RDDs. But sometimes, you may need to keep all rows from the left RDD, without having to do another join to get back the rows that didn't match. In this case, enabling left outer/outer spatial joins would be really convenient.
In the meanwhile, a possible hack would be to include the world bounding box (-180,-90,180,90) in the right RDD so that each row from the left RDD at least matches the world bbox and thus will be included in the output. But this implies more indexing and computation.
Thanks 🙂
harryprince, skorski and scially