Introduction to Spatial Processing

What is Spatial Processing?

There are many aspects to a complete GIS. There is map composition; the layering of data, the placement of map artifacts, and so forth. Intertwined with this is map cartography, the actual visualization of the data, and the manner in which it is conveyed.

The other aspect of GIS, which is arguably its most basic, is that of processing (also known as analysis). Processing refers to the management and operations applied in order to ask questions and derive insight from spatial data.

Under the heading of “asking questions”, one might wish to know:

“How far is the dam from the town?”
“Where are the peaks of the tallest mountains?”
“What is the viewshed of this particular tower?”

And when it comes to “deriving insight”, one might wish to accomplish the following:

“Create the watershed area of this particular river”
“Combine census blocks into counties.”
“Find the areas not covered by a viewshed of any of these towers.”

These questions and many more like them can be asked and answered via spatial processing.

In the past, web mapping software has focused primarily on composition and display, leaving processing to desktop clients. But web-based tools today, such as OpenGeo Suite, have a wide range of processing capabilities, all but equaling their desktop equivalents.

Spatial Processing in OpenGeo Suite

Spatial processing is available through a variety of tools in OpenGeo Suite.

Web Processing Service

One powerful method of performing spatial processing is through the Web Processing Service, or WPS. This OGC-based protocol, analogous to other protocols such as Web Map Service (WMS) and Web Feature Service (WFS), allows for client-server interaction with server-hosted “processes”. A server can provide WPS processes, which can then be executed by clients on data they supply or applied to existing server-side datasets.

Processes fall into three categories: vector, raster, and geometry, referring to the type of geospatial content used as the process’s input. These categories are broad, as processes can take multiple types of input.

WPS is a service published by GeoServer and so is an integral part of the OpenGeo Suite. It provides a collection of many standard processes along with the ability to add additional ones. These processes can be employed inside custom applications, built using the Boundless SDK, for a full web-based spatial processing solution.

For example, one can run the geo:union process on a collection of geometries to output a single geometry that is the union of them. Processes can be chained, so one can run the vec:Reproject process to reproject a raster image to a different SRS, then take the output of that and run ras:CropCoverage to crop the raster down to a certain bounds. The result can be fed into the gs:Import process to save the resulting coverage as a new layer in GeoServer, for use by other clients.

SQL Views

Another way to perform spatial processing is by using the SQL Views functionality in GeoServer. When backed by the powerful capabilities of a database such as PostGIS, SQL Views provide an effective way to transform and analyze spatial datasets. Using a SQL View, a layer can be defined as the result of a spatial query on a PostGIS dataset. This layer can then be visualized by WMS, queried via WFS, and even used in further processing operations. Spatial queries in PostGIS support a wide variety of spatial processing, including data transformation, spatial analysis, and even raster processing.