Difference between revisions of "WCS Wrapper Standards"

From Earth Science Information Partners (ESIP)
Line 42: Line 42:
 
The type of data that OWS deals with is [http://cf-pcmdi.llnl.gov/documents/cf-conventions/1.5/cf-conventions.html#id2867470 Timeseries of Station Data]. Currently WCS supports this data type, but source being SQL and output being [http://en.wikipedia.org/wiki/Comma-separated_values CSV, Comma Separated Values] as MS Excel understands them.  
 
The type of data that OWS deals with is [http://cf-pcmdi.llnl.gov/documents/cf-conventions/1.5/cf-conventions.html#id2867470 Timeseries of Station Data]. Currently WCS supports this data type, but source being SQL and output being [http://en.wikipedia.org/wiki/Comma-separated_values CSV, Comma Separated Values] as MS Excel understands them.  
  
== OpenGeoSpatial Web Services Standards ===
+
== OpenGeoSpatial Web Services Standards ==
 +
 
 +
The OpenGeoSpatial Consortium has plenty of [http://www.opengeospatial.org/standards/ Web Service Standards]. The OWS system has been designed from the beginning to support any of these standards by separating the low-level web protocols from the actual service module.
 +
 
 +
=== Web Coverage Service 1.1.x ===
 +
 
 +
The most important standard is Web Coverage Service, [http://www.opengeospatial.org/standards/wcs WCS 1.1.2]. The standard focuses only to N-dimensional cubed data, but the OWS system extends this with Timeseries of Station Data, Point Data.
 +
 
 +
Because there is no good way to describe the location table in CoverageDescription, OWS uses the Web Feature Service 1.0.0 to deliver the location tables.
 +
 
 +
=== Web Feature Service 1.0.0 ===
 +
 
 +
The Web Feature Service [http://www.opengeospatial.org/standards/wfs WFS 1.0.0] is designed to deliver static features of geographical landscape. Currently OWS has partial support for this, The GetFeature Query is implemented to deliver the location table of a point coverage.
 +
 
 +
 
  
* WCS 1.1.0 .. 1.1.2
 
 
* CSV to text data
 
* CSV to text data
 
* WMS for images
 
* WMS for images

Revision as of 11:35, December 3, 2010

Back to aq-ogc-services.sourceforge.net

Standards used in this project

The OWS project attempts to use existing standards whenever possible, and invent own conventions only when no agreement exists.

NetCDF Standards

NetCDF is a well established binary standard with cross platform libraries. Unfortunately, NetCDF alone does not guarantee interoperability. NetCDF just describes the syntax, not semantics. Semantic problems include but are not limited to:

  • How do you define what the projection of the data is?
  • How do you calculate lattitude and longitude coordinates to plot it on a map?
  • How do you get the time of the measurement?
  • What is the physical parameter the data is about?
  • What are the units of the data?
  • Is the elevation atmosphere of ocean depth?

And so on. These problems have been addressed with NetCDF conventions which tell people, that if you mark time variable "hours since 1990-01-01" then it's easy to tell that 12 means 1990-01-01T13:00:00 without any help from humans.

CF-Conventions

The recommended convention is NetCDF Climate and Forecast (CF) Metadata Convention and it's latest version CF-1.5

CF Standard Names

The standard name table is used to identify real chemical/physical category of the data.

Official source: CF Standard Name Tables. The latest version is v15, so the document is alive and updated.

Datafed has combined some unofficial names from the HTAP project: datafed standard names table which may or may not be official one day.

CF-NetCDF For Cubes

This is the original data type and it standardizes vast majority of important metadata so that plug'n play processing is possible.

CF-NetCDF for Timeseries of Station Data

The type of data that OWS deals with is Timeseries of Station Data. Currently WCS supports this data type, but source being SQL and output being CSV, Comma Separated Values as MS Excel understands them.

OpenGeoSpatial Web Services Standards

The OpenGeoSpatial Consortium has plenty of Web Service Standards. The OWS system has been designed from the beginning to support any of these standards by separating the low-level web protocols from the actual service module.

Web Coverage Service 1.1.x

The most important standard is Web Coverage Service, WCS 1.1.2. The standard focuses only to N-dimensional cubed data, but the OWS system extends this with Timeseries of Station Data, Point Data.

Because there is no good way to describe the location table in CoverageDescription, OWS uses the Web Feature Service 1.0.0 to deliver the location tables.

Web Feature Service 1.0.0

The Web Feature Service WFS 1.0.0 is designed to deliver static features of geographical landscape. Currently OWS has partial support for this, The GetFeature Query is implemented to deliver the location table of a point coverage.


  • CSV to text data
  • WMS for images
  • WFS for points
  • http-get

Industry Standards for developers

  • python
  • lxml
  • numpy
  • PyNIO
  • webpy