Skip to content

Commit 5bcbb79

Browse files
committed
Line continuation in doc chunk
Signed-off-by: Jason T. Brown <[email protected]>
1 parent c2f5f50 commit 5bcbb79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyrasterframes/src/main/python/docs/vector-data.pymd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ l8 = l8.withColumn('geom', st_geometry(l8.bounds_wgs84)) # extent to polygon
9090
l8 = l8.withColumn('paducah', st_point(lit(-88.628), lit(37.072))) # col of points
9191

9292
l8_filtered = l8 \
93-
.filter(st_intersects(l8.geom, st_bufferPoint(l8.paducah, lit(50000.0))))
93+
.filter(st_intersects(l8.geom, st_bufferPoint(l8.paducah, lit(50000.0)))) \
9494
.filter(l8.acquisition_date > '2018-02-01') \
9595
.filter(l8.acquisition_date < '2018-04-01')
9696
l8_filtered.select('product_id', 'entity_id', 'acquisition_date', 'cloud_cover_pct').toPandas()

0 commit comments

Comments
 (0)