Skip to content

Commit

Permalink
feat: add veda
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Nov 19, 2024
1 parent eb638bc commit 92e3e9f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default async function Page() {
<CatalogCard catalog={catalog} key={catalog.id}></CatalogCard>
));
return (
<Box textAlign="center" pt="20vh">
<Box textAlign="center" pt="10vh" pb="8">
<VStack gap="8">
<Heading size="4xl" letterSpacing="tight">
heystac
Expand Down
2 changes: 1 addition & 1 deletion catalog
Submodule catalog updated 344 files
4 changes: 4 additions & 0 deletions heystac.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ title = "Earth Search by Element 84"
[catalogs.usgs-landsat]
href = "https://landsatlook.usgs.gov/stac-server"
title = "USGS Landsat"

[catalogs.veda]
href = "https://openveda.cloud/api/stac/"
title = "NASA VEDA"
2 changes: 1 addition & 1 deletion src/heystac/rate.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def get_error(self, url: str) -> None | str:
error = f"{url} errored on GET: {str(e)}"
else:
if response.is_error:
error = f"{url} errored on GET ({response.status_code}): {response.text}"
error = f"{url} errored on GET ({response.status_code})"
else:
error = None
self._response_cache[url] = error
Expand Down

0 comments on commit 92e3e9f

Please sign in to comment.