From c4c3a29afa419777a697eaa0675f90a65c92cede Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Fri, 20 Sep 2024 09:43:30 -0700 Subject: [PATCH] Update spatial_joins.md --- docs/src/tutorials/spatial_joins.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/tutorials/spatial_joins.md b/docs/src/tutorials/spatial_joins.md index 14fb6852a..075295a9b 100644 --- a/docs/src/tutorials/spatial_joins.md +++ b/docs/src/tutorials/spatial_joins.md @@ -8,6 +8,7 @@ In this tutorial, we will show how to perform a spatial join on first a toy data In order to perform the spatial join, we use **[FlexiJoins.jl](https://github.com/JuliaAPlavin/FlexiJoins.jl)** to perform the join, specifically using its `by_pred` joining method. This allows the user to specify a predicate in the following manner, for any kind of table join operation: ```julia +using FlexiJoins innerjoin((table1, table1), by_pred(:table1_column, predicate_function, :table2_column) # & add other conditions here )