Skip to content

Commit 6a161fa

Browse files
committed
1 parent b8c413e commit 6a161fa

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

pyrasterframes/src/main/python/pyrasterframes/rf_types.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,3 +598,9 @@ def __init__(self):
598598
super(NoDataFilter, self).__init__()
599599
self._java_obj = self._new_java_obj("org.locationtech.rasterframes.ml.NoDataFilter", self.uid)
600600

601+
602+
def setInputCols(self, value):
603+
"""
604+
Sets the value of :py:attr:`inputCol`.
605+
"""
606+
return self._set(inputCols=value)

pyrasterframes/src/main/python/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ def dest_file(self, src_file):
154154
numpy = 'numpy'
155155
pandas = 'pandas'
156156
pypandoc = 'pypandoc'
157+
pyproj = 'pyproj'
157158
pytest_runner = 'pytest-runner'
158159
pytz = 'pytz'
159160
rasterio = 'rasterio'
@@ -199,6 +200,7 @@ def dest_file(self, src_file):
199200
pytz,
200201
shapely,
201202
pyspark,
203+
pyproj,
202204
numpy,
203205
matplotlib,
204206
pandas,

0 commit comments

Comments
 (0)