Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No multiple parents #1279

Merged
merged 31 commits into from
Jul 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9c62de3
Clarify unique parent link requirement in STAC catalogs
emmanuelmathot May 7, 2024
de26fec
collection links for catalog/collection (#1236)
emmanuelmathot May 7, 2024
1234e80
Updated changelog
emmanuelmathot May 7, 2024
f9dd9f7
Clarify unique parent link requirement in spec
emmanuelmathot Jun 11, 2024
26b88b3
updated changelog
emmanuelmathot Jun 11, 2024
6cc9f7b
clarification
emmanuelmathot Jun 11, 2024
1e1ccd6
Update CHANGELOG.md
emmanuelmathot Jun 28, 2024
56dbc1f
updated changelog
emmanuelmathot Jul 4, 2024
06a672a
Clarify internal STAC link
emmanuelmathot Jul 4, 2024
29e0a92
Merge remote-tracking branch 'origin/dev' into nomultiparents
emmanuelmathot Jul 4, 2024
2b73fcc
Update catalog-spec/catalog-spec.md
emmanuelmathot Jul 9, 2024
194a137
Update collection-spec/collection-spec.md
emmanuelmathot Jul 9, 2024
441baed
Update item-spec/item-spec.md
emmanuelmathot Jul 9, 2024
9d862e0
Relation in common metadata
emmanuelmathot Jul 9, 2024
5a9a458
Update common-metadata.md and item-spec.md to reflect required link w…
emmanuelmathot Jul 11, 2024
ee5ec54
suggestion
emmanuelmathot Jul 11, 2024
dec5776
derived_from in bp
emmanuelmathot Jul 11, 2024
80dcd05
restored iri check
emmanuelmathot Jul 12, 2024
3d5f7fa
restored item-spec
emmanuelmathot Jul 12, 2024
665abf9
Update best-practices.md
emmanuelmathot Jul 12, 2024
04c3244
Update collection-spec/collection-spec.md
emmanuelmathot Jul 12, 2024
48cd8ac
table padding
emmanuelmathot Jul 12, 2024
3b66538
updated changelog
emmanuelmathot Jul 12, 2024
d8f5bb4
Update item-spec/common-metadata.md
emmanuelmathot Jul 12, 2024
f16e721
Update item-spec/common-metadata.md
emmanuelmathot Jul 12, 2024
1ece935
Update item-spec/common-metadata.md
emmanuelmathot Jul 12, 2024
f12d2d2
Update item-spec/common-metadata.md
emmanuelmathot Jul 12, 2024
0cfa0ba
Update item-spec/common-metadata.md
emmanuelmathot Jul 12, 2024
ce0ca8c
Update item-spec/item-spec.md
emmanuelmathot Jul 12, 2024
8f16ded
Update hierarchical relations in common-metadata.md
emmanuelmathot Jul 12, 2024
06445ab
Merge branch 'dev' into nomultiparents
emmanuelmathot Jul 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
table padding
  • Loading branch information
emmanuelmathot committed Jul 12, 2024
commit 48cd8ac3212486b8d88ccc882cfd34f4c4c524a2
22 changes: 11 additions & 11 deletions best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,17 +162,17 @@ To avoid issues it is recommended to consistently add a slash at the end of the

**Examples:**

| # | Base URL | Relative URL | Resolved URL |
| --- | ----------------------------------------- | ------------------ | --------------------------------------------- |
| 1 | `https://example.com/folder/catalog.json` | `item.json` | `https://example.com/folder/item.json` |
| 2 | `https://example.com/folder` | `item.json` | `https://example.com/item.json` |
| 3 | `https://example.com/folder/` | `item.json` | `https://example.com/folder/item.json` |
| 4 | `https://example.com/folder` | `folder/item.json` | `https://example.com/folder/item.json` |
| 5 | `https://example.com/folder/` | `folder/item.json` | `https://example.com/folder/folder/item.json` |
| 6 | `https://example.com/another/folder` | `../item.json` | `https://example.com/item.json` |
| 7 | `https://example.com/another/folder/` | `../item.json` | `https://example.com/another/item.json` |
| 8 | `https://example.com` | `folder/item.json` | `https://example.com/folder/item.json` |
| 9 | `https://example.com/` | `folder/item.json` | `https://example.com/folder/item.json` |
| # | Base URL | Relative URL | Resolved URL |
| - | ----------------------------------------- | ------------------ | --------------------------------------------- |
| 1 | `https://example.com/folder/catalog.json` | `item.json` | `https://example.com/folder/item.json` |
| 2 | `https://example.com/folder` | `item.json` | `https://example.com/item.json` |
| 3 | `https://example.com/folder/` | `item.json` | `https://example.com/folder/item.json` |
| 4 | `https://example.com/folder` | `folder/item.json` | `https://example.com/folder/item.json` |
| 5 | `https://example.com/folder/` | `folder/item.json` | `https://example.com/folder/folder/item.json` |
| 6 | `https://example.com/another/folder` | `../item.json` | `https://example.com/item.json` |
| 7 | `https://example.com/another/folder/` | `../item.json` | `https://example.com/another/item.json` |
| 8 | `https://example.com` | `folder/item.json` | `https://example.com/folder/item.json` |
| 9 | `https://example.com/` | `folder/item.json` | `https://example.com/folder/item.json` |

The relative URLs `folder/item.json` and `./folder/item.json` are equivalent.

Expand Down