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 6bdbcd3 commit a3a0d4cCopy full SHA for a3a0d4c
stac_search/agents/items_search.py
@@ -291,7 +291,7 @@ async def construct_cql2_filter(ctx: RunContext[Context]) -> FilterExpr | None:
291
292
@async_cached(geocoding_cache)
293
async def get_polygon_from_geodini(location: str):
294
- geodini_api = f"{GEODINI_API}/search_complex"
+ geodini_api = f"{GEODINI_API}/search"
295
async with aiohttp.ClientSession() as session:
296
async with session.get(geodini_api, params={"query": location}) as response:
297
result = (await response.json()).get("result", None)
0 commit comments