SlideShare a Scribd company logo
1 of 17
Download to read offline
Hosted by




      Additional Sponsors:


                June 2008
 TC Meeting: Architecture DWG Presentation 

             66th OGC Technical Committee
                                   
                         Potsdam, Germany
                                Arnulf Christl
                               June 02, 2008
                Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
Agenda

• Scope of this presentation
• RESTful OGC Web Services?
• Introducing to the ROA (Resource Oriented Architecture)
• OGC WMS in the ROA
• Recap WMS Capabilities
• Reading the Capabilities but not getting Maps
• How to do Better: LegendURL
• Making Capabilities findable
                                                 Copyright: WhereGroup GmbH & Co. KG.
                                                 Licensed under GNU FDL http://www.gnu.org/licenses/fdl.txt  
                                                 and CreativeCommons 3.0 ShareAlike

                                                                                              Helping the World to Communicate
                   Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                 2
                                                                                              Geographically
Scope of this presentation

• This presentation shows that an OGC WMS Capabilities 
  document is the representation of a resource (even if it is 
  the result of the operation of a software).
• The idea is NOT to start a 
  discussion whether SOAP will 
  clean the REST of the web.
• The idea is NOT to present REST 
  as the solution to all problems.
• The idea is to start thinking about
  how REST can be put to use.
                                                                                               Helping the World to Communicate
                    Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                  3
                                                                                               Geographically
RESTful OGC Web Services?

• According to Wikipedia OGC Services have been designed 
  around the REST paradigm [1].
• This is funny because 10 years ago the term REST and 
  RESTful  services was yet to be born.
• Maybe the OGC was more avant­garde than we might 
  have expected? 
• Probably the OGC design simply followed standard best 
  practices to serve the emerging WAN architecture.
• As an example we look into the standard OGC WMS.
                                     [1] http://en.wikipedia.org/wiki/Open_Geospatial_Consortium


                                                                                             Helping the World to Communicate
                  Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                4
                                                                                             Geographically
Introducing the ROA

• The Resource Oriented Architecture is about enabling the 
  programmable web. It is the home for RESTful web 
  services.
• Instead of calling remote procedures at one single address 
  it uses distributed resources across the web.
• Many implementations of OGC WMS standards are based 
  on a software's perspective of the architecture.
• The ROA is the architecture's perspective of a software that 
  runs as a service. 


                                                                                              Helping the World to Communicate
                   Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                 5
                                                                                              Geographically
The ROA Concepts and Properties

Four concepts:                   Resources
                                 Their names (URL)
                                 Their representations
                                 The links between them 

and four properties              Addressability
                                 Statelessness
                                 Connectedness
                                 A uniform Interface

                                                   From: RESTful Web Services, Richardson & Ruby, page 105


                                                                                                 Helping the World to Communicate
                      Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                    6
                                                                                                 Geographically
OGC WMS in the ROA

• The OGC WMS standard is not all that interesting from a 
  programmable web's perspective because it only returns 
  pretty but dumb images. 
• But the OGC WMS Capabilities document is a good start to 
  look what could be done better
• The Capabilities already contains (almost) everything that 
  is required to make clients get maps in the ROA. 
• Clients must know how to formulate a GET request with 
  scoping parameters, some of which have explicit values.


                                                                                              Helping the World to Communicate
                   Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                 7
                                                                                              Geographically
The OGC WMS Capabilities Document

• The OGC WMS capabilities document contains information 
  about "maps" (the resource) and how to access them (GET 
  a representation).
• The Capabilities document is one possible representation 
  (the meta data) of the resource "maps".
• It contains hints on how to GET (GetMap) more 
  representations (images) of the named resource (maps).
• Although it contains redundant information about WHERE 
  the resource is, the client still must have implicit knowledge 
  of HOW to GET the representation.
                                                                                               Helping the World to Communicate
                    Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                  8
                                                                                               Geographically
Getting OGC WMS Capabilities
                                                                                                             [1]




• OGC WMS capabilities documents have a location (URL)
 http://wms.oregonexplorer.info/ecwp/ecw_wms.dll?

• Then the resource has to be scoped with a set of defined 
  parameters to actually get the document.
 ?REQUEST=GetCapabilties&SERVICE=WMS&VERSION=1.1.1

• This scoping information (in practice) never changes.
 http://wms.oregonexplorer.info/ecwp/capabilites

 ...would be just fine, maybe add the version of the service:
 http://wms111.oregonexplorer.info/ecwp/capabilites

• The Capabilties document is just a representation of the 
  resource "maps" that exposes its meta data.
                           [1] http://wms.oregonexplorer.info/ (OGC web site of the month 03/2008)

                                                                                                       Helping the World to Communicate
                            Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                          9
                                                                                                       Geographically
Reading the Capabilities Documents

 • The "Capabilities" contains information WHERE to get 
<Request>
 <GetCapabilities>
                      maps but not HOW to get them:
    <Format>application/vnd.ogc.wms_xml</Format>
      <DCPType>
       <HTTP>
            <Get>
                 <OnlineResource xlink:href="http://wms.oregonexplorer.info/ecwp/ecw_wms.dll?"/>
            </Get>
       </HTTP>
      </DCPType>
  </GetCapabilities>
  <GetMap>
    <Format>image/png</Format>
    <Format>image/jpeg</Format>
      <DCPType>
       <HTTP>
            <Get>
                 <OnlineResource xlink:href="http://wms.oregonexplorer.info/ecwp/ecw_wms.dll?"/>
            </Get>
[...]

                                                                                                         Helping the World to Communicate
                              Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                        10
                                                                                                         Geographically
Not Getting the Map

• To get a map representation of the OGC WMS resource 
  the client has to scope it with parameters.
 http://wms.oregonexplorer.info/ecwp/ecw_wms.dll? 
 REQUEST=GetMap
 SERVICE=WMS
 VERSION=1.1.1
 LAYERS=2005ORTHOIMAGERY.ECW
 FORMAT=image/jpeg
 STYLES=
 BGCOLOR=0xFFFFFF
 TRANSPARENT=TRUE
 SRS=EPSG:4326
 BBOX=­122.168515234362,42.8926048497946,­122.039660890008,42.9934387129544
 WIDTH=835
 HEIGHT=705



                                                                                                      Helping the World to Communicate
                           Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                     11
                                                                                                      Geographically
Getting the Map

• Some of these parameters are irrelevant, some should be 
  part of the URL, some I don't know what to do about either. 
 http://wms111.oregonexplorer.info/ecwp/ecw_map? 
    REQUEST=GetMap
    SERVICE=WMS
    VERSION=1.1.1
 ? LAYERS=2005ORTHOIMAGERY.ECW
 FORMAT=image/jpeg
    STYLES=
    BGCOLOR=0xFFFFFF
    TRANSPARENT=TRUE
 ? SRS=EPSG:4326
 BBOX=­122.168515234362,42.8926048497946,­122.039660890008,42.9934387129544
 WIDTH=835
 HEIGHT=705



                                                                                                     Helping the World to Communicate
                          Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                    12
                                                                                                     Geographically
LegendURL does it better [1]

 • This OnlineResource has all the WHERE and the HOW:
[...]
    <Layer queryable="0" opaque="0" cascaded="0">
        <Name>railroad_line</Name>
        <Title>Railroad lines</Title>
        <SRS>epsg:4326</SRS>
        <LatLonBoundingBox minx="5.98259" miny="47.4064" maxx="15" maxy="54.9045" />
        <BoundingBox SRS="EPSG:4326"
                    minx="5.98259" miny="47.4064" maxx="15" maxy="54.9045" />
        <Style>
          <Name>default</Name>
          <Title>default</Title>
          <LegendURL width="20" height="10">
             <Format>image/png</Format>
             <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:
               href="http://wms.wheregroup.com/cgi­bin/germany?version=1.1.1&amp;service=WMS& 
               amp;request=GetLegendGraphic&amp;layer=railroad_line&amp;format=image/png"/>
          </LegendURL>
        </Style>
    </Layer>
                                                          [1] http://wms.wheregroup.com/cgi­bin/germany
[...]

                                                                                                            Helping the World to Communicate
                                 Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                           13
                                                                                                            Geographically
Modifying Capabilities Documents

 • Capabilities with WHERE and HOW to get maps:
<Request>
 <EPSG4326>
  <Format>image/png</Format>
  <Format>image/jpeg</Format>
   <DCPType>
    <HTTP>
         <Get>
                <OnlineResource xlink:href="http://wms.oregonexplorer.info/ecwp/4326/ecw_map?"/>
         </Get>
    </HTTP>
   </DCPType>
 </GetCapabilities>
 <EPSG:26910>
  <Format>image/png</Format>
  <Format>image/jpeg</Format>
   <DCPType>
    <HTTP>
         <Get>
                <OnlineResource xlink:href="http://wms.oregonexplorer.info/ecwp/26910/ecw_map?"/> 
         </Get>

                                                                                                         Helping the World to Communicate
                              Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                        14
                                                                                                         Geographically
The ROA Rules!

 Four concepts:
 in              up                Resources                                                         capabilities
 /   left  <[MAP]>  right         Their names (URL)                                                 maps
out           down                 Their representations                                             legends
capabilities   Legend              The links between them                                            ...


 and four properties               Addressability
                                   Statelessness
                                   Connectedness
                                   A uniform Interface
                                                     From: RESTful Web Services, Richardson & Ruby, page 105

                                                                                                   Helping the World to Communicate
                        Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                  15
                                                                                                   Geographically
Making Capabilities Findable

• Expose OGC WMS Capabilities documents as really 
 beautiful documents not as the result of a remotely 
 invoked operation of a software.
• Give the Capabilities Document an extra home (URL). 
• The Capabilities Document is the v­card of the service and 
  must contain all information that is needed to access the 
  resource and get a result. 
• Explore how to use XHTML as a format that is readable by 
  machines and humans alike.

                                                                                              Helping the World to Communicate
                   Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                             16
                                                                                              Geographically
Discussion

Thank you for your attention.




                                                            Copyright: WhereGroup GmbH & Co. KG.
Author: Arnulf Christl 
                                                            This  presentation  is  dual  licensed  under  GNU  FDL  and 
WhereGroup GmbH & Co. KG
                                                            Creative Commons 3.0 Share Alike. Choose the one that fits 
Siemensstr. 8
                                                            your needs best. The presentation master, first page and last 
53121 Bonn                                                  page (this one) are what the GNU FDL refers to as invariant 
Germany                                                     sections.  Please  do  not  modify  these  pages  without  getting 
http://www.wheregroup.com/                                  written permission by the author. Find the full text of the GNU 
                                                            FDL at: http://www.gnu.org/licenses/fdl.txt 

                                                                                                         Helping the World to Communicate
                              Copyright © 2008, Open Geospatial Consortium, Inc., All Rights Reserved.
                                                                                                                                        17
                                                                                                         Geographically

More Related Content

Viewers also liked

The OSGeo Foundation: Professionally Leveraging Open Source Geospatial
The OSGeo Foundation: Professionally Leveraging Open Source GeospatialThe OSGeo Foundation: Professionally Leveraging Open Source Geospatial
The OSGeo Foundation: Professionally Leveraging Open Source GeospatialArnulf Christl
 
β’ παγκοσμιοσ πολεμοσ 4
β’ παγκοσμιοσ πολεμοσ 4β’ παγκοσμιοσ πολεμοσ 4
β’ παγκοσμιοσ πολεμοσ 4sotiris47342
 
A Brief History of Open Geospatial
A Brief History of Open GeospatialA Brief History of Open Geospatial
A Brief History of Open GeospatialArnulf Christl
 
Case Study Pollutant Release And Transfer Registry
Case Study Pollutant  Release And Transfer RegistryCase Study Pollutant  Release And Transfer Registry
Case Study Pollutant Release And Transfer RegistryArnulf Christl
 
Mini Projet no 1 : SKYmatch
Mini Projet no 1 : SKYmatchMini Projet no 1 : SKYmatch
Mini Projet no 1 : SKYmatchHEC Lausanne
 
PAÍS VALENCIÀ AL NATURAL
PAÍS VALENCIÀ AL NATURALPAÍS VALENCIÀ AL NATURAL
PAÍS VALENCIÀ AL NATURALxamaril
 
FreeGIS.net, INSPIRE, Open Source Software and OGC standards
FreeGIS.net, INSPIRE, Open Source Software and OGC standardsFreeGIS.net, INSPIRE, Open Source Software and OGC standards
FreeGIS.net, INSPIRE, Open Source Software and OGC standardsArnulf Christl
 
Benefits Of Using Images In The Classrooms
Benefits Of Using Images In The ClassroomsBenefits Of Using Images In The Classrooms
Benefits Of Using Images In The ClassroomsALC
 

Viewers also liked (10)

The OSGeo Foundation: Professionally Leveraging Open Source Geospatial
The OSGeo Foundation: Professionally Leveraging Open Source GeospatialThe OSGeo Foundation: Professionally Leveraging Open Source Geospatial
The OSGeo Foundation: Professionally Leveraging Open Source Geospatial
 
β’ παγκοσμιοσ πολεμοσ 4
β’ παγκοσμιοσ πολεμοσ 4β’ παγκοσμιοσ πολεμοσ 4
β’ παγκοσμιοσ πολεμοσ 4
 
A Brief History of Open Geospatial
A Brief History of Open GeospatialA Brief History of Open Geospatial
A Brief History of Open Geospatial
 
Case Study Pollutant Release And Transfer Registry
Case Study Pollutant  Release And Transfer RegistryCase Study Pollutant  Release And Transfer Registry
Case Study Pollutant Release And Transfer Registry
 
Mini Projet no 1 : SKYmatch
Mini Projet no 1 : SKYmatchMini Projet no 1 : SKYmatch
Mini Projet no 1 : SKYmatch
 
PAÍS VALENCIÀ AL NATURAL
PAÍS VALENCIÀ AL NATURALPAÍS VALENCIÀ AL NATURAL
PAÍS VALENCIÀ AL NATURAL
 
FreeGIS.net, INSPIRE, Open Source Software and OGC standards
FreeGIS.net, INSPIRE, Open Source Software and OGC standardsFreeGIS.net, INSPIRE, Open Source Software and OGC standards
FreeGIS.net, INSPIRE, Open Source Software and OGC standards
 
Benefits Of Using Images In The Classrooms
Benefits Of Using Images In The ClassroomsBenefits Of Using Images In The Classrooms
Benefits Of Using Images In The Classrooms
 
Online games
Online gamesOnline games
Online games
 
360 Degree Leadership
360 Degree Leadership360 Degree Leadership
360 Degree Leadership
 

Similar to OGC Capabilities Documents In The ROA

The New Digital Disorder
The New Digital DisorderThe New Digital Disorder
The New Digital DisorderArnulf Christl
 
Interoperability and Standards for Disaster Risk Management
Interoperability and Standards for Disaster Risk ManagementInteroperability and Standards for Disaster Risk Management
Interoperability and Standards for Disaster Risk ManagementLuis Bermudez
 
Radovan Janecek R E S Tor S O A Pv1
Radovan  Janecek    R E S Tor S O A Pv1Radovan  Janecek    R E S Tor S O A Pv1
Radovan Janecek R E S Tor S O A Pv1SOA Symposium
 
Esri Geoportal Server
Esri Geoportal ServerEsri Geoportal Server
Esri Geoportal ServerEsri
 
Analysis Ready Data workshop - OGC presentation
Analysis Ready Data workshop - OGC presentation Analysis Ready Data workshop - OGC presentation
Analysis Ready Data workshop - OGC presentation George Percivall
 
Innovation in Geospatial Technology and Standards
Innovation in Geospatial Technology and StandardsInnovation in Geospatial Technology and Standards
Innovation in Geospatial Technology and StandardsGeorge Percivall
 
Inspire Helsinki 2019 - Keynote Bart De Lathouwer
Inspire Helsinki 2019 - Keynote Bart De LathouwerInspire Helsinki 2019 - Keynote Bart De Lathouwer
Inspire Helsinki 2019 - Keynote Bart De LathouwerHannaHorppila
 
Inspire Helsinki 2019 - Keynote Bart De Lathouwer
Inspire Helsinki 2019 - Keynote Bart De LathouwerInspire Helsinki 2019 - Keynote Bart De Lathouwer
Inspire Helsinki 2019 - Keynote Bart De LathouwerInspireHelsinki2019
 
Inspire Helsinki 2019 Keynote by Bart De Lathouwer
Inspire Helsinki 2019 Keynote by Bart De LathouwerInspire Helsinki 2019 Keynote by Bart De Lathouwer
Inspire Helsinki 2019 Keynote by Bart De LathouwerInspireHelsinki2019
 
Geospatial Ontologies and GeoSPARQL Services
Geospatial Ontologies and GeoSPARQL ServicesGeospatial Ontologies and GeoSPARQL Services
Geospatial Ontologies and GeoSPARQL ServicesStephane Fellah
 
Implementing a shared instance of the Evergreen ILS for an academic library c...
Implementing a shared instance of the Evergreen ILS for an academic library c...Implementing a shared instance of the Evergreen ILS for an academic library c...
Implementing a shared instance of the Evergreen ILS for an academic library c...kramsey
 
Open Science and GEOSS: the Cloud Sandbox enablers
Open Science and GEOSS: the Cloud Sandbox enablersOpen Science and GEOSS: the Cloud Sandbox enablers
Open Science and GEOSS: the Cloud Sandbox enablersterradue
 
Advancing open source geospatial software for the do d ic edward pickle openg...
Advancing open source geospatial software for the do d ic edward pickle openg...Advancing open source geospatial software for the do d ic edward pickle openg...
Advancing open source geospatial software for the do d ic edward pickle openg...Joshua L. Davis
 
AFCEA C4I Symposium: The 4th C in C4I Stands for Cloud:Factors Driving Adopti...
AFCEA C4I Symposium: The 4th C in C4I Stands for Cloud:Factors Driving Adopti...AFCEA C4I Symposium: The 4th C in C4I Stands for Cloud:Factors Driving Adopti...
AFCEA C4I Symposium: The 4th C in C4I Stands for Cloud:Factors Driving Adopti...Patrick Chanezon
 
Core Geospatial Ontologies
Core Geospatial OntologiesCore Geospatial Ontologies
Core Geospatial OntologiesStephane Fellah
 
OGC Update for State of Geospatial Tech at T-Rex
OGC Update for State of Geospatial Tech at T-RexOGC Update for State of Geospatial Tech at T-Rex
OGC Update for State of Geospatial Tech at T-RexGeorge Percivall
 
OPen Source Web Test Engine for Geospatial Standards
OPen Source Web Test Engine for Geospatial StandardsOPen Source Web Test Engine for Geospatial Standards
OPen Source Web Test Engine for Geospatial StandardsFOSS4G 2011
 
Geospatial Temporal Open Standards for Big Data from Space (BiDS2014)
Geospatial Temporal Open Standards for Big Data from Space (BiDS2014)Geospatial Temporal Open Standards for Big Data from Space (BiDS2014)
Geospatial Temporal Open Standards for Big Data from Space (BiDS2014)George Percivall
 
OGC standards relevant to ISPRS
OGC standards relevant to ISPRSOGC standards relevant to ISPRS
OGC standards relevant to ISPRSGeorge Percivall
 
Introducing Open - Keynote at AGI South West
Introducing Open - Keynote at AGI South WestIntroducing Open - Keynote at AGI South West
Introducing Open - Keynote at AGI South WestArnulf Christl
 

Similar to OGC Capabilities Documents In The ROA (20)

The New Digital Disorder
The New Digital DisorderThe New Digital Disorder
The New Digital Disorder
 
Interoperability and Standards for Disaster Risk Management
Interoperability and Standards for Disaster Risk ManagementInteroperability and Standards for Disaster Risk Management
Interoperability and Standards for Disaster Risk Management
 
Radovan Janecek R E S Tor S O A Pv1
Radovan  Janecek    R E S Tor S O A Pv1Radovan  Janecek    R E S Tor S O A Pv1
Radovan Janecek R E S Tor S O A Pv1
 
Esri Geoportal Server
Esri Geoportal ServerEsri Geoportal Server
Esri Geoportal Server
 
Analysis Ready Data workshop - OGC presentation
Analysis Ready Data workshop - OGC presentation Analysis Ready Data workshop - OGC presentation
Analysis Ready Data workshop - OGC presentation
 
Innovation in Geospatial Technology and Standards
Innovation in Geospatial Technology and StandardsInnovation in Geospatial Technology and Standards
Innovation in Geospatial Technology and Standards
 
Inspire Helsinki 2019 - Keynote Bart De Lathouwer
Inspire Helsinki 2019 - Keynote Bart De LathouwerInspire Helsinki 2019 - Keynote Bart De Lathouwer
Inspire Helsinki 2019 - Keynote Bart De Lathouwer
 
Inspire Helsinki 2019 - Keynote Bart De Lathouwer
Inspire Helsinki 2019 - Keynote Bart De LathouwerInspire Helsinki 2019 - Keynote Bart De Lathouwer
Inspire Helsinki 2019 - Keynote Bart De Lathouwer
 
Inspire Helsinki 2019 Keynote by Bart De Lathouwer
Inspire Helsinki 2019 Keynote by Bart De LathouwerInspire Helsinki 2019 Keynote by Bart De Lathouwer
Inspire Helsinki 2019 Keynote by Bart De Lathouwer
 
Geospatial Ontologies and GeoSPARQL Services
Geospatial Ontologies and GeoSPARQL ServicesGeospatial Ontologies and GeoSPARQL Services
Geospatial Ontologies and GeoSPARQL Services
 
Implementing a shared instance of the Evergreen ILS for an academic library c...
Implementing a shared instance of the Evergreen ILS for an academic library c...Implementing a shared instance of the Evergreen ILS for an academic library c...
Implementing a shared instance of the Evergreen ILS for an academic library c...
 
Open Science and GEOSS: the Cloud Sandbox enablers
Open Science and GEOSS: the Cloud Sandbox enablersOpen Science and GEOSS: the Cloud Sandbox enablers
Open Science and GEOSS: the Cloud Sandbox enablers
 
Advancing open source geospatial software for the do d ic edward pickle openg...
Advancing open source geospatial software for the do d ic edward pickle openg...Advancing open source geospatial software for the do d ic edward pickle openg...
Advancing open source geospatial software for the do d ic edward pickle openg...
 
AFCEA C4I Symposium: The 4th C in C4I Stands for Cloud:Factors Driving Adopti...
AFCEA C4I Symposium: The 4th C in C4I Stands for Cloud:Factors Driving Adopti...AFCEA C4I Symposium: The 4th C in C4I Stands for Cloud:Factors Driving Adopti...
AFCEA C4I Symposium: The 4th C in C4I Stands for Cloud:Factors Driving Adopti...
 
Core Geospatial Ontologies
Core Geospatial OntologiesCore Geospatial Ontologies
Core Geospatial Ontologies
 
OGC Update for State of Geospatial Tech at T-Rex
OGC Update for State of Geospatial Tech at T-RexOGC Update for State of Geospatial Tech at T-Rex
OGC Update for State of Geospatial Tech at T-Rex
 
OPen Source Web Test Engine for Geospatial Standards
OPen Source Web Test Engine for Geospatial StandardsOPen Source Web Test Engine for Geospatial Standards
OPen Source Web Test Engine for Geospatial Standards
 
Geospatial Temporal Open Standards for Big Data from Space (BiDS2014)
Geospatial Temporal Open Standards for Big Data from Space (BiDS2014)Geospatial Temporal Open Standards for Big Data from Space (BiDS2014)
Geospatial Temporal Open Standards for Big Data from Space (BiDS2014)
 
OGC standards relevant to ISPRS
OGC standards relevant to ISPRSOGC standards relevant to ISPRS
OGC standards relevant to ISPRS
 
Introducing Open - Keynote at AGI South West
Introducing Open - Keynote at AGI South WestIntroducing Open - Keynote at AGI South West
Introducing Open - Keynote at AGI South West
 

More from Arnulf Christl

DVW Seminar zu Freier Software und Freien Daten
DVW Seminar zu Freier Software und Freien DatenDVW Seminar zu Freier Software und Freien Daten
DVW Seminar zu Freier Software und Freien DatenArnulf Christl
 
STDM-Online_The-Social-Tenure-Domain-Model-Tool_slides
STDM-Online_The-Social-Tenure-Domain-Model-Tool_slidesSTDM-Online_The-Social-Tenure-Domain-Model-Tool_slides
STDM-Online_The-Social-Tenure-Domain-Model-Tool_slidesArnulf Christl
 
STDM Online for Land Administration
STDM Online for Land AdministrationSTDM Online for Land Administration
STDM Online for Land AdministrationArnulf Christl
 
STDM Online Architecture and Services for Land Administration
STDM Online Architecture and Services for Land AdministrationSTDM Online Architecture and Services for Land Administration
STDM Online Architecture and Services for Land AdministrationArnulf Christl
 
OSGeo INSPIRE Ping-Pong Match
OSGeo INSPIRE Ping-Pong MatchOSGeo INSPIRE Ping-Pong Match
OSGeo INSPIRE Ping-Pong MatchArnulf Christl
 
Open Standards, Open Source, Open Data. Zuviel des Guten?
Open Standards, Open Source, Open Data. Zuviel des Guten?Open Standards, Open Source, Open Data. Zuviel des Guten?
Open Standards, Open Source, Open Data. Zuviel des Guten?Arnulf Christl
 
OpenStreetMap und die Öffentliche Verwaltung
OpenStreetMap und die Öffentliche VerwaltungOpenStreetMap und die Öffentliche Verwaltung
OpenStreetMap und die Öffentliche VerwaltungArnulf Christl
 
Metaspatial Firmenprofil
Metaspatial FirmenprofilMetaspatial Firmenprofil
Metaspatial FirmenprofilArnulf Christl
 
Resource Oriented Future for Geospatial Data
Resource Oriented Future for Geospatial DataResource Oriented Future for Geospatial Data
Resource Oriented Future for Geospatial DataArnulf Christl
 
What is Openness in OGC, OSGeo and OSM
What is Openness in OGC, OSGeo and OSMWhat is Openness in OGC, OSGeo and OSM
What is Openness in OGC, OSGeo and OSMArnulf Christl
 
OSGeo Web Mapping Software Comparison
OSGeo Web Mapping Software ComparisonOSGeo Web Mapping Software Comparison
OSGeo Web Mapping Software ComparisonArnulf Christl
 
The Potential of Metadata - Geoweb 2010
The Potential of Metadata - Geoweb 2010The Potential of Metadata - Geoweb 2010
The Potential of Metadata - Geoweb 2010Arnulf Christl
 
Osgis 10 arnulf-christl
Osgis 10 arnulf-christlOsgis 10 arnulf-christl
Osgis 10 arnulf-christlArnulf Christl
 
Eine Typisierung von Mapbender, OpenLayers und MapFish
Eine Typisierung von Mapbender, OpenLayers und MapFishEine Typisierung von Mapbender, OpenLayers und MapFish
Eine Typisierung von Mapbender, OpenLayers und MapFishArnulf Christl
 
IV. Jornadas Sig Libre: The State of OSGeo and the Global SDI
IV. Jornadas Sig Libre: The State of OSGeo and the Global SDIIV. Jornadas Sig Libre: The State of OSGeo and the Global SDI
IV. Jornadas Sig Libre: The State of OSGeo and the Global SDIArnulf Christl
 
Neue Wege für Metadaten
Neue Wege für MetadatenNeue Wege für Metadaten
Neue Wege für MetadatenArnulf Christl
 
Neue Wege fuer Metadaten
Neue Wege fuer MetadatenNeue Wege fuer Metadaten
Neue Wege fuer MetadatenArnulf Christl
 
Neue Wege Fuer Metadaten - FOSSGIS 2010
Neue Wege Fuer Metadaten - FOSSGIS 2010Neue Wege Fuer Metadaten - FOSSGIS 2010
Neue Wege Fuer Metadaten - FOSSGIS 2010Arnulf Christl
 
WhereGroup Firmenprofil
WhereGroup FirmenprofilWhereGroup Firmenprofil
WhereGroup FirmenprofilArnulf Christl
 

More from Arnulf Christl (20)

DVW Seminar zu Freier Software und Freien Daten
DVW Seminar zu Freier Software und Freien DatenDVW Seminar zu Freier Software und Freien Daten
DVW Seminar zu Freier Software und Freien Daten
 
STDM-Online_The-Social-Tenure-Domain-Model-Tool_slides
STDM-Online_The-Social-Tenure-Domain-Model-Tool_slidesSTDM-Online_The-Social-Tenure-Domain-Model-Tool_slides
STDM-Online_The-Social-Tenure-Domain-Model-Tool_slides
 
STDM Online for Land Administration
STDM Online for Land AdministrationSTDM Online for Land Administration
STDM Online for Land Administration
 
STDM Online Architecture and Services for Land Administration
STDM Online Architecture and Services for Land AdministrationSTDM Online Architecture and Services for Land Administration
STDM Online Architecture and Services for Land Administration
 
OSGeo INSPIRE Ping-Pong Match
OSGeo INSPIRE Ping-Pong MatchOSGeo INSPIRE Ping-Pong Match
OSGeo INSPIRE Ping-Pong Match
 
Open Standards, Open Source, Open Data. Zuviel des Guten?
Open Standards, Open Source, Open Data. Zuviel des Guten?Open Standards, Open Source, Open Data. Zuviel des Guten?
Open Standards, Open Source, Open Data. Zuviel des Guten?
 
OpenStreetMap und die Öffentliche Verwaltung
OpenStreetMap und die Öffentliche VerwaltungOpenStreetMap und die Öffentliche Verwaltung
OpenStreetMap und die Öffentliche Verwaltung
 
Was ist Open Data?
Was ist Open Data?Was ist Open Data?
Was ist Open Data?
 
Metaspatial Firmenprofil
Metaspatial FirmenprofilMetaspatial Firmenprofil
Metaspatial Firmenprofil
 
Resource Oriented Future for Geospatial Data
Resource Oriented Future for Geospatial DataResource Oriented Future for Geospatial Data
Resource Oriented Future for Geospatial Data
 
What is Openness in OGC, OSGeo and OSM
What is Openness in OGC, OSGeo and OSMWhat is Openness in OGC, OSGeo and OSM
What is Openness in OGC, OSGeo and OSM
 
OSGeo Web Mapping Software Comparison
OSGeo Web Mapping Software ComparisonOSGeo Web Mapping Software Comparison
OSGeo Web Mapping Software Comparison
 
The Potential of Metadata - Geoweb 2010
The Potential of Metadata - Geoweb 2010The Potential of Metadata - Geoweb 2010
The Potential of Metadata - Geoweb 2010
 
Osgis 10 arnulf-christl
Osgis 10 arnulf-christlOsgis 10 arnulf-christl
Osgis 10 arnulf-christl
 
Eine Typisierung von Mapbender, OpenLayers und MapFish
Eine Typisierung von Mapbender, OpenLayers und MapFishEine Typisierung von Mapbender, OpenLayers und MapFish
Eine Typisierung von Mapbender, OpenLayers und MapFish
 
IV. Jornadas Sig Libre: The State of OSGeo and the Global SDI
IV. Jornadas Sig Libre: The State of OSGeo and the Global SDIIV. Jornadas Sig Libre: The State of OSGeo and the Global SDI
IV. Jornadas Sig Libre: The State of OSGeo and the Global SDI
 
Neue Wege für Metadaten
Neue Wege für MetadatenNeue Wege für Metadaten
Neue Wege für Metadaten
 
Neue Wege fuer Metadaten
Neue Wege fuer MetadatenNeue Wege fuer Metadaten
Neue Wege fuer Metadaten
 
Neue Wege Fuer Metadaten - FOSSGIS 2010
Neue Wege Fuer Metadaten - FOSSGIS 2010Neue Wege Fuer Metadaten - FOSSGIS 2010
Neue Wege Fuer Metadaten - FOSSGIS 2010
 
WhereGroup Firmenprofil
WhereGroup FirmenprofilWhereGroup Firmenprofil
WhereGroup Firmenprofil
 

Recently uploaded

What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 

Recently uploaded (20)

What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 

OGC Capabilities Documents In The ROA