An introduction and overview of Geography Markup Language

Size: px
Start display at page:

Download "An introduction and overview of Geography Markup Language"

Transcription

1 An introduction and overview of Geography Markup Language Lecturer: Dr Dan Cornford CS3210, Geographic Information Systems, Aston University, Birmingham, UK March 19, 2009 Dan Cornford GML Introduction 1/19

2 Overview GIS and the internet. Introduction to GML The role of the OpenGIS consortium. Implementing GML. Displaying GML over the web - interactive web based mapping. Future developments of GML. Dan Cornford GML Introduction 2/19

3 GIS and the internet There is a trend for increased web-centric computing. This trend has also affected GIS largely driven the formation of the OpenGIS consortium. In its simplest form this means the display of static maps over the internet - e.g. multimap. This is a naive use of the internet, since these static bitmaps are not particularly useful for querying i.e. contain little information. The future promises the creation of truly platform independent data, structured using XML, which can be queried. Thus the data becomes accessible and we will all be working over the internet using virtual data. Dan Cornford GML Introduction 3/19

4 GML - the encoding standard To facilitate the exchange of data (and subsequent translation into information) we must be able to effectively share data. In general this is not possible using proprietary binary software export formats, and is best facilitated using a format that is both machine and human readable XML. For geographic data it would be very useful if we could use a common XML schema to describe our data. GML (Geography Mark-up Language) provides just such a schema, which is public domain (OpenGIS) and XML based. Current version is GML 3, but we will start by looking at GML 2 which includes only simple features and geometry. Dan Cornford GML Introduction 4/19

5 GML Basics GML is a series of schema for describing geographic data in XML. Two key schema are: feature schema; geometry schema. Feature schema used to define geographical features in an object framework e.g. house, road, county... Geometry schema used to define the geometric features of objects e.g. point, line or polygon. Feature Geometery Xlink <<include>> <<import>> GML also uses the Xlink schema. Dan Cornford GML Introduction 5/19

6 Implementing GML GML2 implements only simple geometries: points, lines and polygons. More complex data types can be composed by combining multiple geometries. It is envisaged that users will define their own object types by extending the GML AbstractFeature class. These can then be grouped extending the GML AbstractFeatureCollection base class. Every feature can have associated properties (that the user is free to define). The properties include one or more associated geometries. Dan Cornford GML Introduction 6/19

7 GML2 example (data) <?xml version="1.0" encoding="utf-8"?><!-- File: cambridge.xml --> <CityModel xmlns=" xmlns:gml=" xmlns:xlink=" xmlns:xsi=" xsi:schemalocation=" city.xsd"> <gml:name>cambridge</gml:name> <gml:boundedby> <gml:box srsname=" <gml:coord><gml:x>0.0</gml:x><gml:y>0.0</gml:y></gml:coord> <gml:coord><gml:x>100.0</gml:x><gml:y>100.0</gml:y></gml:coord> </gml:box> </gml:boundedby> <citymember> <River> <gml:description>the river through Cambridge.</gml:description> <gml:name>cam</gml:name> <gml:centerlineof> <gml:linestring srsname=" url /gml/srs/epsg.xml#4326"> <gml:coord><gml:x>0</gml:x><gml:y>50</gml:y></gml:coord> <gml:coord><gml:x>70</gml:x><gml:y>60</gml:y></gml:coord> <gml:coord><gml:x>100</gml:x><gml:y>50</gml:y></gml:coord> </gml:linestring> </gml:centerlineof> </River> </citymember>... Dan Cornford GML Introduction 7/19

8 GML example continued (data) <citymember> <Road> <gml:name>m11</gml:name> <lineargeometry> <gml:linestring srsname=" url /gml/srs/epsg.xml#4326"> <gml:coord><gml:x>0</gml:x><gml:y>5.0</gml:y></gml:coord> <gml:coord><gml:x>20.6</gml:x><gml:y>10.7</gml:y></gml:coord> <gml:coord><gml:x>80.5</gml:x><gml:y>60.9</gml:y></gml:coord> </gml:linestring> </lineargeometry> <classification>motorway</classification> <number>11</number> </Road> </citymember> <citymember xlink:type="simple" xlink:title="trinity Lane" xlink:href=" gml:remoteschema="city.xsd#xpointer RoadType ])"/> <datecreated> </datecreated> </CityModel> Dan Cornford GML Introduction 8/19

9 GML2 schema example <?xml version="1.0" encoding="utf-8"?> <!-- File: city.xsd --> <schema targetnamespace=" xmlns:ex=" xmlns:xlink=" xmlns:gml=" xmlns=" elementformdefault="qualified" version="2.03"> <annotation> <appinfo>city.xsd v </appinfo> <documentation xml:lang="en"> GML schema for the Cambridge example </documentation> </annotation> <!-- import constructs from GML Feature (Geometry) schemas --> <import namespace=" schemalocation="feature.xsd"/> <!-- global element declarations --> <element name="citymodel" type="ex:citymodeltype" substitutiongroup="gml:_featurecollection" /> <element name="citymember" type="ex:citymembertype" substitutiongroup="gml:featuremember"/> <element name="road" type="ex:roadtype" substitutiongroup="ex:_cityfeature"/> <element name="river" type="ex:rivertype" substitutiongroup="ex:_cityfeature"/> <element name="mountain" type="ex:mountaintype" substitutiongroup="gml:_feature"/> Dan Cornford GML Introduction 9/19

10 <!-- a label for restricting membership in the CityModel collection --> <element name="_cityfeature" type="gml:abstractfeaturetype" abstract="true" substitutiongroup="gml:_feature"/> <!-- type definitions for city model --> <complextype name="citymodeltype"> <complexcontent> <extension base="gml:abstractfeaturecollectiontype"> <sequence> <element name="datecreated" type="month"/> </sequence> </extension> </complexcontent> </complextype> <complextype name="citymembertype"> <annotation> <documentation> A citymember is restricted to those features (or feature collections)that are declared equivalent to ex:_cityfeature. </documentation> </annotation> <complexcontent> <restriction base="gml:featureassociationtype"> <sequence minoccurs="0"> <element ref="ex:_cityfeature"/> </sequence> <attributegroup ref="gml:associationattributegroup"/> </restriction> </complexcontent> </complextype> Dan Cornford GML Introduction 10/19

11 <complextype name="rivertype"> <complexcontent> <extension base="gml:abstractfeaturetype"> <sequence> <element ref="gml:centerlineof"/> </sequence> </extension> </complexcontent> </complextype> <complextype name="roadtype"> <complexcontent> <extension base="gml:abstractfeaturetype"> <sequence> <element name="lineargeometry" type="gml:linestringpropertytype"/> <element name="classification" type="string"/> <element name="number" type="string"/> </sequence> </extension> </complexcontent> </complextype> </schema> This is a rather trivial and contrived example of a GML2 application schema! Dan Cornford GML Introduction 11/19

12 Structure of GML The abstract base types defined by the GML feature schema can be extended by the user. It is envisaged that some commonly used application schema will be defined for specific purposes. AbstractFeatureCollection Road * classification: string lineargeometry: LineStringPropertyType number: string * River centerlineof: LineStringPropertyType CityModel datecreated: month CityMember { _Feature: _CityFeature } AbstractFeature Dan Cornford GML Introduction 12/19

13 Feature-Property model of GML GML 2 applies a feature-property pattern in its schema. In GML 3.x feature becomes an object since a broader range of types is allowed, but the pattern is maintained. UpperCamelCase is used to define objects (and their types) e.g. Road, Bridge, Campus, Building. lowercamelcase is used to define properties (and their types). e.g. roadclass, bridgeconstruction, centrelineof, pos. In general, properties define the association role, and any objects contained in the property types the associated objects. Dan Cornford GML Introduction 13/19

14 Let s build an application schema! Dan Cornford GML Introduction 14/19

15 GML in use Both UK government and Ordinance Survey (MasterMap) committed to GML. All GIS companies have some GML presence e.g. some sell GML SVG converters. GML is more than a data sharing format in time will allow true distributed GIS. There are some problems for instance the size of GML files is typically 20 times bigger than specialist binary files compression. However, it seems likely that for some time large databases will remain in proprietary formats, being converted to XML (GML) on the fly. Dan Cornford GML Introduction 15/19

16 GML and the DNF The Digital National Framework (DNF) is a major project by the UK OS which replaces their detailed LandLine mapping product called MasterMap. Contains their most accurate data, and has topology (none existed in LandLine). Served in GML, which they have extended to include: query boxes (bounding rectangles); different feature types: topographic, cartographic and boundary; topological properties: polygons defined by oriented (clockwise / anti-clockwise) boundaries. Future may see this available on demand over the web (for a price!). Dan Cornford GML Introduction 16/19

17 GML 3.x GML 2.0 limited to simple geometries (points, poly-lines and polygons). GML 3.x includes: new geometry classes and topology; feature time stamps, histories and events (temporal GIS); units of measure; meta-data; coverages; observations. GML 3.x is not an end point, further development seems very likely. GML is still maturing in usage. Dan Cornford GML Introduction 17/19

18 GML and GIS Q: So will GML really revolutionise GIS? A: Probably not. BUT it does represent a much more open approach to data sharing / interoperability. Together with other innovations such as the catalogue services specification, which allows users to search for data on specific topics or regions GML may help overcome the biggest problem facing GIS finding and accessing data. Removing the data (time + cost) bottleneck may release GIS into a much wider user community. Keep an eye on this quickly developing technology... Dan Cornford GML Introduction 18/19

19 Summary The key points were: GML 2.x is an XML based language for describing simple geographic features. The OGC are the main innovators in this area, motivated by interoperability. GML is based on features, which can have certain properties (possibly multiple) you should be able to read and write simple GML. GML and other innovations may help overcome the data bottleneck. To use GML, application schema need to be created for each information community. Dan Cornford GML Introduction 19/19

Supporting GI standards with a model-driven architecture

Supporting GI standards with a model-driven architecture Supporting GI standards with a model-driven architecture Roy Grønmo SINTEF Telecom and Informatics Forskningsveien 1, Pb 124 Blindern N-0314 Oslo, Norway T+47 22 06 74 32 roy.gronmo@informatics.sintef.no

More information

Experiences of UML-to-GML Encoding

Experiences of UML-to-GML Encoding Experiences of UML-to-GML Encoding Roy Grønmo, Ida Solheim, David Skogan SINTEF Telecom and Informatics Forskningsveien 1, Pb 124 Blindern, N-0314 Oslo, Norway {roy.gronmo ida.solheim david.skogan}@informatics.sintef.no

More information

Integrating Telecom Outside Plant Systems Through the GML Standard

Integrating Telecom Outside Plant Systems Through the GML Standard Integrating Telecom Outside Plant Systems Through the GML Standard GERSON MIZUTA WEISS ELIANE ZAMBON VICTORELLI DIAS CPqD Telecom & IT Solutions - Rodovia Campinas-Mogi Mirim km 118,5 13086-902, Campinas,

More information

A Framework of Feature-Level Transportation Geospatial Data Sharing Systems

A Framework of Feature-Level Transportation Geospatial Data Sharing Systems A Framework of Feature-Level Transportation Geospatial Data Sharing Systems Zhong-Ren Peng, Ph.D. Director Center for Advanced Spatial Information Research Associate Professor Department of Urban Planning

More information

GML, WFS and SVG: A New Frontier of Internet GIS

GML, WFS and SVG: A New Frontier of Internet GIS GML, WFS and SVG: A New Frontier of Internet GIS Zhong-Ren Peng Director Center for Advanced Spatial Information Research Associate Professor Department of Urban Planning University of Wisconsin-Milwaukee

More information

OGC Simple Features (for SQL and XML/GML)

OGC Simple Features (for SQL and XML/GML) Daniel Wirz, Department of Geography - GIS Division, University of Zurich mailto:wirz@geo.unizh.ch January 2004 What,...? Introduction Develop publicly available geoprocessing specifications. Open interfaces

More information

Application Schema Mapping based on Ontology: An Approach for Geospatial Data Storage

Application Schema Mapping based on Ontology: An Approach for Geospatial Data Storage Application Schema Mapping based on Ontology: An Approach for Geospatial Data Storage Manoj Paul, S.K. Ghosh School of Information Technology Indian Institute of Technology, Kharagpur WB 721302. India

More information

OpenGIS Geography Markup Language (GML) Implementation Specification, version 2.1.2

OpenGIS Geography Markup Language (GML) Implementation Specification, version 2.1.2 1 of 66 OpenGIS Geography Markup Language (GML) Implementation Specification, version 2.1.2 OpenGIS Implementation Specification, 17 September 2002 OpenGIS Project Document Number 02-069 This version:

More information

Map Types Used. Topographical map (1:10 000, 1: ) Land Cadastre Map (1: ) Utility base map (1:500) Joint utility map (1:500)

Map Types Used. Topographical map (1:10 000, 1: ) Land Cadastre Map (1: ) Utility base map (1:500) Joint utility map (1:500) Map Types Used Topographical map (1:10 000, 1:200 000) Land Cadastre Map (1:1000-1-4000) Utility base map (1:500) Joint utility map (1:500) Detailed utility map (1:500) Town development plan (map) (1:1000-1:10000)

More information

OGC,, WMS and WFS. Strategic Goals. The Vision and the Mission

OGC,, WMS and WFS. Strategic Goals. The Vision and the Mission The Vision and the Mission OGC,, WMS and WFS Vision: Realization of the full societal, economic and scientific benefits of integrating electronic location resources into commercial and institutional processes

More information

UGML: an extension of GML to provide support for geographic objects with uncertain boundaries

UGML: an extension of GML to provide support for geographic objects with uncertain boundaries UGML: an extension of GML to provide support for geographic objects with uncertain boundaries Ashley Morris 1 and Frederick E. Petry 2 1 DePaul University School of Computer Science 243 S Wabash Ave, Chicago

More information

2D transformations: An introduction to the maths behind computer graphics

2D transformations: An introduction to the maths behind computer graphics 2D transformations: An introduction to the maths behind computer graphics Lecturer: Dr Dan Cornford d.cornford@aston.ac.uk http://wiki.aston.ac.uk/dancornford CS2150, Computer Graphics, Aston University,

More information

The cadastral data and standards based on XML in Poland

The cadastral data and standards based on XML in Poland The cadastral data and standards based on XML in Poland Jarosław Bydłosz, Piotr Parzych AGH University of Science and Technology Cracow, Poland 1 XML XML Extensible Markup Language Extensible Markup Language

More information

Dziennik Ustaw 37 Poz. 125 SCHEMAT GML

Dziennik Ustaw 37 Poz. 125 SCHEMAT GML Dziennik Ustaw 37 Poz. 125 1. Schemat GML dla EMUiA SCHEMAT GML

More information

LGBl. Nr. 135/ ausgegeben am 30. November von 11

LGBl. Nr. 135/ ausgegeben am 30. November von 11 LGBl. Nr. 135/2015 - ausgegeben am 30. November 2015 1 von 11 Anlage 2/2 zur Verordnung der Oö. Landesregierung, mit der das Moor bei Mitterhölbling in der Gemeinde St. Georgen am Walde als Naturschutzgebiet

More information

Open Geospatial Consortium Inc.

Open Geospatial Consortium Inc. Open Geospatial Consortium Inc. Date: 2004-12-06 Reference number of this OGC IP initiative document: Version: 0.0.4 Category: OGC Discussion Paper Editor: Clemens Portele OWS-2 Application Schema Development

More information

Tile Cache Developer Guide September 2012

Tile Cache Developer Guide September 2012 Tile Cache Developer Guide September 2012 Web Map Tile Service Developer Guide 1 Table of Contents List of Figures... 2 List of Tables... 3 1 Introduction... 4 1.1 About this Document... 4 1.2 Targeted

More information

FDO Data Access Technology at a Glance

FDO Data Access Technology at a Glance Autodesk Geospatial FDO Data Access Technology at a Glance Work seamlessly with your geospatial data whatever the format 1 The Challenge The growing need for openness and interoperability between traditional

More information

XML and Inter-Operability in Distributed GIS

XML and Inter-Operability in Distributed GIS XML and Inter-Operability in Distributed GIS KIM Do-Hyun and KIM Min-Soo, Republic of Korea Key words: GML(Geography Markup Language), Interoperability, GIS. SUMMARY Web GIS (Geographic Information Systems)

More information

GML DOCUMENTS: AN APPROACH FOR DATABASE SCHEMA DESIGN AND STORING

GML DOCUMENTS: AN APPROACH FOR DATABASE SCHEMA DESIGN AND STORING GML DOCUMENTS: AN APPROACH FOR DATABASE SCHEMA DESIGN AND STORING Leonardo G. Chaves 1 ), Jugurta Lisboa Filho 2 ), Marcus V. A. Andrade 2 ) Abstract GML (Geography Markup Language) uses the XML pattern

More information

XML TECHNOLOGIES IN WEB BASED GEOGRAPHIC INFORMATION SYSTEMS

XML TECHNOLOGIES IN WEB BASED GEOGRAPHIC INFORMATION SYSTEMS 212 Proceedings of the 4 th International Conference on Informatics and Information Technology XML TECHNOLOGIES IN WEB BASED GEOGRAPHIC INFORMATION SYSTEMS B. Predić, D. Stojanović Faculty of Electronic

More information

OGC - The Missing Link

OGC - The Missing Link Cadcorp SIS OGC - The Missing Link or Where have all the flowers services gone? Martin Daly Technical Director Cadcorp OGC Best Practice Seminar BGS 25 th January, 2007 Agenda UK OGC Exemplars Debunking

More information

INSPIRE: The ESRI Vision. Tina Hahn, GIS Consultant, ESRI(UK) Miguel Paredes, GIS Consultant, ESRI(UK)

INSPIRE: The ESRI Vision. Tina Hahn, GIS Consultant, ESRI(UK) Miguel Paredes, GIS Consultant, ESRI(UK) INSPIRE: The ESRI Vision Tina Hahn, GIS Consultant, ESRI(UK) Miguel Paredes, GIS Consultant, ESRI(UK) Overview Who are we? Introduction to ESRI Inc. and ESRI(UK) Presenters ArcGIS The ESRI Solution to

More information

The VirGIS Geographic Integration System

The VirGIS Geographic Integration System The VirGIS Geographic Integration System Omar Boucelma François-Marie Colonna Mehdi Essid LSIS-CNRS, Université Paul Cézanne - Aix-Marseille Avenue Escadrille Normandie-Niemen 13397 Marseille Cedex 20

More information

U.S. Census Bureau Spatial Data Storage and Topology in the Redesigned MAF/TIGER System Jennifer DeVore and Danielle Lessard March 10, 2005

U.S. Census Bureau Spatial Data Storage and Topology in the Redesigned MAF/TIGER System Jennifer DeVore and Danielle Lessard March 10, 2005 US Census Bureau Spatial Data Storage and Topology in the Redesigned MAF/TIGER System Jennifer DeVore and Danielle Lessard March 10, 2005 What is TIGER? Topologically Integrated Geocoding and Referencing

More information

Maps as Numbers. Maps as Numbers. Chapter 3: Maps as Numbers 14SND Getting Started with GIS Chapter 3

Maps as Numbers. Maps as Numbers. Chapter 3: Maps as Numbers 14SND Getting Started with GIS Chapter 3 Maps as Numbers Getting Started with GIS Chapter 3 Chapter 3: Maps as Numbers 3.1 Representing Maps as Numbers 3.2 Structuring Attributes 3.3 Structuring Maps 3.4 Why Topology Matters 3.5 Formats for GIS

More information

Open Geospatial Consortium

Open Geospatial Consortium Open Geospatial Consortium Date: 2010-10-12 Reference number of this document: Category: Public Discussion Paper Editor(s): Simon Jirka, Arne Bröring, Daniel Nüst OGC Sensor Observable Registry (SOR) Discussion

More information

Gebietsabgrenzung Koordinatenbezogene Grenzen des Naturschutzgebietes "Ettenau II" im GML-Standard

Gebietsabgrenzung Koordinatenbezogene Grenzen des Naturschutzgebietes Ettenau II im GML-Standard Anlage 2/1 zur Verordnung der Oö. Landesregierung, mit der das Gebiet "Ettenau II" als Naturschutzgebiet festgestellt und mit der ein Landschaftspflegeplan für dieses Gebiet erlassen wird, LGBl.Nr. 49/2011

More information

Reducing Consumer Uncertainty

Reducing Consumer Uncertainty Spatial Analytics Reducing Consumer Uncertainty Towards an Ontology for Geospatial User-centric Metadata Introduction Cooperative Research Centre for Spatial Information (CRCSI) in Australia Communicate

More information

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri

Leveraging OGC Services in ArcGIS Server. Satish Sankaran, Esri Yingqi Tang, Esri Leveraging OGC Services in ArcGIS Server Satish Sankaran, Esri Yingqi Tang, Esri GIS Creating and Managing Geo Information Products - Proprietary - Open Specifications - Standards Dissemination of Geo

More information

Welcome. to Pre-bid meeting. Karnataka State Spatial Data Infrastructure (KSSDI) Project, KSCST, Bangalore.

Welcome. to Pre-bid meeting. Karnataka State Spatial Data Infrastructure (KSSDI) Project, KSCST, Bangalore. Welcome to Pre-bid meeting Karnataka State Spatial Data Infrastructure (KSSDI) Project, KSCST, Bangalore. DEVELOPMENT OF KARNATAKA STATE SPATIAL DATA INFRASTRUCTURE (KSSDI) PROJECT Objective: To develop

More information

DIGGS V2.0.a Documentation

DIGGS V2.0.a Documentation Contact: David Burggraf Suite 1300, 409 Granville Street Vancouver, BC V6C 1T2 Canada Phone: +1 (604) 484-2750 DIGGS V2.0.a Documentation Date: June 30, 2012 Prepared for: DIGGS Table of contents Contents

More information

Open Geospatial Consortium Inc.

Open Geospatial Consortium Inc. Open Geospatial Consortium Inc. Date: 2016-12-05 Reference number of this OGC document: OGC 07-036r1 Version: 3.2.2 Category: OpenGIS Standard Editor: Clemens Portele OpenGIS Geography Markup Language

More information

Validating Web Feature Server Design Document

Validating Web Feature Server Design Document Validating Web Feature Server Design Document Submitted To: Program Manager GeoConnections Victoria, BC, Canada Submitted By: Jody Garnett Brent Owens Refractions Research Inc. Suite 400, 1207 Douglas

More information

An Evaluation of Geo-Ontology Representation Languages for Supporting Web Retrieval of Geographical Information

An Evaluation of Geo-Ontology Representation Languages for Supporting Web Retrieval of Geographical Information An Evaluation of Geo-Ontology Representation Languages for Supporting Web Retrieval of Geographical Information P. Smart, A.I. Abdelmoty and C.B. Jones School of Computer Science, Cardiff University, Cardiff,

More information

Gebietsabgrenzung Koordinatenbezogene Grenzen des Europaschutzgebiets "Pfeiferanger" im GML-Standard

Gebietsabgrenzung Koordinatenbezogene Grenzen des Europaschutzgebiets Pfeiferanger im GML-Standard Anlage 2 zur Verordnung der Oö. Landesregierung, mit der das Gebiet "Pfeiferanger" als Europaschutzgebiet bezeichnet und mit der ein Landschaftspflegeplan für dieses Gebiet erlassen wird, LGBl.Nr. 22/2011

More information

Model podataka katastra nekretnina - GML shema

Model podataka katastra nekretnina - GML shema Model podataka katastra nekretnina - GML shema April / travanj 2008. godine 1/47

More information

Geography Markup Language (GML) simple features profile

Geography Markup Language (GML) simple features profile Open Geospatial Consortium Date: 2010-10-07 Reference number of this document: OGC 10-100r2 Version: 2.0 Category: OpenGIS Implementation Standard Profile Editors: Linda van den Brink, Clemens Portele,

More information

Validation Language. GeoConnections Victoria, BC, Canada

Validation Language. GeoConnections Victoria, BC, Canada Validation Language Submitted To: Program Manager GeoConnections Victoria, BC, Canada Submitted By: Jody Garnett Brent Owens Refractions Research Inc. Suite 400, 1207 Douglas Street Victoria, BC, V8W-2E7

More information

Atlas WFS Recordings Service

Atlas WFS Recordings Service Version EN160212 1.12 Final Date: 12 February 2016 2 Version history Version Status Date Details of change Author(s) 1.0 Final 15 Oct 2010 Initial version 1.1 Final 1 Nov 2011 Version 1.1 of schema: support

More information

Using ESRI data in Autodesk ISD Products

Using ESRI data in Autodesk ISD Products GI13-3 Using ESRI data in Autodesk ISD Products 1.5 hr. Class 02-Dec-03 3:30pm - 5:00pm Session Description: We will focus on using data in a variety of ESRI formats within the Autodesk GIS product line,

More information

The Interoperability of Location-Tracking Service based on Geographic Information

The Interoperability of Location-Tracking Service based on Geographic Information The Interoperability of Location-Tracking Service based on Geographic Information Do Hyun KIM and Byung Tae JANG, Korea Key words: Interoperability, Location-Tracking, GIS SUMMARY Tracking Service based

More information

Standards, GML and AIXM. Dr. David Burggraf Vice President Galdos Systems Inc

Standards, GML and AIXM. Dr. David Burggraf Vice President Galdos Systems Inc Standards, and AIXM Dr. David Burggraf Vice President Galdos Systems Inc Copyright Galdos Systems Inc. May 6, 2010 Geography Markup Language: What is it? A modeling language for geographic features A set

More information

INFACTORY : A RESTFUL API SERVER FOR EASILY CREATING INDOORGML

INFACTORY : A RESTFUL API SERVER FOR EASILY CREATING INDOORGML INFACTORY : A RESTFUL API SERVER FOR EASILY CREATING INDOORGML Hyemi Jeong, Hyung-gyu Ryoo, Ki-Joune Li Dept. of Computer Science&Engineering, Pusan National University, Kumjeong-Gu, 46241, Pusan, South

More information

Schemat aplikacyjny GML państwowego systemu odniesień przestrzennych

Schemat aplikacyjny GML państwowego systemu odniesień przestrzennych Dziennik Ustaw 41 Poz. 1247 Załącznik nr 6 Schemat aplikacyjny GML państwowego systemu odniesień przestrzennych

More information

ENCODING AND DECODING OF PLANAR MAPS THROUGH CONFORMING DELAUNAY TRIANGULATIONS

ENCODING AND DECODING OF PLANAR MAPS THROUGH CONFORMING DELAUNAY TRIANGULATIONS ENCODING AND DECODING OF PLANAR MAPS THROUGH CONFORMING DELAUNAY TRIANGULATIONS Edward Verbree Delft University of Technology, Research Institute OTB, Section GIS technology, Jaffalaan 9, 2628 BX, Delft,

More information

International Organization for Standardization Technical Committee 211 (ISO/TC211)

International Organization for Standardization Technical Committee 211 (ISO/TC211) Esri Support for Geospatial Standards: Open Geospatial Consortium (OGC) International Organization for Standardization Technical Committee 211 (ISO/TC211) An Esri White Paper April 2015 Copyright 2015

More information

UPDATING OF VECTOR DATABASES AT THE INSTITUT CARTOGRAFIC DE CATALUNYA

UPDATING OF VECTOR DATABASES AT THE INSTITUT CARTOGRAFIC DE CATALUNYA ISPRS Archive Vol. XXXVIII, Part 4-8-2-W9, "Core Spatial Databases - Updating, Maintenance and Services - from Theory to Practice", Haifa, Israel, 2010 UPDATING OF VECTOR DATABASES AT THE INSTITUT CARTOGRAFIC

More information

METAINFORMATION INFRASTRUCTURE FOR GEOSPATIAL INFORMATION

METAINFORMATION INFRASTRUCTURE FOR GEOSPATIAL INFORMATION 2010/2 PAGES 1 7 RECEIVED 15. 6. 2009 ACCEPTED 2. 3. 2010 T. KLIMENT METAINFORMATION INFRASTRUCTURE FOR GEOSPATIAL INFORMATION ABSTRACT Tomáš KLIMENT email: tomas.kliment@stuba.sk Research field: Spatial

More information

GEOGRAPHIC INFORMATION IN THE SOCIAL WEB Meta-data and information communities

GEOGRAPHIC INFORMATION IN THE SOCIAL WEB Meta-data and information communities GEOGRAPHIC INFORMATION IN THE SOCIAL WEB Meta-data and information communities Patrick Maué Institute for Geoinformatics (IFGI) pajoma@uni-muenster.de Outline GI in the Web Challenges User feedback 2 Integrated

More information

A GML-Based Open Architecture for Building A Geographical Information Search Engine Over the Internet

A GML-Based Open Architecture for Building A Geographical Information Search Engine Over the Internet A GML-Based Open Architecture for Building A Geographical Information Search Engine Over the Internet Jianting Zhang Le Gruenwald School of Computer Science The University of Oklahoma U.S.A. ggruenwald@ou.edu

More information

The AAA Model as Contribution to the Standardisation of the Geoinformation Systems in Germany

The AAA Model as Contribution to the Standardisation of the Geoinformation Systems in Germany The AAA Model as Contribution to the Standardisation of the Geoinformation Systems in Germany Markus SEIFERT, Germany Key words: ISO, CEN, OGC, AdV, Spatial Data Infrastructure SUMMARY Germany is a classic

More information

Reducing Consumer Uncertainty Towards a Vocabulary for User-centric Geospatial Metadata

Reducing Consumer Uncertainty Towards a Vocabulary for User-centric Geospatial Metadata Meeting Host Supporting Partner Meeting Sponsors Reducing Consumer Uncertainty Towards a Vocabulary for User-centric Geospatial Metadata 105th OGC Technical Committee Palmerston North, New Zealand Dr.

More information

GML Topology Data Storage Schema Design

GML Topology Data Storage Schema Design GML Data Storage Schema Design Paper: GML Data Storage Schema Design Yuzhen Li, Jianming Lu, Jihong Guan, Mingying Fan, Ayman Haggag, and Takashi Yahagi Graduate School of Science and Technology, Chiba

More information

Spatial Data on the Web

Spatial Data on the Web Spatial Data on the Web Tools and guidance for data providers The European Commission s science and knowledge service W3C Data on the Web Best Practices 35 W3C/OGC Spatial Data on the Web Best Practices

More information

SPATIAL DATA STORAGE AND TOPOLOGY IN THE REDESIGNED MAF/TIGER SYSTEM

SPATIAL DATA STORAGE AND TOPOLOGY IN THE REDESIGNED MAF/TIGER SYSTEM SPATIAL DATA STORAGE AND TOPOLOGY IN THE REDESIGNED MAF/TIGER SYSTEM David Galdi Abstract: Since the late 1980 s, the Geography Division has utilized the TIGER system to provide geographic support for

More information

A GML SCHEMA MAPPING APPROACH TO OVERCOME SEMANTIC HETEROGENEITY IN GIS

A GML SCHEMA MAPPING APPROACH TO OVERCOME SEMANTIC HETEROGENEITY IN GIS A GML SCHEMA MAPPING APPROACH TO OVERCOME SEMANTIC HETEROGENEITY IN GIS Manoj Paul, S. K. Ghosh School of Information Technology, Indian Institute of Technology, Kharagpur 721302, India - (mpaul, skg)@sit.iitkgp.ernet.in

More information

GIS Data Models. 4/9/ GIS Data Models

GIS Data Models. 4/9/ GIS Data Models GIS Data Models 1 Conceptual models of the real world The real world can be described using two conceptually different models: 1. As discrete objects, possible to represent as points, lines or polygons.

More information

GeoSciML: development of a generic GeoScience Markup Language

GeoSciML: development of a generic GeoScience Markup Language GeoSciML: development of a generic GeoScience Markup Language Marcus Sen 1 and Tim Duffy 2 British Geological Survey 1, Kingsley Dunham Centre, Nicker Hill, Keyworth, Nottingham, NG12 5GG. Corresponding

More information

An Interoperable GIS solution for the public administration (extended abstract)

An Interoperable GIS solution for the public administration (extended abstract) An Interoperable GIS solution for the public administration (extended abstract) Artur Rocha, João Correia Lopes, Luís Bártolo, Rui Chilro INESC-Porto, Rua Dr. Roberto Frias, N o 378 4200-465 PORTO, Portugal,

More information

Integrating Heterogeneous Traveler Information Using Web Service. Shanzhen Yi

Integrating Heterogeneous Traveler Information Using Web Service. Shanzhen Yi Integrating Heterogeneous Traveler Information Using Web Service Shanzhen Yi Department of Civil Engineering National University of Singapore 10 Kent Ridge Crescent, Singapore 117576 Tel: (65)-6874-5035

More information

Testbed-12 2D Test Dataset Implementation with Documentation

Testbed-12 2D Test Dataset Implementation with Documentation Testbed-12 2D Test Dataset Implementation with Documentation Table of Contents 1. Introduction............................................................................. 2 2. Feature Types in GML 3.2

More information

Open GIS Consortium Inc.

Open GIS Consortium Inc. Open GIS Consortium Inc. Date: 2003-10-16 Reference number of this OpenGIS document: OGC 03-088r1 Version: 0.1.0 Category: OpenGIS Discussion Paper Editor: Arliss Whiteside OGC Web Services Common Implementation

More information

GIS Data Collection. This chapter reviews the main methods of GIS data capture and transfer and introduces key practical management issues.

GIS Data Collection. This chapter reviews the main methods of GIS data capture and transfer and introduces key practical management issues. 9 GIS Data Collection OVERVIEW This chapter reviews the main methods of GIS data capture and transfer and introduces key practical management issues. It distinguishes between primary (direct measurement)

More information

Spatio-Temporal Data Exchange Standards

Spatio-Temporal Data Exchange Standards 2003 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or

More information

Esri Support for Geospatial Standards

Esri Support for Geospatial Standards APRIL 2017 ArcGIS Is Open and Interoperable Esri Support for Geospatial Standards Copyright 2017 Esri All rights reserved. Printed in the United States of America. The information contained in this document

More information

Gaps in Static Analysis Tool Capabilities. Providing World-Class Services for World-Class Competitiveness

Gaps in Static Analysis Tool Capabilities. Providing World-Class Services for World-Class Competitiveness Gaps in Static Analysis Tool Capabilities 1 Overview Gaps in Static Analysis tools as identified during the evaluation of five (5) commercially available static analysis tools Collaborative effort between

More information

M. Andrea Rodríguez-Tastets. I Semester 2008

M. Andrea Rodríguez-Tastets. I Semester 2008 M. -Tastets Universidad de Concepción,Chile andrea@udec.cl I Semester 2008 Outline refers to data with a location on the Earth s surface. Examples Census data Administrative boundaries of a country, state

More information

The New Electronic Chart Product Specification S-101: An Overview

The New Electronic Chart Product Specification S-101: An Overview The New Electronic Chart Product Specification S-101: An Overview Julia Powell Marine Chart Division, Office of Coast Survey, NOAA 1315 East West Hwy, Silver Spring, MD 20715 Julia.Powell@noaa.gov 301-713-0388

More information

ECP-2007-GEO OneGeology-Europe. Annex 1: Cookbook

ECP-2007-GEO OneGeology-Europe. Annex 1: Cookbook ECP-2007-GEO-317001 OneGeology-Europe Annex 1: Cookbook for creating multilingual metadata records using the OneGeology-Europe Metadata system (MIcKA) Authors: Lucie Kondrová, Robert Tomas, Štěpán Kafka

More information

Overview of Projections: From a 3D world to a 2D screen.

Overview of Projections: From a 3D world to a 2D screen. Overview of Projections: From a 3D world to a 2D screen. Lecturer: Dr Dan Cornford d.cornford@aston.ac.uk http://wiki.aston.ac.uk/dancornford CS2150, Computer Graphics, Aston University, Birmingham, UK

More information

Tutorial International Standards. Web Map Server (WMS) & Web Feature Server (WFS) Overview

Tutorial International Standards. Web Map Server (WMS) & Web Feature Server (WFS) Overview ISO/TC 211 17 th Plenary & Associated Meetings Berlin, Germany, DIN Institute / 2003-10-31 Advisory Group on Outreach Tutorial International Standards Web Map Server (WMS) & Web Feature Server (WFS) Overview

More information

Storing and using scale-less topological data efficiently in a clientserver DBMS environment

Storing and using scale-less topological data efficiently in a clientserver DBMS environment Storing and using scale-less topological data efficiently in a clientserver DBMS environment Maarten Vermeij, Peter van Oosterom, Wilko Quak and Theo Tijssen Faculty of Civil Engineering and Geosciences,

More information

3D Validation of CityGML

3D Validation of CityGML 3D Validation of CityGML Hugo Ledoux GIS technology group 10 March 2009 CityGML Information model for exchange and storage of 3D city models Based on GML (thus XML-based) Now an international standard

More information

Open Geospatial Consortium

Open Geospatial Consortium Open Geospatial Consortium Date: 28-March-2011 Reference number of this document: 10-195 Editors: OGC Aviation Domain Working Group Requirements for Aviation Metadata Copyright 2011 Open Geospatial Consortium.

More information

E-reporting: road to implementation

E-reporting: road to implementation E-reporting: road to implementation Patrick van Hooydonk European Topic Centre on Air pollution and Climate change Mitigation (ETC/ACM) 5 th pilot meeting Copenhagen, point of view from an ETC data collector

More information

OGC InfraGML 1.0: Part 0 LandInfra Core - Encoding Standard

OGC InfraGML 1.0: Part 0 LandInfra Core - Encoding Standard Open Geospatial Consortium Submission Date: 2017-03-24 Approval Date: 2017-06-02 Publication Date: 2017-08-16 External identifier of this OGC document: http://www.opengis.net/doc/standard/infragml/part0/1.0

More information

Gebietsabgrenzung Koordinatenbezogene Grenzen des Europaschutzgebietes "Tal der Kleinen Gusen" im GML-Standard

Gebietsabgrenzung Koordinatenbezogene Grenzen des Europaschutzgebietes Tal der Kleinen Gusen im GML-Standard Anlage 3/1 zur Verordnung der Oö. Landesregierung, mit der das Gebiet "Tal der Kleinen Gusen" als Europaschutzgebiet bezeichnet und mit der ein Landschaftspflegeplan für dieses Gebiet erlassen wird. LGBl.Nr.

More information

EVALUATING THE OPENGIS WEB FEATURE SERVICES PROTOCOL WITH THE CASE STUDY DISTRIBUTED CADASTRAL TRANSACTIONS 1

EVALUATING THE OPENGIS WEB FEATURE SERVICES PROTOCOL WITH THE CASE STUDY DISTRIBUTED CADASTRAL TRANSACTIONS 1 EVALUATING THE OPENGIS WEB FEATURE SERVICES PROTOCOL WITH THE CASE STUDY DISTRIBUTED CADASTRAL TRANSACTIONS 1 Thijs BRENTJENS (1), Marian de Vries (2), Wilko Quak (2), Tom Vijlbrief (3) and Peter van Oosterom

More information

SEXTANT 1. Purpose of the Application

SEXTANT 1. Purpose of the Application SEXTANT 1. Purpose of the Application Sextant has been used in the domains of Earth Observation and Environment by presenting its browsing and visualization capabilities using a number of link geospatial

More information

PROGRESSIVE TRANSMISSION OF VECTOR MAP ON THE WEB

PROGRESSIVE TRANSMISSION OF VECTOR MAP ON THE WEB PROGRESSIVE TRANSMISSION OF VECTOR MAP ON THE WEB AI Bo a, *, AI Tinghua b, TANG Xinming c a Geomatics College, Shandong University of Science and Technology, Qingdao, China - aibo@sdust.edu.cn b School

More information

IHO S-100 Framework. The Essence. WP / Task: Date: Author: hansc/dga Version: 0.6. Document name: IHO S-100 Framework-The Essence

IHO S-100 Framework. The Essence. WP / Task: Date: Author: hansc/dga Version: 0.6. Document name: IHO S-100 Framework-The Essence WP / Task: 4.4.1. Date: 2015-09-25 Author: hansc/dga Version: 0.6 Document name: IHO S-100 Framework-The Essence IHO S-100 Framework Version 0.6 The Essence Document information More recent versions of

More information

Regarding the quality attributes, the architecture of the system must be:

Regarding the quality attributes, the architecture of the system must be: The SDSS System Overview This chapter gives an overview of the software architecture of the RiskChanges SDSS system. One of the objectives within the project is the development of a SDSS system for probabilistic

More information

Web Services for Geospatial Mobile AR

Web Services for Geospatial Mobile AR Web Services for Geospatial Mobile AR Introduction Christine Perey PEREY Research & Consulting cperey@perey.com Many popular mobile applications already use the smartphone s built-in sensors and receivers

More information

The semantic parsing for GML based on SIDB

The semantic parsing for GML based on SIDB The semantic parsing for GML based on SIDB DongLaiJiao* a, ShuLiangZhang a,guonianlv a,xiaoliyang b a Jiangsu Provincial Key Laboratory of Geographical Information Science, Nanjing Normal University, Nanjing

More information

Feature Enhancements by Release

Feature Enhancements by Release Autodesk Map Feature Enhancements by Release This document highlights the feature enhancements that have occurred with each release of Autodesk Map software from Release 4 (2000i) through the current 2004

More information

Setting up the Ihlet Social Cadastre

Setting up the Ihlet Social Cadastre Setting up the Ihlet Social Cadastre Ihlet KHT Dr. Attila Molnár, GI consultant Bela Jarolics Rome, Italy TOPICS Goal of the project Architecture Database Solution Standards, communication Metadata Security

More information

Framework specification, logical architecture, physical architecture, requirements, use cases.

Framework specification, logical architecture, physical architecture, requirements, use cases. Title: A5.2-D3 3.3.1 Alignment Editor Specification Editor(s)/Organisation(s): Thorsten Reitz (Fraunhofer IGD) Contributing Authors: Thorsten Reitz (Fraunhofer IGD), Marian de Vries (TUD) References: A1.8-D4

More information

Open Geospatial Consortium

Open Geospatial Consortium Open Geospatial Consortium Approval Date: 2013-01-18 Posted Date: 2013-02-05 Reference number of this document: Reference URL for this document: www.opengeospatial.net/def/doc-type/per/cci-conflation-provenance

More information

Reporting of modelled data under the AQD IPR for e-reporting

Reporting of modelled data under the AQD IPR for e-reporting Reporting of modelled data under the AQD IPR for e-reporting RETROSPECTIVE OF PILOT TESTING IN 2012 & MODELLING DATA Tony Bush 6 th pilot meeting Copenhagen 8-10 October 2012 Introduction Where does modelled

More information

Marushka Server. Product Specification

Marushka Server. Product Specification Introductory Information Product Marushka Server represents a new generation of tools (devices) for publication and use of GIS data in the Internet and intranet. It is built on component technology in.net

More information

Commercial software from the ESRI company to create display and produce maps

Commercial software from the ESRI company to create display and produce maps OCEANIDES USER MANUAL & DATABASE DESCRIPTION Contract No. Project Deliverable Document Title Document File Name Reference EVK2-CT-2002-00177 Database description and user manual User manual & database

More information

Specific requirements on the da ra metadata schema

Specific requirements on the da ra metadata schema Specific requirements on the da ra metadata schema Nicole Quitzsch GESIS - Leibniz Institute for the Social Sciences Workshop: Metadata and Persistent Identifiers for Social and Economic Data 07-08 May

More information

Challenges in Geospatial Data Harmonisation:

Challenges in Geospatial Data Harmonisation: Challenges in Geospatial Data Harmonisation: Examples and Approaches from the HUMBOLDT project AGILE Workshop 2009 Astrid Fichtinger, Eva Klien, Christine Giger Overview The HUMBOLDT Project Data harmonisation

More information

GEO-SPATIAL METADATA SERVICES ISRO S INITIATIVE

GEO-SPATIAL METADATA SERVICES ISRO S INITIATIVE GEO-SPATIAL METADATA SERVICES ISRO S INITIATIVE Pushpalata B Shah, Navita J Thakkar Space Applications Centre (ISRO) Ahmedabad 380 015 - pushpa@sac.isro.gov.in Commission IV, Working Group IV/5 KEYWORDS:

More information

CityGML Experience: From Validation to Database Management. Kean Huat SOON, Eric LOW, Zhen Hao NG and Victor KHOO

CityGML Experience: From Validation to Database Management. Kean Huat SOON, Eric LOW, Zhen Hao NG and Victor KHOO Experience: From Validation to Database Management Kean Huat SOON, Eric LOW, Zhen Hao NG and Victor KHOO Outline : WOG 3D National Topographic Mapping Project Validation Process Management of Data in DBMS

More information

ADVANCED GEOGRAPHIC INFORMATION SYSTEMS Vol. II - Geospatial Interoperability : The OGC Perspective Open Geospatial Consortium, Inc.

ADVANCED GEOGRAPHIC INFORMATION SYSTEMS Vol. II - Geospatial Interoperability : The OGC Perspective Open Geospatial Consortium, Inc. GEOSPATIAL INTEROPERABILITY: THE OGC PERSPECTIVE Open Open Geospatial Consortium, Wayland, MA, USA Keywords: geographic information systems, geospatial services, interoperability, interface specification,

More information