-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
simba perform join #88
Comments
Join examples are located at here: |
What are the |
You need to use arrays if there is no shape type in your data source. If you are joining two attributes of ShapeType, you can simply put the join attribute names as strings without Array. Examples for ShapeType attributes are located: More about Dataset APIs we supported: To make it easier to understand, one API joining two ShapeType attributes: def distanceJoin(right: Dataset[_], leftKeys: Array[String], rightKeys: Array[String], r: Double) : DataFrame |
So so here with points and polygons how can I make sure points and polygons are bot partitioned in the same way? |
Sorry, it should be:
Array is not needed. And I should say, it may not work since I haven't try any queries for Polygons since it is still under development. I don't think you can do distance join between Polygons and Points in this version. Only things I can guarantee are point operations. |
In the examples I find
ps.knn("p", Array(1.0, 1.0), 4).show()
how can I actually perform a join operation in Simba? and not just intersect with an array but rather a column of polygons in a dataframe?The text was updated successfully, but these errors were encountered: