GithubHelp home page GithubHelp logo

simba perform join about simba HOT 5 OPEN

initialdlab avatar initialdlab commented on September 1, 2024
simba perform join

from simba.

Comments (5)

dongx-psu avatar dongx-psu commented on September 1, 2024

Join examples are located at here:

https://github.com/InitialDLab/Simba/blob/standalone-2.1/src/main/scala/org/apache/spark/sql/simba/examples/BasicSpatialOps.scala#L48

from simba.

geoHeil avatar geoHeil commented on September 1, 2024

What are the Array("x", "y"),Array("x", "y") in the file you linked? Are these supposed to indicate the geospatial columns? if yes, how can these support polygons i.e. it would look like only 2 df of points would be joinable.

from simba.

dongx-psu avatar dongx-psu commented on September 1, 2024

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:

https://github.com/InitialDLab/Simba/blob/standalone-2.1/src/main/scala/org/apache/spark/sql/simba/examples/SpatialClassInference.scala

More about Dataset APIs we supported:

https://github.com/InitialDLab/Simba/blob/standalone-2.1/src/main/scala/org/apache/spark/sql/simba/DataSet.scala

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

from simba.

geoHeil avatar geoHeil commented on September 1, 2024

So
pointsDf. distanceJoin(polygonDf, Array("point"), Array("polygon"), 3).show should work?
Do I understand correctly that I should build an index beforehand?
simba.indexTable("a", RTreeType, "testqtree", Array("x", "y") )

so here with points and polygons how can I make sure points and polygons are bot partitioned in the same way?

from simba.

dongx-psu avatar dongx-psu commented on September 1, 2024

Sorry, it should be:

def distanceJoin(right: Dataset[_], leftKey: String, rightKey: String, r: Double) : DataFrame

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.

from simba.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.