1. 1. Introduction
    1. 1.1 OGC Standards
      1. Introduction to OGC
      1. 1.1.1 Web Mapping Service
        1. Introduction to WMS
        2. WMS Examples
      1. 1.1.2 Web Feature Service
        1. Introduction to WFS
        2. WFS Examples
      1. 1.1.3 Web Coverage Service
        1. Introduction to WCS
        2. WCS Examples
      1. 1.1.4 Web Processing Service
        1. Introduction to WPS
        2. WPS Examples
    1. 1.2 CAAML
      1. Introduction to CAAML
    1. 1.3 INSPIRE
      1. Introduction to INSPIRE
  1. 2. Standards in action
    1. 2.1 Prepare data and toolkit
      1. Data and geospatial tools
      2. Start the environment
      1. 2.1.1 Manage the data
        1. Load Data
        2. Clean Data
      1. 2.1.2 Design the CAAML schema
        1. CAAML model design
        2. Populate Region
    1. 2.2 Build CAAML with GeoAvalanche
      1. Configure the application schema for CAAML
      2. Push the configuration to GeoAvalanche
      3. Query our Region features
  1. 3. Main Chapter
    1. Lesson Six

Data and geospatial tools

Data

Courtesy of Aineva we are going to work with their dataset mnz_italy.zip about the Italian regions where usually the avalanche bulletin is produced.

The original format of the data is Shapefile which is a commonly used set of files to build and share spatial data. This format despite largely used has well-known limitations and it cannot be considered for implementing interoperability.

The dataset is available for the tutorial purpose from the repository given in the initial page. We'll see how it looks like when opened in a spatial tool like QGIS.

Tools

QGIS

qgis

It's probably one the most amazing and common open-source desktop tool for working with spatial data. We are going to use it for loading lazily the shapefile into a spatial database like PostGIS.

References

PostGIS

postgis

PostgIS is a spatial database extension for the the PostgreSQL DBMS. It provides new types to PostgreSQL geometry, geography, raster, and topogeometry and SQL/MM OGC SFSQL compliant functions for doing GIS work such as cadastral management, back-end for Web mapping services.

If you are heavily working with spatial databases then PostGIS is your magic tool. It the best open source spatial database out here and most of the time wins the challenge with commercial ones.

We are going to use it as a datastore for our CAAML features with a dedicated schema for them. There are plenty of methods to download and install it but for our purposes we'll rely on a Docker container within a Kubernetes cluster. More on this later.

References

GeoServer

geoserver

Designed for interoperability, GeoServer publishes data from any major spatial data source using open standards.

It is a reference implementation and certified compliance of the following OGC standard specifications:

  • WMS
  • WFS
  • WCS

GeoServer has an ecosystem of pluggable extensions which can improve the functionalities and the interoperability. Among them in particular a couple are of interest for our goal:

References

GeoNode

geonode

GeoNode is a content management system for developing geospatial information systems (GIS) and for building spatial data infrastructures (SDI).

It is designed to be extended and modified, and can be integrated into existing platforms. GeoNode has already embedded GeoServer and PostGIS for achieving the end goal of interoperability.

It adds to the scene pycsw which is an OGC standard reference implementation for publishing metadata catalogs of spatial data.

References