Skip to content

Commit 31a225c

Browse files
authored
Merge pull request #497 from s22s/docs/fix-raster-join
Fix raster join docs
2 parents 2cef64a + 3bd73c9 commit 31a225c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyrasterframes/src/main/python/docs/raster-join.pymd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ landsat8 = spark.read.raster('https://landsat-pds.s3.us-west-2.amazonaws.com/c1/
3636
spatial_index_partitions=True) \
3737
.withColumnRenamed('proj_raster', 'landsat')
3838

39-
rj = landsat8.raster_join(modis, "cubic")
39+
rj = landsat8.raster_join(modis, resampling_method="cubic_convolution")
4040

4141
# Show some non-empty tiles
4242
rj.select('landsat', 'modis', 'crs', 'extent') \

0 commit comments

Comments
 (0)