Trait/Object

org.locationtech.rasterframes.extensions

LayerSpatialColumnMethods

Related Docs: object LayerSpatialColumnMethods | package extensions

Permalink

trait LayerSpatialColumnMethods extends MethodExtensions[RasterFrameLayer] with StandardColumns

RasterFrameLayer extension methods associated with adding spatially descriptive columns.

Since

12/15/17

Linear Supertypes
StandardColumns, MethodExtensions[RasterFrameLayer], Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LayerSpatialColumnMethods
  2. StandardColumns
  3. MethodExtensions
  4. Serializable
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def self: RasterFrameLayer

    Permalink
    Definition Classes
    MethodExtensions

Concrete 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. def CENTER_COLUMN: TypedColumn[Any, Point]

    Permalink

    Default RasterFrameLayer column name for the center coordinates of the tile's bounds.

    Default RasterFrameLayer column name for the center coordinates of the tile's bounds.

    Definition Classes
    StandardColumns
  5. val COLUMN_INDEX_COLUMN: TypedColumn[Any, Int]

    Permalink

    Default column index column for the cells of exploded tiles.

    Default column index column for the cells of exploded tiles.

    Definition Classes
    StandardColumns
  6. def CRS_COLUMN: TypedColumn[Any, CRS]

    Permalink

    Default CRS column name.

    Default CRS column name.

    Definition Classes
    StandardColumns
  7. def EXTENT_COLUMN: TypedColumn[Any, Extent]

    Permalink

    Default Extent column name.

    Default Extent column name.

    Definition Classes
    StandardColumns
  8. def GEOMETRY_COLUMN: TypedColumn[Any, Polygon]

    Permalink

    Default RasterFrameLayer column name for an tile extent as geometry value.

    Default RasterFrameLayer column name for an tile extent as geometry value.

    Definition Classes
    StandardColumns
  9. val METADATA_COLUMN: TypedColumn[Any, Map[String, String]]

    Permalink

    Default GeoTiff tags column.

    Default GeoTiff tags column.

    Definition Classes
    StandardColumns
  10. val PATH_COLUMN: TypedColumn[Any, String]

    Permalink

    URI/URL/S3 path to raster.

    URI/URL/S3 path to raster.

    Definition Classes
    StandardColumns
  11. def PROJECTED_EXTENT_COLUMN: TypedColumn[Any, ProjectedExtent]

    Permalink

    Default ProjectedExtent column name.

    Default ProjectedExtent column name.

    Definition Classes
    StandardColumns
  12. def PROJECTED_RASTER_COLUMN: TypedColumn[Any, ProjectedRasterTile]

    Permalink

    Default column name for a tile with its CRS and Extent.

    Default column name for a tile with its CRS and Extent.

    Definition Classes
    StandardColumns
  13. val ROW_INDEX_COLUMN: TypedColumn[Any, Int]

    Permalink

    Default teil column index column for the cells of exploded tiles.

    Default teil column index column for the cells of exploded tiles.

    Definition Classes
    StandardColumns
  14. val SPATIAL_INDEX_COLUMN: TypedColumn[Any, Long]

    Permalink

    Default RasterFrameLayer column name for an added spatial index.

    Default RasterFrameLayer column name for an added spatial index.

    Definition Classes
    StandardColumns
  15. val SPATIAL_KEY_COLUMN: TypedColumn[Any, SpatialKey]

    Permalink

    Default RasterFrameLayer spatial column name.

    Default RasterFrameLayer spatial column name.

    Definition Classes
    StandardColumns
  16. val TEMPORAL_KEY_COLUMN: TypedColumn[Any, TemporalKey]

    Permalink

    Default RasterFrameLayer temporal column name.

    Default RasterFrameLayer temporal column name.

    Definition Classes
    StandardColumns
  17. def TILE_COLUMN: TypedColumn[Any, Tile]

    Permalink

    Default RasterFrameLayer tile column name.

    Default RasterFrameLayer tile column name.

    Definition Classes
    StandardColumns
  18. val TILE_FEATURE_DATA_COLUMN: Column

    Permalink

    Default RasterFrameLayer TileFeature.data column name.

    Default RasterFrameLayer TileFeature.data column name.

    Definition Classes
    StandardColumns
  19. val TIMESTAMP_COLUMN: TypedColumn[Any, Timestamp]

    Permalink

    Default RasterFrameLayer timestamp column name

    Default RasterFrameLayer timestamp column name

    Definition Classes
    StandardColumns
  20. final def asInstanceOf[T0]: T0

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

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  28. def mapTransform: MapKeyTransform

    Permalink

    Returns the key-space to map-space coordinate transform.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  32. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def withCRS(colName: String = CRS_COLUMN.columnName): RasterFrameLayer

    Permalink

    Append a column containing the CRS of the layer.

    Append a column containing the CRS of the layer.

    colName

    name of column to append. Defaults to "crs"

    returns

    updated RasterFrameLayer

  38. def withCenter(colName: String = CENTER_COLUMN.columnName): RasterFrameLayer

    Permalink

    Append a column containing the center of the row's spatial key.

    Append a column containing the center of the row's spatial key. Coordinate is in native CRS.

    colName

    name of column to append. Defaults to "center"

    returns

    updated RasterFrameLayer

  39. def withCenterLatLng(colName: String = "center"): RasterFrameLayer

    Permalink

    Append a column containing the center of the row's spatial key.

    Append a column containing the center of the row's spatial key. Coordinate is in (longitude, latitude) (EPSG:4326).

    colName

    name of column to append. Defaults to "center"

    returns

    updated RasterFrameLayer

  40. def withExtent(colName: String = EXTENT_COLUMN.columnName): RasterFrameLayer

    Permalink

    Append a column containing the extent of the row's spatial key.

    Append a column containing the extent of the row's spatial key. Coordinates are in native CRS.

    colName

    name of column to append. Defaults to "extent"

    returns

    updated RasterFrameLayer

  41. def withGeometry(colName: String = GEOMETRY_COLUMN.columnName): RasterFrameLayer

    Permalink

    Append a column containing the bounds of the row's spatial key.

    Append a column containing the bounds of the row's spatial key. Coordinates are in native CRS.

    colName

    name of column to append. Defaults to "geometry"

    returns

    updated RasterFrameLayer

  42. def withSpatialIndex(colName: String = SPATIAL_INDEX_COLUMN.columnName, applyOrdering: Boolean = true): RasterFrameLayer

    Permalink

    Appends a spatial index column

    Appends a spatial index column

    colName

    name of new column to create. Defaults to index

    applyOrdering

    if true, adds .orderBy(asc(colName)) to result. Defaults to true

    returns

    RasterFrameLayer with index column.

Inherited from StandardColumns

Inherited from MethodExtensions[RasterFrameLayer]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped