Skip to content

Commit

Permalink
add OGC API - Processes deep dive, editorial updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Dec 4, 2023
1 parent ad99225 commit 3a66c64
Show file tree
Hide file tree
Showing 6 changed files with 378 additions and 81 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ relation type.

An extract from the landing page of a demo server is shown below.

``` json
```json
{
"title": "Environmental Data Retrevial API concept demonstrator",
"description": "Example EDR API (not for operational use)",
Expand Down Expand Up @@ -312,7 +312,7 @@ requirements specified in a standard.
Below is an extract from the response to the request
<http://labs.metoffice.gov.uk/edr/conformance>

``` json
```json
{
"conformsTo":[
"http://www.opengis.net/spec/ogcapi-common-1/1.0/conf/core",
Expand Down Expand Up @@ -368,7 +368,7 @@ other information about the collection.
Below is an extract from the response to the request
<http://labs.metoffice.gov.uk/edr/collections>

``` json
```json
{
"links": [
{
Expand Down Expand Up @@ -847,7 +847,7 @@ reference systems, output formats, and parameter names.
Below is an extract from the response to the request
<http://labs.metoffice.gov.uk/edr/collections/metar_demo?f=json>

``` json
```json
{
"id": "metar_demo",
"title": "Metar observations EDR demonstrator",
Expand Down
14 changes: 7 additions & 7 deletions workshop/content/docs/api-deep-dive/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ relation type.

An extract from the landing page of a demo server is shown below.

``` json
```json
{
"title": "Daraa",
"description": "This is a test dataset used in the Open Portrayal Framework thread in the OGC Testbed-15 as well as the OGC Vector Tiles Pilot Phase 2. The data is based on OpenStreetMap data from the region of Daraa, Syria, converted to the Topographic Data Store schema of NGA.",
Expand Down Expand Up @@ -257,7 +257,7 @@ information provided by the resource. In this case the ```alternate```
link relation is referencing an HTML representation of the conformance
declaration.

``` json
```json
{
"links": [
{
Expand Down Expand Up @@ -285,7 +285,7 @@ There are conformance classes to provide the API definition using [Open API](htt

This is an extract of an API definition, which uses Open API 3:

``` json
```json
{
"openapi" : "3.0.3",
"info" : {
Expand Down Expand Up @@ -383,7 +383,7 @@ collection:
Below is an extract from the response to the request
<https://demo.ldproxy.net/daraa/collections?f=json>

``` json
```json
{
"title": "Daraa",
"description": "This is a test dataset used in the Open Portrayal Framework thread in the OGC Testbed-15 as well as the OGC Vector Tiles Pilot Phase 2. The data is based on OpenStreetMap data from the region of Daraa, Syria, converted to the Topographic Data Store schema of NGA.",
Expand Down Expand Up @@ -452,7 +452,7 @@ collection identified in a request.
Below is an extract from the response to the request
<https://demo.ldproxy.net/daraa/collections/AeronauticCrv?f=json>

``` json
```json
{
"title": "Aeronautic (Curves)",
"description": "Aeronautical Facilities: Information about an area specifically designed and constructed for landing, accommodating, and launching military and/or civilian aircraft, rockets, missiles and/or spacecraft.<br/>Aeronautical Aids to Navigation: Information about electronic equipment, housings, and utilities that provide positional information for direction or otherwise assisting in the navigation of airborne aircraft.",
Expand Down Expand Up @@ -512,7 +512,7 @@ to the next page, if more features are selected than the page size.
Below is an extract from the response to the request
<https://demo.ldproxy.net/daraa/collections/AeronauticCrv/items?f=json>

``` json
```json
{
"type": "FeatureCollection",
"numberReturned": 10,
Expand Down Expand Up @@ -597,7 +597,7 @@ feature with an ```id``` of 1 is retrieved. The response is retrieved
through the request
<https://demo.ldproxy.net/daraa/collections/AeronauticCrv/items/1?f=json>

``` json
```json
{
"type": "Feature",
"id": 1,
Expand Down
Loading

0 comments on commit 3a66c64

Please sign in to comment.