Update Fast API FAQ authored by Kameswarrao Modali's avatar Kameswarrao Modali
......@@ -30,3 +30,32 @@ stac_fastapi/core/stac_fastapi/core/extensions/filter.py
The variables.css under stac-browser/src/theme can be modified to add a logo, change background color so that they mach the project theme.
## How to get a project catalog enlisted in DKRZ STAC browser?
Please prepare a JSON file as follows and provide it to the catalog curator:
```json
{
"id":16,
"url":"https://eod-catalog-svc-prod.astraea.earth/",
"slug":"astraea-earth-ondemand",
"title":"Astraea Earth OnDemand",
"summary":"Astraea Earth OnDemand geospatial imagery query and analysis tool",
"access":"public",
"created":"2020-09-02T19:21:50.464Z",
"updated":"2020-09-02T19:21:50.464Z",
"isPrivate":false,
"isApi":true,
"accessInfo":null
}
```
_***id***_ : The count of already existing catalogs + 1, to be unique. \
_***url***_ : The link to the catalog/API. \
_***slug***_: \
_***title***_ : Title to be displayed in the listing. \
_***summary***_ : A brief summary about the contents of the catalog/API. \
_***access***_ : Indicate if the access type. \
_***created***_ : The date of creation. \
_***update***_ : The date of last update. \
_***isPrivate***_ : To indicate if the catalog has limited access (no ingestion etc.). \
_***isApi***_ : Flag to distinguish between catalog and API. \
_***accessInfo***_ : Access credentials, if any.