From 33c543b083db0aa12e33fede96a71aff6efad964 Mon Sep 17 00:00:00 2001 From: lathoub <4082369+lathoub@users.noreply.github.com> Date: Sat, 14 Sep 2024 22:41:36 +0200 Subject: [PATCH] added simplified rel's for conformance and data --- src/models/common/core/landingPage.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/models/common/core/landingPage.js b/src/models/common/core/landingPage.js index 0d54d7f..f96c92a 100644 --- a/src/models/common/core/landingPage.js +++ b/src/models/common/core/landingPage.js @@ -59,6 +59,12 @@ function get(neutralUrl, format, callback) { title: `OGC API conformance classes implemented by this server`, }); + content.links.push({ + href: urlJoin(neutralUrl, "conformance"), + rel: `conformance`, + title: `OGC API conformance classes implemented by this server`, + }); + content.links.push({ href: urlJoin(neutralUrl, "api?f=json"), rel: `service-desc`, @@ -84,6 +90,12 @@ function get(neutralUrl, format, callback) { title: `Access the data`, }); + content.links.push({ + href: urlJoin(neutralUrl, "collections"), + rel: `data`, + title: `Access the data`, + }); + content.links.push({ href: urlJoin(neutralUrl, "processes"), type: `application/json`,