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 86e65d0 commit 3666611Copy full SHA for 3666611
stac_fastapi/core/stac_fastapi/core/core.py
@@ -201,17 +201,6 @@ async def landing_page(self, **kwargs) -> stac_types.LandingPage:
201
]
202
)
203
204
- collections = await self.all_collections(request=kwargs["request"])
205
- for collection in collections["collections"]:
206
- landing_page["links"].append(
207
- {
208
- "rel": Relations.child.value,
209
- "type": MimeTypes.json.value,
210
- "title": collection.get("title") or collection.get("id"),
211
- "href": urljoin(base_url, f"collections/{collection['id']}"),
212
- }
213
- )
214
-
215
# Add OpenAPI URL
216
landing_page["links"].append(
217
{
0 commit comments