Skip to content

Commit 902e794

Browse files
committed
Tweaks to docstring for raster reader
Signed-off-by: Jason T. Brown <[email protected]>
1 parent 7fb7bcc commit 902e794

File tree

1 file changed

+1
-2
lines changed
  • pyrasterframes/src/main/python/pyrasterframes

1 file changed

+1
-2
lines changed

pyrasterframes/src/main/python/pyrasterframes/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def _raster_reader(
117117
lazy_tiles=True,
118118
**options):
119119
"""
120-
Returns a Spark DataFrame from a raster data files specified by URI pointers
120+
Returns a Spark DataFrame from raster data files specified by URI pointers
121121
The returned DataFrame will have a column of (CRS, Extent, Tile) for each URI read
122122
Multiple bands from the same raster file are spread across rows of the DataFrame. See band_indexes param.
123123
If bands from a scene are stored in separate files, provide a DataFrame to the `source` parameter. Each row in the returned DataFrame will contain one (CRS, Extent, Tile) for each item in `catalog_col_names`
@@ -130,7 +130,6 @@ def _raster_reader(
130130
:param tile_dimensions: tuple or list of two indicating the default tile dimension as (columns, rows)
131131
:param lazy_tiles: If true (default) only generate minimal references to tile contents; if false, fetch tile cell values
132132
:param options: Additional keyword arguments to pass to the spark DataSource
133-
:return:
134133
"""
135134

136135
from pandas import DataFrame as PdDataFrame

0 commit comments

Comments
 (0)