Skip to content

Commit

Permalink
fixed bug to query by parent product
Browse files Browse the repository at this point in the history
  • Loading branch information
jankovicgd committed Feb 20, 2023
1 parent f26021e commit 3679ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eoxserver/services/ows/wps/processes/get_cloud_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def execute(
coverages = models.Coverage.objects.filter(
parent_product__begin_time__lte=end_time,
parent_product__end_time__gte=begin_time,
footprint__intersects=wkt_geometry,
parent_product__footprint__intersects=wkt_geometry,
coverage_type__name="SCL",
).order_by("parent_product__begin_time")

Expand Down

0 comments on commit 3679ba6

Please sign in to comment.