Skip to content

Commit 5e12fbc

Browse files
committed
Fix broken cell_types reference
Signed-off-by: Jason T. Brown <[email protected]>
1 parent afd1e80 commit 5e12fbc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/main/tut/reference.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ _Python_:
100100

101101
_SQL_: `rf_cell_type`
102102

103-
Get the cell type of the `tile`. Available cell types can be retrieved with the @ref:[cell_types](reference.mdcell-types) function.
103+
Get the cell type of the `tile`. Available cell types can be retrieved with the @ref:[cell_types](reference.md#cell-types) function.
104104

105105
#### convert_cell_type
106106

@@ -150,7 +150,7 @@ Tile tile_ones(Int tile_columns, Int tile_rows, String cell_type_name)
150150

151151
_SQL_: `rf_tile_ones`
152152

153-
Create a `tile` of shape `tile_columns` by `tile_rows` full of ones, with the specified cell type. See function @ref:[`cell_types`](reference.mdcell-types) for valid values. All arguments are literal values and not column expressions.
153+
Create a `tile` of shape `tile_columns` by `tile_rows` full of ones, with the specified cell type. See function @ref:[`cell_types`](reference.md#cell-types) for valid values. All arguments are literal values and not column expressions.
154154

155155
#### make_constant_tile
156156

@@ -160,7 +160,7 @@ _Python_:
160160

161161
_SQL_: `rf_make_constant_tile`
162162

163-
Create a `tile` of shape `tile_columns` by `tile_rows` full of `constant`, with the specified cell type. See function @ref:[`cell_types`](reference.mdcell-types) for valid values. All arguments are literal values and not column expressions.
163+
Create a `tile` of shape `tile_columns` by `tile_rows` full of `constant`, with the specified cell type. See function @ref:[`cell_types`](reference.md#cell-types) for valid values. All arguments are literal values and not column expressions.
164164

165165

166166
#### rasterize
@@ -219,7 +219,7 @@ _Python_:
219219

220220
Tile assemble_tile(Int colIndex, Int rowIndex, Numeric cellData, Int numCols, Int numRows, String cellType)
221221

222-
Python only. Create a Tile from a column of cell data with location indices. This function is the inverse of @ref:[`explode_tiles`](reference.md#explode-tiles). Intended use is with a `groupby`, producing one row with a new `tile` per group. The `numCols`, `numRows` and `cellType` arguments are literal values, others are column expressions. Valid values for `cellType` can be found with function @ref:[`cell_types`](reference.mdcell-types).
222+
Python only. Create a Tile from a column of cell data with location indices. This function is the inverse of @ref:[`explode_tiles`](reference.md#explode-tiles). Intended use is with a `groupby`, producing one row with a new `tile` per group. The `numCols`, `numRows` and `cellType` arguments are literal values, others are column expressions. Valid values for `cellType` can be found with function @ref:[`cell_types`](reference.md#cell-types).
223223

224224
### Masking and Nodata
225225

0 commit comments

Comments
 (0)