Skip to content

Commit

Permalink
marked rst_to_overlapping_tiles deprecated in MosaicContext
Browse files Browse the repository at this point in the history
  • Loading branch information
sllynn committed Sep 24, 2024
1 parent 5dabff7 commit fc7b527
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,10 @@ class MosaicContext(indexSystem: IndexSystem, geometryAPI: GeometryAPI) extends
def try_sql(inCol: Column): Column = ColumnAdapter(TrySql(inCol.expr))

// Legacy API
@deprecated("Please use 'rst_tooverlappingtiles' expression instead.")
def rst_to_overlapping_tiles(raster: Column, width: Int, height: Int, overlap: Int): Column = rst_tooverlappingtiles(raster, width, height, overlap)
@deprecated("Please use 'rst_tooverlappingtiles' expression instead.")
def rst_to_overlapping_tiles(raster: Column, width: Column, height: Column, overlap: Column): Column = rst_tooverlappingtiles(raster, width, height, overlap)
@deprecated("Please use 'st_intersects_agg' expression instead.")
def st_intersects_aggregate(leftIndex: Column, rightIndex: Column): Column = st_intersects_agg(leftIndex, rightIndex)
@deprecated("Please use 'st_intersection_agg' expression instead.")
Expand Down

0 comments on commit fc7b527

Please sign in to comment.