We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 30d9453 + 36ec624 commit a7a2513Copy full SHA for a7a2513
1 file changed
cubedash/summary/_extents.py
@@ -239,7 +239,6 @@ def refresh_spatial_extents(
239
if "sat_path" in product.metadata_type.dataset_fields:
240
# We can synthesize the polygons!
241
log.info("spatial_synthesizing")
242
- shapes = _get_path_row_shapes()
243
rows = [
244
row
245
for row in e_index.ds_search_returning(
@@ -248,7 +247,7 @@ def refresh_spatial_extents(
248
247
if row.sat_path.lower is not None
249
]
250
if rows:
251
- e_index.synthesize_dataset_footprint(rows, shapes)
+ e_index.synthesize_dataset_footprint(rows, _get_path_row_shapes())
252
log.info("spatial_synthesizing.end")
253
254
return changed
0 commit comments