Skip to content

Commit caa4758

Browse files
committed
Misc documentation fixes.
1 parent ecf5748 commit caa4758

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyrasterframes/src/main/python/docs/masking.pymd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ clipped = to_clip.select('blue_masked',
132132
.orderBy(rf_data_cells('clip_raster'))
133133

134134

135-
This kind of clipping technique is further used in @ref:[zonal statistics](zonal-algebra.pymd).
135+
This kind of clipping technique is further used in @ref:[zonal statistics](zonal-algebra.md).

pyrasterframes/src/main/python/docs/zonal-algebra.pymd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ park_rf.printSchema()
9696

9797
## Define Zone Tiles
9898

99-
Now we have the vector representation of the park boundary alongside the _tiles_ of red and near infrared bands. Next, we need to create a _tile_ representation of the park to allow us to limit the raster analysis to pixels within the park _zone_. This is similar to the masking operation demonstrated in @ref:[NoData handling](nodata-handling.md#masking). We rasterize the geometries using @ref:[`rf_rasterize`](reference.md#rf-rasterize): this creates a new _tile_ column aligned with the imagery, and containing the park's OBJECTID attribute for cells intersecting the _zone_. Cells outside the park _zones_ have a NoData value.
99+
Now we have the vector representation of the park boundary alongside the _tiles_ of red and near infrared bands. Next, we need to create a _tile_ representation of the park to allow us to limit the raster analysis to pixels within the park _zone_. This is similar to the masking operation demonstrated in @ref:[Masking](masking.md#masking). We rasterize the geometries using @ref:[`rf_rasterize`](reference.md#rf-rasterize): this creates a new _tile_ column aligned with the imagery, and containing the park's OBJECTID attribute for cells intersecting the _zone_. Cells outside the park _zones_ have a NoData value.
100100

101101
```python burn_in
102102
rf_park_tile = park_rf \

0 commit comments

Comments
 (0)