Skip to content

Commit f6f6c73

Browse files
committed
minor wording tweak and fix import in python unit test_agg_local_mean
Signed-off-by: Jason T. Brown <[email protected]>
1 parent 4f92e99 commit f6f6c73

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pyrasterframes/src/main/python/docs/getting-started.pymd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,4 @@ from pyrasterframes.utils import gdal_version
115115
print(gdal_version())
116116
```
117117

118-
This will print out somethin like "GDAL x.y.z, released 20yy/mm/dd". If it reports `unavailable`, then GDAL isn't installed in a place where the RasterFrames runtime was able to find it. Please [file an issue](https://github.com/locationtech/rasterframes/issues) to get help resolving it.
118+
This will print out something like "GDAL x.y.z, released 20yy/mm/dd". If it reports `not available`, then GDAL isn't installed in a place where the RasterFrames runtime was able to find it. Please [file an issue](https://github.com/locationtech/rasterframes/issues) to get help resolving it.

pyrasterframes/src/main/python/tests/RasterFunctionsTests.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ def test_agg_mean(self):
9898

9999
def test_agg_local_mean(self):
100100
from pyspark.sql import Row
101+
from pyrasterframes.rf_types import Tile
102+
import numpy as np
101103

102104
# this is really testing the nodata propagation in the agg local summation
103105
ct = CellType.int8().with_no_data_value(4)

0 commit comments

Comments
 (0)