8 Interoperability & FAIR
8.1 OGC Standards
OGC Standards lie at the heart of FAIR (Findable, Accessible, Interoperable, and Reusable) geospatial information. For three decades now, OGC Standards have been used by thousands of organizations across the globe to ensure interoperability and maximize the value of their geospatial data. Developed through consensus, and backed by government and organizations across the globe, OGC Standards provide the stable platform upon which geospatial innovation is built.
OGC’s free and open geospatial Standards define interoperable approaches to Data Encoding, Data Access, Data Processing, Data Visualization, and Metadata and Catalogue Services.
See:
8.2 Types of Standards
8.2.2 Data Access Standards
- OGC API - Features
- OGC API - Environmental Data Retrieval
- Web Feature Service (WFS)
- Web Coverage Service (WCS)
- SensorThings API
- Sensor Observation Service (SOS)
8.2.2.1 OGC APIs
OGC APIs are designed to make it easy for ANYONE to provide and use geospatial data on the web, and to integrate this data with ANY other type of information.
These Standards build upon the legacy of the OGC Web Service Standards (WMS, WFS, WCS, WPS, etc.), but define resource-centric APIs that take advantage of modern web development practices.
This web page provides information on these Standards in a consolidated location..
8.2.4 Visualization Standards
- Web Map Service (WMS)
- Web Map Tile Service (WMTS)
- KML
- Styled Layer Descriptor (SLD)
- Symbology Encoding (SE)
- OGC API - Tiles
8.4 Some (forest) data
8.4.1 Global Forest Watch (GFW)
8.4.1.1 GFW > Global land cover > Land Cover Indonesia
Indicates land cover, classified by type for the area of Indonesia.
8.4.1.1.1 Exercise
Visualize Indonesia maps in QGIS
using the WMS link.
8.5 WCS
8.5.1 LandSupport
- go to –> https://rasdev.landsupport.eu/rasdaman/ows
- select –> ProcessCoverages panel
- insert one of the queries below and press Execute
8.5.1.1 query 01 | Retrieve a portion of the European DEM:
for $c in EU_DEM
$a := [Y(2028534:2030948),X(4704152:4705522)]
let
returnencode(
$c[$a], "tiff"
)
8.5.1.2 query 02 | Transform elevation data using algebraic operations:
In this case, we are calculating the yearly average air temperature considering a linear regression model:
\(T_{air}^{year} = \beta_0 + \beta_1 \times DEM\)
where
- \(\beta_0 = 17.800\;\;[\,°C\,]\)
- \(\beta_1 = -0.0059\;\;[\,°C\;m^{-1}\,]\)
for $c in EU_DEM
$a := [Y(2028534:2030948),X(4704152:4705522)],
let $beta0 := 17.8,
$beta1 := -0.0059
returnencode(
$beta0 + $beta1 * $c[$a], "tiff"
)
See these resources for more details about the temperature vs elevation relationship: