Skip to content

Commit 2d78b8a

Browse files
committed
Add round and log to python API
1 parent c197273 commit 2d78b8a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

pyrasterframes/python/pyrasterframes/rasterfunctions.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,12 @@ def _(data_tile, mask_tile, mask_value):
235235
'local_greater_equal': 'Cellwise greater than or equal to comparison between two tiles',
236236
'local_equal': 'Cellwise equality comparison between two tiles',
237237
'local_unequal': 'Cellwise inequality comparison between two tiles',
238+
'round': 'Round cell values to the nearest integer without changing the cell type',
239+
'log': 'Performs cell-wise natural logarithm',
240+
'log10': 'Performs cell-wise logartithm with base 10',
241+
'log2': 'Performs cell-wise logartithm with base 2',
242+
'log1p': 'Performs natural logarithm of cell values plus one'
243+
238244
# ------- JTS functions -------
239245
# spatial constructors
240246
'st_geomFromGeoHash': '',

0 commit comments

Comments
 (0)