-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[EXPERIMENTAL] Partially adress issue #408. Probably break getFacets …
…so needs to be checked before release
- Loading branch information
Showing
11 changed files
with
118 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ | ||
"id": "dummyCatalog", | ||
"title": "Dummy Catalog", | ||
"type": "Catalog", | ||
"description":"There is nothing to say on this catalog", | ||
"stac_version":"1.0.0", | ||
"links":{} | ||
"links":[] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": "dummyCatalogChild1", | ||
"type": "Catalog", | ||
"title": "Dummy Catalog child 1", | ||
"description":"I'm a child of dummyCatalog", | ||
"stac_version":"1.0.0", | ||
"links":[] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": "dummyCatalogChild2", | ||
"type": "Catalog", | ||
"title": "Dummy Catalog child 2", | ||
"description":"I'm a child of dummyCatalog", | ||
"stac_version":"1.0.0", | ||
"links":[] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"id": "dummyCatalogWithChilds", | ||
"title": "Dummy Catalog with childs", | ||
"type": "Catalog", | ||
"description":"This catalog has childs - the must exist in the database before adding it otherwise it will raise an error", | ||
"stac_version":"1.0.0", | ||
"links":[ | ||
{ | ||
"rel":"child", | ||
"href":"http://host.docker.internal:5252/catalogs/catalogs/catalog:dummyCatalogChild1" | ||
}, | ||
{ | ||
"rel":"child", | ||
"href":"http://host.docker.internal:5252/catalogs/catalogs/catalog:dummyCatalogChild2" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"id": "dummyCatalog", | ||
"title": "Dummy Catalog", | ||
"type": "Catalog", | ||
"description":"There is nothing to say on this catalog", | ||
"stac_version":"1.0.0", | ||
"links":[ | ||
{ | ||
"rel":"child", | ||
"href":"http://host.docker.internal:5252/catalogs/catalogs/catalog:dummyCatalogChild1" | ||
}, | ||
{ | ||
"rel":"child", | ||
"href":"http://host.docker.internal:5252/catalogs/catalogs/catalog:dummyCatalogChild2" | ||
}, | ||
{ | ||
"rel":"item", | ||
"href":"http://host.docker.internal:5252/collections/dummy/xxxx", | ||
"title":"Catalog can only have child not item/items" | ||
} | ||
] | ||
} |