How I learned to love XML. Peter Laulund National Survey and Cadastre

Size: px
Start display at page:

Download "How I learned to love XML. Peter Laulund National Survey and Cadastre"

Transcription

1 How I learned to love XML Peter Laulund National Survey and Cadastre

2 Agenda KMS and INSPIRE About XML/GML Writing XML with FME Templates Schema mapping, semantic Schema mapping, geometry Workflow design

3 INSPIRE INSPIRE is a European initiative to create a common SDI Specific datasets has to be available in a harmonized way KMS is the National contact point KMS has five Annex 1 datasets I will talk about XML not INSPIRE

4 KMS datasets Transport Networks Hydrography Cadastral Parcels Geographical Names Administrative Units Documentation - Warning: getting through the PDF and the related XSD(s) is a tough read! Inspire-foss

5 FME and XML

6 XML XML: extensible Markup Language Syntax used to describe data GML: Geography Markup Language XML dialect for describing geography GML 2, GML 3.1.1, GMLSF, GML XSD: XML Schema Definition XML dialect for describing the contend of xml files

7 XML - example <?xml version="1.0" encoding="utf-8"?> <!-- oprettet af Pel, kms, 3. august > <venner xmlns:p=" xmlns:d=" <p:person id="345"> <p:navn>peter Laulund</p:navn> <p:adresse>sognegårds alle 54</p:adresse> <p:født> <d:dato> <d:dag>3</d:dag> <d:måned>maj</d:måned> <d:år>1957</d:år> <d:klokken/> </d:dato> </p:født> <p:telefon type="fastnet"> </p:telefon> <p:telefon type="mobil"> </p:telefon> <p:giftmed href="#445"/> <p:arbjedsgiver/> </p:person> </venner>

8 FME and XML FME reads and writes XML/GML Converts geometry to gml XMLSampleGenerator XMLTemplater XMLValidator XMLFormater

9 XMLTemplater An XML template is an XML document with XQuery functions <gn:text>{fme:get-attribute("name")}</gn:text> <au:geometry> {fme:get-xml-attribute("gml_geom")} </au:geometry> {fme:get-xml-list-attribute("level{}.xml")} <gml:featuremembers> {fme:process-features("feature")} </gml:featuremembers>

10 XMLTemplater The document may be loaded from an attribute a file entered into the transformer We use a file that is loaded into an attribute

11

12 Templates Use the XMLSampelGenerator to create the template Edit the template in a text editor Delete Add XQuery function calls Use XMLValidator to evaluate the result Use XMLFormater to make it look pretty

13 Writing INSPIRE GML

14 Challenges Five datasets some with more than one feature type Data for download from ftp don with FME WFS with Snowflake WMS with? All data in one Oracle database

15 Dataflow in KMS Oracle *.GML Read Write Schema Mapping - semantik Sql FME tools Tcl Schema Mapping - geometry Aggregate SetTraits OGCGeometry Transform to xml XMLTemplate XMLValidate XMLFormater

16 Schema mapping Schema mapping are basic FME functionality Add or remove attributes Change feature types Alter domain values All our data are in an Oracle database we will therefore use sql for schema mapping

17 Schema mapping FeatureType : oldattribute : newattribute REGION : REGIONKODE : nationalcode REGION : DAGI_ID : localid REGION : FEAT_ID : localidgeom REGION : TIMEOF_CRE : beginlifespanversion REGION : FEAT_TYPE : nationallevelname REGION : REGIONNAVN : name REGION : DQ_RESPONS : sourceofname FeatureType : newattribute : value REGION : namespace : dk.kms.au REGION : namespacegeom : dk.kms.au.geom REGION : country : DK REGION : gmltemplate : AdministrativeUnit REGION : nationallevel : 2ndOrder

18 Schema mapping Europavej Primærvej Sekundærvej Anden vigtig vej Større lokalvej Lokalvej Indkørselsvej Anden Read vej Hovedsti Cykelsti langs vej Sti, diverse Trafikvej-Gennemfart Trafikvej-Fordeling Lokalvej-Primær Lokalvej-Sekundær Lokalvej-Tertiær Ikke tildelt? mainroad firstclass secondclass thirdclass fourthclass fifthclass sixthclass seventhclass eighthclass ninthclass Write

19 inspireid All features must have an inspireid, it is a complex type made of A namespace - <country>.<organisation>.<dataset> Id the features database id Version null, sequence or timestamp <cp:inspireid> <base:identifier> <base:localid> {fme:get-attribute("localid")} </base:localid> <base:namespace> {fme:get-attribute("namespace")} </base:namespace> <base:versionid> {fme:get-attribute("beginlifespanversion")} </base:versionid> </base:identifier> </cp:inspireid> <base:identifier> <base:localid>595944</base:localid> <base:namespace>dk.kms.tn.roadnode</base:namespace> <base:versionid> t18:09:26</base:versionid> </base:identifier>

20 Example - geometry Coordinate System: ` EPSG:25832' Geometry Type: IFMEPoint Number of Geometry Traits: 1 GeometryTrait(string): `gml_id' has value `dk.kms.tn.roadnode ' Coordinate Dimension: 3 GML_3.2.1, gml_geom) <net:geometry> {fme:get-xml-attribute("gml_geom")} </net:geometry> <net:geometry> <gml:point gml:id="dk.kms.tn.roadnode srsname="epsg:25832" srsdimension="3"> <gml:pos> </gml:pos> </gml:point> </net:geometry>

21 gml:id gmi:id is mandatory Unique within the document Must start with a letter In FME default is an UUID Build the same way as inspireid <namespace>.<id>.<timestamp>

22 gml:id NAVNE - ID - FraDato - Navn X MONTAGE - ID - FraDato - Geometri <gn:geometry> <gml:multicurve gml:id="dk.kms.gn " srsname="epsg:25832" srsdimension="2"> <gml:curvemember> <gml:linestring gml:id="dk.kms.gn.geom t085805"> <gml:poslist> </gml:linestring> </gml:curvemember> <gml:curvemember> <gml:linestring gml:id="dk.kms.gn.geom t085805"> <gml:poslist> </gml:linestring> </gml:curvemember>... </gn:geometry>

23 FME script design

24 Design When we are designing an FME script we should reflect on Schema mapping FME or database Generic or specific Design of dataflow design patterns Pre- and post processing Existing system architecture

25 Dataflow design

26 Dataflow design

27 Dataflow design

28 Conclusion design Testing shows that design #3 is best Design #1 will not work with big datasets because of the list It use 10 to 15 percent less memory than #2 The timing is identical to #2 We can validate individual features

29 Conclusion After the first tests it been easy to work with templates Schema mapping in Oracle with sql A generic solution based on Design #3 Templates as individual files read into an attribute Only problem is FME can t handle big datasets ( features) yet

30 Peter Laulund Rentemestervej 8 DK-2400 Copenhagen NV Denmark Phone: pelau@kms.dk Questions?

7/13/2011. Make Data Available in a standard format through standard services. INSPIRE Initiative. FME 2011: Makes you the Superhero!

7/13/2011. Make Data Available in a standard format through standard services. INSPIRE Initiative. FME 2011: Makes you the Superhero! INSPIRE Initiative Delivering Access to Harmonised Spatial Data June 2011 Don Murray President & Co-founder, Safe Software Mark Döring Project Manager con terra Make Data Available in a standard format

More information

Implementing air quality e-reporting

Implementing air quality e-reporting Implementing air quality e-reporting Core requirements by September 2014 Jaume Targa 11 th AQ E-Reporting IPR Pilot meeting Copenhagen, EEA Content Core requirements by Sept 2014 Air Quality Zones (B)

More information

Methodological approach for cross-theme harmonization of Polish spatial data sets the case study for the Annex I themes

Methodological approach for cross-theme harmonization of Polish spatial data sets the case study for the Annex I themes Methodological approach for cross-theme harmonization of Polish spatial data sets the case study for the Annex I themes Elżbieta Bielecka, Agnieszka Zwirowicz-Rutkowska, Alina Kmiecik, Marek Brylski, Magdalena

More information

Introduction to XML user guide

Introduction to XML user guide EEA- ETC/ACM 9 th & 10 th of February 2016 Workshop "Developing your national Air Quality e- Reporting System post- AQUI, Copenhagen Introduction to XML user guide Documentation on e- Reporting http://www.eionet.europa.eu/aqportal/guidelines

More information

INSPIRE data specifications Advanced. Stijn Keijers (SADL KU Leuven)

INSPIRE data specifications Advanced. Stijn Keijers (SADL KU Leuven) 1 INSPIRE data specifications Advanced Stijn Keijers (SADL KU Leuven) Modules 2 1. Understanding INSPIRE data specifications 2. Introduction UML 3. Introduction XML/GML 4. Transforming data into INSPIRE

More information

Christian Ansorge 27th April CDDA webinar 27th April Linked Approach as reporting mechanism

Christian Ansorge 27th April CDDA webinar 27th April Linked Approach as reporting mechanism Christian Ansorge 27th April 2017 CDDA webinar 27th April 2017 Linked Approach as reporting mechanism Generic Linked Approach Scope Background and motivation for reporting reusing INSPIRE Introduction

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

The coastal data in the regional and national territorial data repertory. Genova 24 Aprile 2012 Anna Cerrato Regione Liguria

The coastal data in the regional and national territorial data repertory. Genova 24 Aprile 2012 Anna Cerrato Regione Liguria The coastal data in the regional and national territorial data repertory Genova 24 Aprile 2012 Anna Cerrato Regione Liguria www.rndt.gov.it Experience from data providers in using transformation tools

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

AQD IPR pilot study programme on e-reporting

AQD IPR pilot study programme on e-reporting AQD IPR pilot study programme on e-reporting A quick start guide working with the e-reporting schemata Tony Bush 4 th pilot meeting Copenhagen 15-16 March 2012 Introduction What to worry about first if

More information

Introduction to INSPIRE. Network Services

Introduction to INSPIRE. Network Services Introduction to INSPIRE. Network Services European Commission Joint Research Centre Institute for Environment and Sustainability Digital Earth and Reference Data Unit www.jrc.ec.europa.eu Serving society

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

Implementing CDDA Based on the INSPIRE Protected Sites Transformation Workflow

Implementing CDDA Based on the INSPIRE Protected Sites Transformation Workflow Implementing CDDA Based on the INSPIRE Protected Sites Transformation Workflow María Cabello Pedro Mendive Summary Data transformation GML issues Validation and testing Tools Open issues Lessons learned

More information

Distributing Data via XML from ArcGIS. Oct 2011

Distributing Data via XML from ArcGIS. Oct 2011 Distributing Data via XML from ArcGIS Oct 2011 Mark Stoakes Manager, ProServices Safe Software Dean Hintz Senior Analyst Safe Software Interoperability Data Challenge XML Reading or Writing XML CIM / Multispeak

More information

Testing tools to create INSPIRE gml data: lesson learned. Florence Couvreur

Testing tools to create INSPIRE gml data: lesson learned. Florence Couvreur Testing tools to create INSPIRE gml data: lesson learned Florence Couvreur Agenda Testing tools to create INSPIRE 1. Background 2. Testing turnkey solution 3. Testing Home-made solution 4. Testing ETL

More information

Open Geospatial Consortium. OGC InfraGML 1.0: Part 7 LandInfra Land Division - Encoding Standard

Open Geospatial Consortium. OGC InfraGML 1.0: Part 7 LandInfra Land Division - Encoding Standard Open Geospatial Consortium Submission Date: 2017-06-14 Approval Date: 2017-08-14 Publication Date: 2017-09-22 External identifier of this OGC document:

More information

DATA VALIDATION AGAINST SCHEMA AND SOURCE DATA

DATA VALIDATION AGAINST SCHEMA AND SOURCE DATA DATA VALIDATION AGAINST SCHEMA AND SOURCE DATA didier.bouteloup@ign.fr; dominique.laurent@ign.fr 3 June 2016 ign.fr Context IGN has performed data validation twice On test INSPIRE data (2013-2014) On ELF

More information

Application of the Catalogue and Validator tools in the context of Inspire Alberto Belussi, Jody Marca, Mauro Negri, Giuseppe Pelagatti

Application of the Catalogue and Validator tools in the context of Inspire Alberto Belussi, Jody Marca, Mauro Negri, Giuseppe Pelagatti Application of the Catalogue and Validator tools in the context of Inspire Alberto Belussi, Jody Marca, Mauro Negri, Giuseppe Pelagatti Politecnico di Milano giuseppe.pelagatti@polimi.it spatialdbgroup.polimi.it

More information

ADMINISTRATIVE UNITS INSPIRE KEN WORKSHOP TRANSFORMATION OF THEMES AD, AU, BU, CP AND GN April 2015 ign.

ADMINISTRATIVE UNITS INSPIRE KEN WORKSHOP TRANSFORMATION OF THEMES AD, AU, BU, CP AND GN April 2015 ign. ADMINISTRATIVE UNITS INSPIRE KEN WORKSHOP TRANSFORMATION OF THEMES AD, AU, BU, CP AND GN dominique.laurent@ign.fr 16-17 April 201 ign.fr Plan Source data Transformation choices and issues Conclusions Source

More information

News in Download services in the Czech Republic. Petr Souček Czech Office for Surveying, Mapping and Cadastre Prague, Czech Republic

News in Download services in the Czech Republic. Petr Souček Czech Office for Surveying, Mapping and Cadastre Prague, Czech Republic News in Download services in the Czech Republic Petr Souček Czech Office for Surveying, Mapping and Cadastre Prague, Czech Republic Topics The infrastructure The experience with themes Parcels (CP), Addresses

More information

Testing - an essential aspect of establishing an SDI

Testing - an essential aspect of establishing an SDI Testing - an essential aspect of establishing an SDI Clemens Portele, Anders Östman, Michael Koutroumpas, Xin He, Janne Kovanen, Markus Schneider, Andriani Skopeliti INSPIRE Conference 2011 30 June 2011

More information

Web Services Made Easy Without Any Coding. September 23, 2013

Web Services Made Easy Without Any Coding. September 23, 2013 Web Services Made Easy Without Any Coding September 23, 2013 Agenda Introduction Safe Software and FME FME Approach to Web Services Live Demos Consuming Web Services Leveraging Web Services Publishing

More information

Validation experience

Validation experience Validation experience Paloma Abad Head of SDI Department SDI Workshop 26-06-2018 INSPIRE KEN INSPIRE KEN, june 2018 1 Points 1. Introduction 2. Interoperability 3. Geoportal Thematic Viewer 4. Conclusions

More information

Yandex Maps API YMapsML Language Reference

Yandex Maps API YMapsML Language Reference 19.12.2017 .. Version 2.0 Document build date: 19.12.2017. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2017 Yandex LLC. All rights reserved.

More information

Compass INSPIRE Services. Compass INSPIRE Services. White Paper Compass Informatics Limited Block 8, Blackrock Business

Compass INSPIRE Services. Compass INSPIRE Services. White Paper Compass Informatics Limited Block 8, Blackrock Business Compass INSPIRE Services White Paper 2010 Compass INSPIRE Services Compass Informatics Limited Block 8, Blackrock Business Park, Carysfort Avenue, Blackrock, County Dublin, Ireland Contact Us: +353 1 2104580

More information

Closing the INSPIRE Implementation Gap by Contributing to SDI Technology Development

Closing the INSPIRE Implementation Gap by Contributing to SDI Technology Development Closing the INSPIRE Implementation Gap by Contributing to SDI Technology Development Experiences from the Envibase project Lena Hallin-Pihlatie, Riikka Repo, Suvi Hatunen, Ilkka Rinne Finnish Environment

More information

GMLID.EU data access point for short URLs.

GMLID.EU data access point for short URLs. GMLID.EU data access point for short URLs. Harmonized access to harmonized data using INSPIRE WFS download services Prepared by: Sorin RUSU: 06.SEPT.2017 GIS@TEAMNET.RO Authors: Sorin RUSU, Iurie Maxim,

More information

INSPIRE Web Services for Maritime Affairs in Germany

INSPIRE Web Services for Maritime Affairs in Germany INSPIRE Web Services for Maritime Affairs in Germany Matthias Pramme www.bsh.de 1 Agenda Introduction to BSH Relevant INSPIRE Themes Implementation Water Transport Networks Problems and Difficulties Future

More information

Consolidation Team INSPIRE Annex I data specifications testing Call for Participation

Consolidation Team INSPIRE Annex I data specifications testing Call for Participation INSPIRE Infrastructure for Spatial Information in Europe Technical documents Consolidation Team INSPIRE Annex I data specifications testing Call for Participation Title INSPIRE Annex I data specifications

More information

SDI Tecnological Components and Standards

SDI Tecnological Components and Standards SDI Tecnological Components and Standards Salvador Bayarri sbayarri@gmail.com World Bank Consultant Contents The SDI architecture model Software components: the SDI stack Basic services Metadata SDI access

More information

Serving Large-Scale Coverages - How to Tame an Elephant

Serving Large-Scale Coverages - How to Tame an Elephant Serving Large-Scale s - How to Tame an Elephant OGC Workshop 2 INSPIRE Conference Edinburgh, 29-jun-2011 Peter Baumann Jacobs University rasdaman GmbH OGC WCS.SWG chair OGC spec editor Sensor & Image Data

More information

INSPIRE roadmap and architecture: lessons learned INSPIRE 2017

INSPIRE roadmap and architecture: lessons learned INSPIRE 2017 INSPIRE roadmap and architecture: lessons learned INSPIRE 2017 Stijn Goedertier GIM Thierry Meessen GIM Jeff Konnen ACT Luxembourg Patrick Weber ACT Luxembourg 1 Administration du cadastre et de la topographie

More information

Open Geospatial Consortium, Inc.

Open Geospatial Consortium, Inc. Open Geospatial Consortium, Inc. Date: 2008-01-02 Reference number of this document: Version: 0.0.9 Category: OGC Discussion Paper Editor: Raj Singh OGC Loosely Coupled Synchronization of Geographic Databases

More information

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri Introduction to Geodatabase and Spatial Management in ArcGIS Craig Gillgrass Esri Session Path The Geodatabase - What is it? - Why use it? - What types are there? - What can I do with it? Query Layers

More information

Czech experience about transformation of the themes Elevation and Orthoimagery

Czech experience about transformation of the themes Elevation and Orthoimagery Czech experience about transformation of the themes Elevation and Orthoimagery Veronika KUSOVA LAND SURVEY OFFICE CZECH OFFICE FOR SURVEYING, MAPPING AND CADASTRE Zeměměřický úřad, Pod sídlištěm 1800/9,

More information

Validating services and data in an SDI

Validating services and data in an SDI Validating services and data in an SDI Presentation to: By: Date: INSPIRE Conference Clemens Portele, Jon Herrmann, Roy Mellum 30 September 2016 4 October, 2016 ELF is the response from the European Mapping

More information

INSPIRE compliant e-reporting under the air quality directives from a member state perspective (Belgium)

INSPIRE compliant e-reporting under the air quality directives from a member state perspective (Belgium) INSPIRE compliant e-reporting under the air quality directives from a member state perspective (Belgium) Olav Peeters Belgian Interregional Environment Agency (IRCEL CELINE) Content Who are we (IRCEL CELINE)

More information

Integrating data: Appendix F, G and H (full) GIMA Thesis. Ing. Huibert-Jan Lekkerkerk B.Sc.

Integrating data: Appendix F, G and H (full) GIMA Thesis. Ing. Huibert-Jan Lekkerkerk B.Sc. Integrating data: Appendix F, G and H (full) GIMA Thesis Ing. Huibert-Jan Lekkerkerk B.Sc. Table of contents TABLE OF CONTENTS... 3 APPENDIX F: MAPPING TO REFERENCE SET... 5 F.1 XSLT2: GAZETTEER... 5

More information

DanubeGIS User Manual Document number: Version: 1 Date: 11-Nov-2016

DanubeGIS User Manual Document number: Version: 1 Date: 11-Nov-2016 DanubeGIS User Manual Document number: Version: 1 Date: 11-Nov-2016 Imprint Published by: ICPDR International Commission for the Protection of the Danube River ICPDR 2016 Contact ICPDR Secretariat Vienna

More information

Technical implementation of INSPIRE: feed-back from experiences

Technical implementation of INSPIRE: feed-back from experiences Technical implementation of INSPIRE: feed-back from experiences Lisbon 27 February 2013 1 Modèle TN-02.018-1.2 Dominique.laurent@ign.fr Plan Introduction Metadata Services Interoperability 2 Introduction

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

Towards Automating Spatial Data Quality Evaluation in the Finnish National Topographic Database

Towards Automating Spatial Data Quality Evaluation in the Finnish National Topographic Database Towards Automating Spatial Data Quality Evaluation in the Finnish National Topographic Database SDQ 2018: International Workshop on Spatial Data Quality Wednesday 7th February 2018 Nils Mesterton and Riikka

More information

Name type specification definitions part 1 basic name

Name type specification definitions part 1 basic name Open Geospatial Consortium Inc. Date: 2010-03-31 Reference number of this document: OGC 09-048r3 OGC Name of this document: http://www.opengis.net/doc/pol-nts/def-1/1.1 Version: 1.1 Category: OpenGIS Policy

More information

Daniela Cristiana Docan I 6th Sept. I INSPIRE Conference 2017, Strasbourg. EEA Data Quality Management supporting INSPIRE implementation

Daniela Cristiana Docan I 6th Sept. I INSPIRE Conference 2017, Strasbourg. EEA Data Quality Management supporting INSPIRE implementation Daniela Cristiana Docan I 6th Sept. I INSPIRE Conference 2017, Strasbourg EEA Data Quality Management supporting INSPIRE implementation Data Quality in INSPIRE INSPIRE Technical Guidelines use ISO 19157

More information

OGC Geospatial exensible Access Control Markup Language (GeoXACML) 3.0 GML Encoding Extension

OGC Geospatial exensible Access Control Markup Language (GeoXACML) 3.0 GML Encoding Extension Open Geospatial Consortium Submission Date: 2013-09-05 Approval Date: 2013-09-25 Publication Date: 2013-11-06 External identifier of this OGC document: http://www.opengis.net/doc/dp/geoxacml/gml3- Extension

More information

Mapping Network Relationships from Spatial Database Schemas to GML Documents

Mapping Network Relationships from Spatial Database Schemas to GML Documents Mapping Network Relationships from Spatial Database Schemas to GML Documents André C. Hora, Clodoveu A. Davis Jr., Mirella M. Moro Universidade Federal de Minas Gerais, Brazil {andrech,clodoveu,mirella}@dcc.ufmg.br

More information

WFD2016 Reporting Workshop under the Common Implementation Strategy of the Water Framework Directive (WFD) 12/11/2015

WFD2016 Reporting Workshop under the Common Implementation Strategy of the Water Framework Directive (WFD) 12/11/2015 WFD2016 Reporting Workshop under the Common Implementation Strategy of the Water Framework Directive (WFD) 12/11/2015 1 Content 0. Overview 1. Reporting data schemas 2. Life cycle management 3. Quality

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

Challenges to be INSPIRE compliant: CDDA into Protected Sites

Challenges to be INSPIRE compliant: CDDA into Protected Sites Challenges to be INSPIRE compliant: CDDA into Protected Sites María Cabello Pedro Mendive Summary Background The project Lessons learned Harmonizati on process Background Annex 1 Addresses Protected Sites

More information

Detailed analysis + Integration plan

Detailed analysis + Integration plan Outline Integration methodology Detailed analysis + Integration plan Conclusions 2 Outline Integration methodology Detailed analysis + Integration plan Conclusions 3 EULF-ISA Integration: methodology Phase

More information

Guidelines for the encoding of spatial data

Guidelines for the encoding of spatial data INSPIRE Infrastructure for Spatial Information in Europe Guidelines for the encoding of spatial data Title Status Creator Date 2012-06-15 Subject Publisher Type Description Contributor Format Source Rights

More information

6/29/2012. Harmonisation and Schema Transformation of Existing Spatial Data. Agenda

6/29/2012. Harmonisation and Schema Transformation of Existing Spatial Data. Agenda Agenda Harmonisation and Schema Transformation of Existing Spatial Data Dean Hintz, Safe Software Soren Dupke, con terra June 2012 FME Tools to support INSPIRE Harmonisation principles Key challenges Examples

More information

AQD IPR pilot study programme on e-reporting

AQD IPR pilot study programme on e-reporting AQD IPR pilot study programme on e-reporting Annual Assessments data flows and progress on UTD & AQ zones 5 th pilot meeting Copenhagen 24-25 May 2012 Agenda Morning Pilot country experiences & discussion

More information

ELF download services

ELF download services ELF download services Presentation to: Author: Date: ELF workshop in Moldova Marcin Grudzień 8 h September2015 14 September, 2015 Plan Introduction Specification documents The envisaged production process

More information

Schema Transformation as a Tool for Data Reuse in Web Service Environment

Schema Transformation as a Tool for Data Reuse in Web Service Environment Schema Transformation as a Tool for Data Reuse in Web Service Environment Lassi Lehto Department of Geoinformatics and Cartography Finnish Geodetic Institute Masala, Finland lassi.lehto@fgi.fi Abstract

More information

ESRI & Interoperability. David Danko ISO TC 211 Metadata Project Leader OGC Metadata WG Chair ESRI Senior Consultant GIS Standards

ESRI & Interoperability. David Danko ISO TC 211 Metadata Project Leader OGC Metadata WG Chair ESRI Senior Consultant GIS Standards ESRI & Interoperability David Danko ISO TC 211 Metadata Project Leader OGC Metadata WG Chair ESRI Senior Consultant GIS Standards ddanko@esri.com GIS has always required Interoperability Social Factors

More information

Schema transformations: From Production Database to INSPIRE data using WFS Experiences from ELF Nordic cluster

Schema transformations: From Production Database to INSPIRE data using WFS Experiences from ELF Nordic cluster Schema transformations: From Production Database to INSPIRE data using WFS Experiences from ELF Nordic cluster Presentation to: Author: Date: INSPIRE Schema transformation workshop Mauritz Bomark, Frank

More information

Transformation of SOIL DATA from the technical point of view

Transformation of SOIL DATA from the technical point of view Transformation of SOIL DATA from the technical point of view Federal Institute for Geosciences and Natural Resources, Hannover and Berlin, Germany 1 Agenda Starting Point Solutions Possible Improvements

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

SDI Workshop ESDIN Best Practices INSPIRE conference, Edinburgh. Arnulf Christl, Metaspatial

SDI Workshop ESDIN Best Practices INSPIRE conference, Edinburgh. Arnulf Christl, Metaspatial SDI Workshop ESDIN Best Practices 2011-06-28 INSPIRE conference, Edinburgh Arnulf Christl, Metaspatial Download this slide set as ODP or PDF at http://arnulf.us/publications Arnulf Christl Geospatially

More information

Data Interoperability An Introduction

Data Interoperability An Introduction 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Data Interoperability An Introduction Bruce Harold Esri Dale Lutz Safe Software Background Why Data Interoperability?

More information

An Introduction to Data Interoperability

An Introduction to Data Interoperability Esri International User Conference San Diego, California 2012 Technical Workshops July 24/25 An Introduction to Data Interoperability Bruce Harold - Esri Dale Lutz Safe Software Background Why Data Interoperability?

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

OGC GeoRSS Encoding Standard

OGC GeoRSS Encoding Standard Open Geospatial Consortium Submission Date: 2017-02-02 Approval Date: 2017-07-31 Publication Date: 2017-08-18 External identifier of this OGC document: http://www.opengis.net/doc/cs/georss/1.0 Internal

More information

Integrated Aeronautical Information Database (IAID) & AICM AIXM

Integrated Aeronautical Information Database (IAID) & AICM AIXM Integrated Aeronautical Information Database (IAID) & AICM AIXM Abbas NIKNEJAD Regional Officer, AIM/ATM Annex 15 provisions 3.5 Use of automation 3.5.1 Automation shall be applied in order to ensure the

More information

UN-GGIM: Europe core data and adaptation of INSPIRE models Dominique Laurent (IGN)

UN-GGIM: Europe core data and adaptation of INSPIRE models Dominique Laurent (IGN) Workshop about extensions of INSPIRE data specifications 20-21 June 2017 UN-GGIM: Europe core data and adaptation of INSPIRE models Dominique Laurent (IGN) UN-GGIM General presentation UN-GGIM(United Nations

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

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

Schema transformations in mass data harmonization process. Yohann Ly 8/9 Octobre 2013 Marne la Vallée

Schema transformations in mass data harmonization process. Yohann Ly 8/9 Octobre 2013 Marne la Vallée Schema transformations in mass data harmonization process Yohann Ly 8/9 Octobre 2013 Marne la Vallée Mass data harmonization process Problematic : Multiple data providers Multiple storage format Multiple

More information

Implementing INSPIRE UIDs and life-cycle information in a European SDI.

Implementing INSPIRE UIDs and life-cycle information in a European SDI. Implementing INSPIRE UIDs and life-cycle information in a European SDI. Nathalie Delattre, IGN Belgium Work team: Romain Kereneur, IGN, France Noémie Grémeaux, IGN, France Marcus Brühl, BKG, Germany Esa

More information

Implementing INSPIRE UIDs and life-cycle information in a European SDI.

Implementing INSPIRE UIDs and life-cycle information in a European SDI. Implementing INSPIRE UIDs and life-cycle information in a European SDI. Nathalie Delattre, IGN Belgium Work team: Romain Kereneur, IGN, France Noémie Grémeaux, IGN, France Marcus Brühl, BKG, Germany Esa

More information

Addressing the needs of INSPIRE: The Challenges of improving Interoperability within the European Union

Addressing the needs of INSPIRE: The Challenges of improving Interoperability within the European Union Addressing the needs of INSPIRE: The Challenges of improving Interoperability within the European Union Andrew Coote Facilitator, Addresses Thematic Working Group andrew.coote@consultingwhere.com Disclaimer

More information

Rui Reis, Maria José Vale, Marcelo Ribeiro, Bruno Meneses Geospatial World Forum 2016, May 2016, Rotterdam

Rui Reis, Maria José Vale, Marcelo Ribeiro, Bruno Meneses Geospatial World Forum 2016, May 2016, Rotterdam LC change detection and planning indicators Rui Reis, Maria José Vale, Marcelo Ribeiro, Bruno Meneses Summary 1. 2. 3. 4. 5. 6. 7. 8. Introduction Pilot overview Data description Inspire data harmonization

More information

Basic Principles of MedWIS - WISE interoperability

Basic Principles of MedWIS - WISE interoperability Co-ordination committee seminar of the national focal points Basic Principles of MedWIS - WISE interoperability Eduardo García ADASA Sistemas Nice - France Agenda WISE vs MedWIS WISE WISE DS WISE vs WISE

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

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

Land Information Management and its (3D) Database Foundation

Land Information Management and its (3D) Database Foundation Land Information Management and its (3D) Database Foundation Han Wammes, Oracle Netherlands November 18 th, 2011 1 Copyright 2011, Oracle and/or its affiliates. All rights Safe Harbor Statement The following

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

Development of Technical Guidance for the INSPIRE Transformation Network Service. "State Of The Art Analysis"

Development of Technical Guidance for the INSPIRE Transformation Network Service. State Of The Art Analysis Rob Walker Consultancy Development of Technical Guidance for the INSPIRE Transformation Network Service EC JRC Contract Notice 2009/S 107-153973 "State Of The Art Analysis" Authors: Editor: Matthew Beare,

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

Use case 1 INSPIRE harmonization of existing Energy Performance Certificate datasets Phase 1

Use case 1 INSPIRE harmonization of existing Energy Performance Certificate datasets Phase 1 The European Commission s science and knowledge service Joint Research Centre Use case 1 INSPIRE harmonization of existing Energy Performance Certificate datasets Phase 1 Giacomo Martirano (external consultant)

More information

How to Create a European INSPIRE Compliant Data Specification. Anja Hopfstock, BKG (Germany) Morten Borrebæk, SK (Norway)

How to Create a European INSPIRE Compliant Data Specification. Anja Hopfstock, BKG (Germany) Morten Borrebæk, SK (Norway) How to Create a European INSPIRE Compliant Data Specification Anja Hopfstock, BKG (Germany) Morten Borrebæk, SK (Norway) ESDIN Key Goals Further the ambition of the European Commission to create a European

More information

Leveraging metadata standards in ArcGIS to support Interoperability. David Danko and Aleta Vienneau

Leveraging metadata standards in ArcGIS to support Interoperability. David Danko and Aleta Vienneau Leveraging metadata standards in ArcGIS to support Interoperability David Danko and Aleta Vienneau Leveraging Metadata Standards in ArcGIS for Interoperability Why metadata and metadata standards? Overview

More information

Raster national datasets transformation to INSPIRE specifications

Raster national datasets transformation to INSPIRE specifications http://www.ign.es Instituto Geográfico Nacional Raster national datasets transformation to INSPIRE specifications Orthoimageries and Elevation Julián Delgado Hernández INSPIRE KEN workshop Barcelona 29

More information

SERVO - ACES Abstract

SERVO - ACES Abstract 1 of 6 12/27/2004 2:33 PM 2 of 6 12/27/2004 2:33 PM Implementing GIS Grid Services for the International Solid Earth Research Virtual Observatory Galip Aydin (1), Marlon Pierce (1), Geoffrey Fox (1), Mehmet

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

Data Conversion or a wrapper mediator? The Italian example of INSPIRE implementation

Data Conversion or a wrapper mediator? The Italian example of INSPIRE implementation Data Conversion or a wrapper mediator? The Italian example of INSPIRE implementation Carlo Cipolloni Geological Survey of Italy ISPRA Italian INSPIRE National Contact Point member ISPRA has carried out

More information

Interoperability and Standards Supports in ArcGIS

Interoperability and Standards Supports in ArcGIS Esri International User Conference San Diego, California Technical Workshops July 26, 2012 Interoperability and Standards Supports in ArcGIS Satish Sankaran, Esri Yingqi Tang, Esri Agenda Esri s participation

More information

INSPIRE as an effective tool for e-reporting: the EEA EU Registry on industrial emissions. INSPIRE Conference, Strasbourg 06/09/2017

INSPIRE as an effective tool for e-reporting: the EEA EU Registry on industrial emissions. INSPIRE Conference, Strasbourg 06/09/2017 INSPIRE as an effective tool for e-reporting: the EEA EU Registry on industrial emissions INSPIRE Conference, Strasbourg 06/09/2017 EU Registry on industrial emissions The EU Registry will collects identification

More information

Disseminating WXXM Data via A Web Feature Service

Disseminating WXXM Data via A Web Feature Service Disseminating WXXM Data via A Web Feature Service Dr. Kajal T. Claypool AIXM / WXXM 2010 Conference 05 May 2010 Claypool -1 AIXM / WXXM Conference, May 4, 2010 4-D Wx Data Cube SOA Context Consumers Forecast

More information

Pilot Group IPR - Air Quality. Wet tests XML UTD and Zones Feedback from France

Pilot Group IPR - Air Quality. Wet tests XML UTD and Zones Feedback from France Pilot Group IPR - Air Quality Wet tests XML UTD and Zones Feedback from France Contents 1. French context 2. Wet tests 1. Zones Talend and WFS 2. Zones Talend and MySQL 3. UTD Talend and MySQL 4. Zones

More information

Guidelines for the encoding of spatial data

Guidelines for the encoding of spatial data INSPIRE Infrastructure for Spatial Information in Europe Guidelines for the encoding of spatial data Title D2.7: Guidelines for the encoding of spatial data, Version 3.1 Creator INSPIRE Drafting Team "Data

More information

INSPIRE Transformation with Stetl -

INSPIRE Transformation with Stetl - INSPIRE Transformation with Stetl - A lightweight Python Framework for Geospatial ETL Just van den Broecke EuroGeographics - KEN Workshop Paris, Oct 8, 2013 www.justobjects.nl About Me Independent Open

More information

ISA Action 1.17: A Reusable INSPIRE Reference Platform (ARE3NA)

ISA Action 1.17: A Reusable INSPIRE Reference Platform (ARE3NA) ISA Action 1.17: A Reusable INSPIRE Reference Platform (ARE3NA) Expert contract supporting the Study on RDF and PIDs for INSPIRE Deliverable D.EC.3.2 RDF in INSPIRE Open issues, tools, and implications

More information

FSP TRACKING SYSTEM. FSP ESF Submission Guide. Ministry of Forests and Range Information Management Group Date: June 15 th, 2008

FSP TRACKING SYSTEM. FSP ESF Submission Guide. Ministry of Forests and Range Information Management Group Date: June 15 th, 2008 FSP TRACKING SYSTEM FSP ESF Submission Guide Client: Ministry of Forests and Range Information Management Group Date: June 15 th, 2008 Revision: 7 (Rls1.3) Vivid Solutions Inc. Suite #1A, 2328 Government

More information

European Location Framework (ELF) acting as a facilitator implementing INSPIRE

European Location Framework (ELF) acting as a facilitator implementing INSPIRE www.eurogeographics.org European Location Framework (ELF) acting as a facilitator implementing INSPIRE Saulius Urbanas, Mick Cory (EuroGeographics) 29 October 2016 Copyright 2013 EuroGeographics EuroGeographics

More information

Extension of INSPIRE Download Services TG for Observation Data

Extension of INSPIRE Download Services TG for Observation Data Extension of INSPIRE Download Services TG for Observation Data Simon Jirka (52 North) 14 th June 2014, MIG Workshop on WCS-based INSPIRE Download Services Agenda Motivation Sensor Web Proposed Update for

More information

WFD Reporting Guidance 2016

WFD Reporting Guidance 2016 COMMON IMPLEMENTATION STRATEGY FOR THE WATER FRAMEWORK DIRECTIVE AND THE FLOODS DIRECTIVE WFD Reporting Guidance 2016 Annex 6 Final Version 6.0.6 Document endorsed by EU Water Directors at their meeting

More information

ArcGIS for INSPIRE 10.6 Server Extension Installation Guide Content

ArcGIS for INSPIRE 10.6 Server Extension Installation Guide Content ArcGIS for INSPIRE 10.6 Server Extension Installation Guide Content 1 Introduction... 1 2 System Requirements... 1 3 Installation... 1 4 Upgrade Installation... 2 5 Configuration... 2 6 Software Authorization...

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