Skip to content

Commit 9fb6f13

Browse files
committed
Fix indent error in raster catalogs doc code chunk
Signed-off-by: Jason T. Brown <[email protected]>
1 parent c9e9652 commit 9fb6f13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ scene_list.head(3)
9393
Observe the scenes list file has URIs to `index.html` files in the download_url column. The image URI's are in the same directory. The filenames are of the form `${gid}_B${band}.TIF`. The next code chunk builds these URIs, which completes our catalog.
9494

9595
```python
96-
modis_catalog = scene_list
96+
modis_catalog = scene_list \
9797
.withColumn('base_url',
9898
F.concat(F.regexp_replace('download_url', 'index.html$', ''), 'gid',)
9999
) \

0 commit comments

Comments
 (0)