Skip to content

Commit

Permalink
added missing driver param documented for RST_FromContent (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
sllynn authored Sep 24, 2024
1 parent 0582410 commit 3964d7a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/source/api/raster-functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -756,13 +756,15 @@ rst_fromcontent

:param raster_bin: A column containing the raster data.
:type raster_bin: Column (BinaryType)
:param driver: GDAL driver to use to open the raster.
:type driver: Column(StringType)
:param size_in_MB: Optional parameter to specify the size of the raster tile in MB. Default is not to split the input.
:type size_in_MB: Column (IntegerType)
:rtype: Column: RasterTileType

.. note::

Notes
**Notes**
- The input raster must be a byte array in a BinaryType column.
- The driver required to read the raster must be one supplied with GDAL.
- If the size_in_MB parameter is specified, the raster will be split into tiles of the specified size.
Expand Down

0 comments on commit 3964d7a

Please sign in to comment.