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.
1 parent a02e1fd commit b1ce7e5Copy full SHA for b1ce7e5
stac_fastapi/sfeos_helpers/stac_fastapi/sfeos_helpers/database/index.py
@@ -114,7 +114,9 @@ def parse_search_date(date_str: Optional[str]) -> Optional[date]:
114
date_str = date_str.rstrip("Z")
115
return datetime.fromisoformat(date_str).date()
116
117
- def check_criteria(value_begin: datetime, value_end: datetime, criteria: Dict) -> bool:
+ def check_criteria(
118
+ value_begin: datetime, value_end: datetime, criteria: Dict
119
+ ) -> bool:
120
gte = parse_search_date(criteria.get("gte"))
121
lte = parse_search_date(criteria.get("lte"))
122
0 commit comments