Trait

org.locationtech.geomesa.spark.jts.DataFrameFunctions

SpatialConstructors

Related Doc: package DataFrameFunctions

Permalink

trait SpatialConstructors extends AnyRef

Group of DataFrame DSL functions associated with constructing and encoding JTS types in Spark SQL.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SpatialConstructors
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def geomCollLit(g: GeometryCollection): TypedColumn[Any, GeometryCollection]

    Permalink

    create a geometry collection literal, encoded as a GeometryCollectionUDT.

  10. def geomLit(g: Geometry): TypedColumn[Any, Geometry]

    Permalink

    Create a generic geometry literal, encoded as a GeometryUDT.

  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. def lineLit(g: LineString): TypedColumn[Any, LineString]

    Permalink

    Create a line literal, encoded as a LineUDT.

  15. def mLineLit(g: MultiLineString): TypedColumn[Any, MultiLineString]

    Permalink

    Create a multi-line literal, encoded as a MultiPointUDT.

  16. def mPointLit(g: MultiPoint): TypedColumn[Any, MultiPoint]

    Permalink

    Create a multi-point literal, encoded as a MultiPointUDT.

  17. def mPolygonLit(g: MultiPolygon): TypedColumn[Any, MultiPolygon]

    Permalink

    Create a multi-polygon literal, encoded as a MultiPolygonUDT.

  18. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. def pointLit(g: Point): TypedColumn[Any, Point]

    Permalink

    Create a point literal, encoded as a PointUDT.

  22. def polygonLit(g: Polygon): TypedColumn[Any, Polygon]

    Permalink

    Create a polygon literal, encoded as a PolygonUDT.

  23. def st_geomFromGeoHash(geohash: Column, precision: Int): TypedColumn[Any, Geometry]

    Permalink
  24. def st_geomFromGeoHash(geohash: Column, precision: Column): TypedColumn[Any, Geometry]

    Permalink
  25. def st_geomFromWKB(wkb: Array[Byte]): TypedColumn[Any, Geometry]

    Permalink
  26. def st_geomFromWKB(wkb: Column): TypedColumn[Any, Geometry]

    Permalink
  27. def st_geomFromWKT(wkt: String): TypedColumn[Any, Geometry]

    Permalink
  28. def st_geomFromWKT(wkt: Column): TypedColumn[Any, Geometry]

    Permalink
  29. def st_lineFromText(wkt: String): TypedColumn[Any, LineString]

    Permalink
  30. def st_lineFromText(wkt: Column): TypedColumn[Any, LineString]

    Permalink
  31. def st_mLineFromText(wkt: String): TypedColumn[Any, MultiLineString]

    Permalink
  32. def st_mLineFromText(wkt: Column): TypedColumn[Any, MultiLineString]

    Permalink
  33. def st_mPointFromText(wkt: String): TypedColumn[Any, MultiPoint]

    Permalink
  34. def st_mPointFromText(wkt: Column): TypedColumn[Any, MultiPoint]

    Permalink
  35. def st_mPolyFromText(wkt: String): TypedColumn[Any, MultiPolygon]

    Permalink
  36. def st_mPolyFromText(wkt: Column): TypedColumn[Any, MultiPolygon]

    Permalink
  37. def st_makeBBOX(lowerX: Double, upperX: Double, lowerY: Double, upperY: Double): TypedColumn[Any, Geometry]

    Permalink
  38. def st_makeBBOX(lowerX: Column, upperX: Column, lowerY: Column, upperY: Column): TypedColumn[Any, Geometry]

    Permalink
  39. def st_makeBox2D(lowerLeft: Point, upperRight: Point): TypedColumn[Any, Geometry]

    Permalink
  40. def st_makeBox2D(lowerLeft: Column, upperRight: Column): TypedColumn[Any, Geometry]

    Permalink
  41. def st_makeLine(pointSeq: Seq[Point]): TypedColumn[Any, LineString]

    Permalink
  42. def st_makeLine(pointSeq: Column): TypedColumn[Any, LineString]

    Permalink
  43. def st_makePoint(x: Double, y: Double): TypedColumn[Any, Point]

    Permalink
  44. def st_makePoint(x: Column, y: Column): TypedColumn[Any, Point]

    Permalink
  45. def st_makePointM(x: Double, y: Double, m: Double): TypedColumn[Any, Point]

    Permalink
  46. def st_makePointM(x: Column, y: Column, m: Column): TypedColumn[Any, Point]

    Permalink
  47. def st_makePolygon(lineString: LineString): TypedColumn[Any, Polygon]

    Permalink
  48. def st_makePolygon(lineString: Column): TypedColumn[Any, Polygon]

    Permalink
  49. def st_point(x: Double, y: Double): TypedColumn[Any, Point]

    Permalink
  50. def st_point(x: Column, y: Column): TypedColumn[Any, Point]

    Permalink
  51. def st_pointFromGeoHash(geohash: Column, precision: Int): TypedColumn[Any, Point]

    Permalink
  52. def st_pointFromGeoHash(geohash: Column, precision: Column): TypedColumn[Any, Point]

    Permalink
  53. def st_pointFromText(wkt: String): TypedColumn[Any, Point]

    Permalink
  54. def st_pointFromText(wkt: Column): TypedColumn[Any, Point]

    Permalink
  55. def st_pointFromWKB(wkb: Array[Byte]): TypedColumn[Any, Point]

    Permalink
  56. def st_pointFromWKB(wkb: Column): TypedColumn[Any, Point]

    Permalink
  57. def st_polygon(lineString: LineString): TypedColumn[Any, Polygon]

    Permalink
  58. def st_polygon(lineString: Column): TypedColumn[Any, Polygon]

    Permalink
  59. def st_polygonFromText(wkt: String): TypedColumn[Any, Polygon]

    Permalink
  60. def st_polygonFromText(wkt: Column): TypedColumn[Any, Polygon]

    Permalink
  61. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  62. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  63. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  65. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped