Translating WFS Query to SQL/XML Query
|
|
|
- Isaac Barnett
- 10 years ago
- Views:
Transcription
1 Translating WFS Query to SQL/XML Query Vânia Vidal, Fernando Lemos, Fábio Feitosa Departamento de Computação Universidade Federal do Ceará (UFC) Fortaleza CE Brazil {vvidal, fernandocl, Abstract. The purpose of the WFS specification, proposed by the the OpenGIS Consortium (OGC), is to describe the manipulation operations over geospatial data using GML. Web servers providing WFS service are called WFS Servers. WFS servers publish GML views of geographic features stored in data sources such that the user can query and update data sources through a user defined feature type schema. In this work, we study the problem of answering WFS queries through a feature type schema, when the data is stored in a relational database. A feature type is specified by the feature type schema and a set of correspondence assertions. The feature type's correspondence assertions formally specify relationships between the feature type schema and the relational database schema. We define the semantic for WFS query answering and present an algorithm that translate a WFS query defined over a feature type schema into a SQL/XML query defined over the relational database schema. 1. Introduction The mission of the OpenGIS Consortium (OGC) [8] is to promote the development and use of advanced open system standards and techniques in the geoprocessing area and related information technologies. Two important OGC's initiatives are: the Geography Markup Language (GML) [9] and the Web Feature Service (WFS) [11]. The purpose of the WFS specification is to describe the manipulation operations over geospatial data using GML. Their objective is to provide queries, updates and exchange of geospatial data as geographic features instances encoded in GML. According to OGC, a geographic feature is an abstraction of a real world phenomenon associated with a location relative to the Earth. It is possible to describe the feature form and localization through its geometric attributes, remaining the other attributes to represent its non-geographic properties. Given that, WFS servers publish GML views of geographic features stored in data sources such that the user can query and update data sources through the feature type schema According to WFS specification [11], the requests supported by a WFS Server must be as follow: 1. DescribeFeatureType: Retrieves the XML [20] schema of the feature types.
2 2. GetFeature: Retrieves feature instances of a feature type. It is possible to apply selection filters on the GetFeature request. Those filters are specified by OGC in [7] and enclose logical, arithmetical and space conditions. 3. LockFeature: Allows blocking a feature type while it is being updated. It is optional. 4. Transaction: Allows updating feature types. It is optional. 5. GetCapabilities: Retrieves a list of feature types serviced by the WFS Server and what operations are supported on each feature type. In this work, we study the problem of answering WFS queries through a feature type schema, when the data is stored in a relational database. In this work, a feature type is specified by the feature type schema and a set of correspondence assertions [13,14,18]. The feature type's correspondence assertions formally specify relationships [6,14] between the feature type schema and the relational database schema. We show that, based on the feature type correspondence assertions, one can efficiently translate WFS query to SQL/XML query. SQL/XML [16] is an ANSI and ISO standard that provides support for using XML in the context of an SQL database system. The SQL/XML standard is being developed under the auspices of INCITS Technical Committee H2 as a new part (Part 14) of the SQL standard and is aligned with SQL:2003 [2]. SQL/XML is simple, highly intuitive and, in some development scenarios, is an ideal way of returning relational data. Moreover, we can apply XSL transformation on the XML result. To the best of our knowledge, there is no work on translating WFS query to SQL/XML query. There is a vast amount of work on XML-to-SQL translation [3,5,15]. Since WFS query is more restricted than XML queries, the approach proposed here is simpler and more efficient. The Deegree WFS [1], which is an open source implementation of the WFS Specification, in case where the feature has complex properties, it reformulates a WFS query into several SQL queries, each of which will compute the value of a complex property. So, our solution, which translates to only one SQL/XML query, is much more efficient than Deegree's approach. The main contributions of the paper are. We propose the use of correspondence assertions as the formalism to specify the mapping between a XML schema and a relational database schema. We formally specify the conditions for a set of correspondence assertions to fully specify a feature type in terms of relational database and, if so, we show that the mappings defined by the feature type correspondence assertions can be expressed as an SQL/XML query. We propose an algorithm that, based on the feature type s correspondence assertions, generates an SQL/XML query that constructs <featuremember> elements from the
3 corresponding tuples of relational database. We note that other mapping formalisms are either ambiguous or require the user to declare complex logical mappings [4,23]. We define the semantic for WFS query answering and present an algorithm that translate, based on the feature type correspondence assertions, a WFS query defined over a feature type schema into a SQL/XML query defined over the relational database. Moreover, we formally justify that SQL/XML query generated by the algorithm is a correct translation. The paper is organized as follows. Section 2 presents our mapping formalism. Section 3 discusses how to specify a Feature Type using correspondence assertions. Section 4 presents the semantic for WFS query answering and present an algorithm that translates a WFS query to a SQL/XML query. Finally, Section 5 contains the conclusions. 2. Correspondence Assertions In this section, let R1,...,Rn be relation schemes of a relational schema S. Let R1,...,Rn be relations over R1,...,Rn, respectively. Definition 2.1: Let fk be a foreign key of R1 that references R2. Assume that fk is of the form R 1 [a 1,...,a m ] R 2 [b 1,...,b m ]. (i) fk is a link from R1 to R2, and the inverse of fk, denoted fk -1, is a link from R2 to R1. (ii) Let r 1 be a tuple of R 1. Then r 1 /fk = { r 2 r 2 R 2 and r 1.a i = r 2.b i, 1 i m }; (iii) Let r2 be tuple of R2. Then r2/fk -1 = { r1 r1 R1 and r1.ai = r2.bi, 1 i m }. Definition 2.2: Let l be a link from R 1 to R 2, and let r 1 and r 2 be tuples of R 1 and R 2, respectively. We say that: (i) r1 references r2 through l iff r2 r1/l. (ii) l is single occurrence iff a tuple of R1 can reference at most one tuple of R2 through l. Otherwise, l is multiple occurrence. Definition 2.3: Let l 1,..., l n-1 be links. Assume that l i is a foreign key of the form R i [a 1 li,...,a mi li] R i+1 [b 1 li,...,b mi li] or the inverse of a foreign key of the form R i+1 [b 1 li,...,b mi li] Ri[a1 l i li,...,am i ], for 1 i n-1. (i) ϕ = l l n-1 is a path from R 1 to R n, and the tuples of R 1 reference tuples of R n through ϕ. (ii) ϕ is single occurrence iff li is single occurrence, for 1 i n-1.otherwise, ϕ is multiple occurrence. (iii) Let r1 be a tuple of R1. Then, r1/ϕ = { rn ( r2 R2)... ( rn Rn ) (ri.ak l i = ri+1.bk l i, for 1 k mi and 1 i n-1)}.
4 of feature type instance. (2) The correspondence assertions of the feature type are generated by matching the feature type XML schema and the relational database schema. (3) Based on the feature type correspondence assertions, GML Publisher generates the SQL/XML query that computes the extension of the feature type, and the SQL/XML sub-query that computes the value of each feature type path expression. Acknowledgments This work is financed by CNPq and project GML Publisher: Um Framework para Publicação de Feições Geográficas como GML (process no /2004-6). References 1. Deegree. (visited on September 26th, 2005). 2. Eisenberg, A., Melton, J., Kulkarni, K., Michels, J.E. and Zemke, F. (2004) SQL:2003 has been published. In: SIGMOD Record, v.33, p Fernández, M., Kadiyska, Y., Suciu, D., Morishima, A., and Tan, W. C. (2002) SilkRoute: A framework for publishing relational data in XML. In: TODS, v.27, n.4, p Hernández, M. A., Miller, R. J., Haas, L. M. (2001) Clio: A Semi-Automatic Tool For Schema Mapping. In: SIGMOD Conference. 5. Krishnamurthy, R., Kaushik, R., and Naughton, J. F. (2003) XML-SQL Query Translation Literature: The State of the Art and Open Problems. In: XSym. 6. Madhavan, J., Bernstein, P., Rahm, E. (2001) Generic Schema Matching with Cupid. In: 27th Proceedings of the International Conference on Very Large Databases (VLDB), p OpenGIS Consortium. Filter Encoding Implementation Specification: Version (visited on September 26th, 2005). 8. OpenGIS Consortium. (visited on September 26th, 2005). 9. OpenGIS Consortium. Schema for Geography Markup Language (GML). Version (visited on September 26th, 2005). 10. OpenGIS Consortium. Simple Features Implementation Specification for SQL. Version (visited on September 26th, 2005). 11. OpenGIS Consortium. Web Feature Service (WFS) Implementation Specification. Version (visited on September 26th, 2005). 12. Oracle Corporation. Disponível em: (Acessado em 24 de abril 2005). 13. Popa, L., Velegrakis, Y., Miller, R. J., Hernandez, M. A., Fagin, R. (2002) Translating Web Data. In: Proceedings of the International Conference on Very Large Data Bases (VLDB), p
5 14. Rahm, E., Bernstein, P.A. (2001) A Survey of Approaches to Automatic Schema Matching. In: VLDB Journal, v.10, n.4, p Shanmugasundaram, J., Kiernan, J., Shekita, E., Fan, C., and Funderburk, J. (2001) Querying XML views of relational data. In VLDB. 16. SQL/XML. (visited on September 26th, 2005). 17. Vidal, V. M. P., Feitosa, F. B. (2004) GML Publisher: Um Framework para Publicação de Feições Geográficas como GML. In: III Workshop of Theses and Dissertations on Databases, 19th Brazilian Symposium on Databases. Brasília, Brazil. 18. Vidal, V.M.P., Boas, R. V. (2002) A Top-Down Approach for XML Schema Matching. In: Proceedings of the 17th Brazilian Symposium on Databases. Gramado, Brazil. 19. Vidal, V.M.P., Casanova, M.A., Lemos, F.C. (2005) Automatic Generation of XML Views of Relational Data. In: Technical Report ( Universidade Federal do Ceará, November, World-Wide Web Consortium. XML Schema Part 0: Primer Second Edition. (visited on September 26th, 2005). 21. World-Wide Web Consortium. XQuery: An XML Query Language. Version (visited on September 26th, 2005). 22. World-Wide Web Consortium: XML Path Language (XPath). Version (visited on September 26th, 2005). 23. Yu, C., Popa, L. (2004) Constraint-Based XML Query Rewriting For Data Integration. In: SIGMOD, p
Translating WFS Query to SQL/XML Query
Translating WFS Query to SQL/XML Query Vânia Vidal, Fernando Lemos, Fábio Feitosa Departamento de Computação Universidade Federal do Ceará (UFC) Fortaleza CE Brazil {vvidal, fernandocl, fabiofbf}@lia.ufc.br
INTEGRATION OF XML DATA IN PEER-TO-PEER E-COMMERCE APPLICATIONS
INTEGRATION OF XML DATA IN PEER-TO-PEER E-COMMERCE APPLICATIONS Tadeusz Pankowski 1,2 1 Institute of Control and Information Engineering Poznan University of Technology Pl. M.S.-Curie 5, 60-965 Poznan
Unraveling the Duplicate-Elimination Problem in XML-to-SQL Query Translation
Unraveling the Duplicate-Elimination Problem in XML-to-SQL Query Translation Rajasekar Krishnamurthy University of Wisconsin [email protected] Raghav Kaushik Microsoft Corporation [email protected]
DEVELOPMENT OF THE INTEGRATING AND SHARING PLATFORM OF SPATIAL WEBSERVICES
DEVELOPMENT OF THE INTEGRATING AND SHARING PLATFORM OF SPATIAL WEBSERVICES Lan Xiaoji 1,2 Lu Guonian 1 Zhang Shuliang 1 Shi Miaomiao 1 Yin Lili 1 1. Jiangsu Provincial Key Lab of GIS Science, Nanjing Normal
Query reformulation for an XML-based Data Integration System
Query reformulation for an XML-based Data Integration System Bernadette Farias Lóscio Ceará State University Av. Paranjana, 1700, Itaperi, 60740-000 - Fortaleza - CE, Brazil +55 85 3101.8600 [email protected]
Join Minimization in XML-to-SQL Translation: An Algebraic Approach
Join Minimization in XML-to-SQL Translation: An Algebraic Approach Murali Mani Song Wang Daniel J. Dougherty Elke A. Rundensteiner Computer Science Dept, WPI {mmani,songwang,dd,rundenst}@cs.wpi.edu Abstract
Constraint Preserving XML Storage in Relations
Constraint Preserving XML Storage in Relations Yi Chen, Susan B. Davidson and Yifeng Zheng ÔØº Ó ÓÑÔÙØ Ö Ò ÁÒ ÓÖÑ Ø ÓÒ Ë Ò ÍÒ Ú Ö ØÝ Ó È ÒÒ ÝÐÚ Ò [email protected] [email protected] [email protected]
Data interchange between Web client based task controllers and management information systems using ISO and OGC standards
Data interchange between Web client based task controllers and management information systems using ISO and OGC standards Michael Nørremark 1*, Ole Jørgensen 1, Jens Bligaard 2 and Claus G. Sørensen 1
Schema mapping and query reformulation in peer-to-peer XML data integration system
Control and Cybernetics vol. 38 (2009) No. 1 Schema mapping and query reformulation in peer-to-peer XML data integration system by Tadeusz Pankowski Institute of Control and Information Engineering Poznań
Quality Assessment for Geographic Web Services. Pedro Medeiros (1)
Quality Assessment for Geographic Web Services Pedro Medeiros (1) (1) IST / INESC-ID, Av. Prof. Dr. Aníbal Cavaco Silva, 2744-016 Porto Salvo, [email protected] Abstract Being able to assess the
Managing a Geographic Database From Mobile Devices Through OGC Web Services
Managing a Geographic Database From Mobile Devices Through OGC Web Services Nieves R. Brisaboa 1, Miguel R. Luaces 1, Jose R. Parama 1, and Jose R. Viqueira 2 1 Database Laboratory, University of A Coruña,
Enforcing Data Quality Rules for a Synchronized VM Log Audit Environment Using Transformation Mapping Techniques
Enforcing Data Quality Rules for a Synchronized VM Log Audit Environment Using Transformation Mapping Techniques Sean Thorpe 1, Indrajit Ray 2, and Tyrone Grandison 3 1 Faculty of Engineering and Computing,
Model-Mapping Approaches for Storing and Querying XML Documents in Relational Database: A Survey
Model-Mapping Approaches for Storing and Querying XML Documents in Relational Database: A Survey 1 Amjad Qtaish, 2 Kamsuriah Ahmad 1 School of Computer Science, Faculty of Information Science and Technology,
Constraint-Based XML Query Rewriting for Data Integration
Constraint-Based XML Query Rewriting for Data Integration Cong Yu Department of EECS, University of Michigan [email protected] Lucian Popa IBM Almaden Research Center [email protected] ABSTRACT
About scope of OpenGIS technology in oceanographic data management and visualization Andrey V. Golik, Vitaly K. Fischenko, Stepan G.
About scope of OpenGIS technology in oceanographic data management and visualization Andrey V. Golik, Vitaly K. Fischenko, Stepan G. Antushev V.I.Il ichev Pacific Oceanological Institute Far-Eastern Branch
Technologies for a CERIF XML based CRIS
Technologies for a CERIF XML based CRIS Stefan Bärisch GESIS-IZ, Bonn, Germany Abstract The use of XML as a primary storage format as opposed to data exchange raises a number of questions regarding the
Visualization Method of Trajectory Data Based on GML, KML
Visualization Method of Trajectory Data Based on GML, KML Junhuai Li, Jinqin Wang, Lei Yu, Rui Qi, and Jing Zhang School of Computer Science & Engineering, Xi'an University of Technology, Xi'an 710048,
Web Map Context Service for Adaptive Geospatial Data Visualization
Web Map Context Service for Adaptive Geospatial Data Visualization Miloš Bogdanović, Danilo Vulović, Leonid Stoimenov INTRODUCTION Faculty of Electronic Engineering, University of Niš, Serbia {milos.bogdanovic,
Open Geospatial Consortium, Inc.
Open Geospatial Consortium, Inc. Date: 2010-08-18 Reference number of this document: OGC 10-130 Category: OGC Public Engineering Report Editor: Debbie Wilson OGC OWS-7 Aviation FUSE Deployment Engineering
Toward the Automatic Derivation of XML Transformations
Toward the Automatic Derivation of XML Transformations Martin Erwig Oregon State University School of EECS [email protected] Abstract. Existing solutions to data and schema integration require user interaction/input
ArcGIS Framework Plug-In: Extending the ArcGIS Desktop for ANSI Standard Framework Data to Support Government Decision Making
ArcGIS Framework Plug-In: Extending the ArcGIS Desktop for ANSI Standard Framework Data to Support Government Decision Making Final Project Report October 28, 2008 Agreement Number Organization Project
National Geothermal Data System and Global Geosciences Data Integration
National Geothermal Data System and Global Geosciences Data Integration Lee Allison, AZGS Stephen Richard, AZGS Arlene Anderson, US DOE David Cuyler, US DOE & Sandia Natl Lab NERC 2008 Outline Rational
The Virtual Database A Tool for Integrated Data Processing in a Distributed Environment
EnviroInfo 2004 (Geneva) Sh@ring EnviroInfo 2004 The Virtual Database A Tool for Integrated Data Processing in a Distributed Environment Marcel Frehner 1, Martin Brändli 2, Jürg Schenker 3 Abstract Traditional
ACE GIS Project Overview: Adaptable and Composable E-commerce and Geographic Information Services
ACE GIS Project Overview: Adaptable and Composable E-commerce and Geographic Information Services José Poveda, Michael Gould, Carlos Granell 64 Departamento de Lenguajes y Sistemas Informáticos Universitat
Chapter 1: Introduction
Chapter 1: Introduction Database System Concepts, 5th Ed. See www.db book.com for conditions on re use Chapter 1: Introduction Purpose of Database Systems View of Data Database Languages Relational Databases
A Hybrid Architecture for Mobile Geographical Data Acquisition and Validation Systems
A Hybrid Architecture for Mobile Geographical Data Acquisition and Validation Systems Claudio Henrique Bogossian 1, Karine Reis Ferreira 1, Antônio Miguel Vieira Monteiro 1, Lúbia Vinhas 1 1 DPI Instituto
Providing GRASS with a Web Processing Service Interface
Providing GRASS with a Web Processing Service Interface Johannes Brauner Institute for Geoinformatics, University of Münster [email protected] Abstract. The process of bringing GIS functionality into
Integrating Heterogeneous Data Sources Using XML
Integrating Heterogeneous Data Sources Using XML 1 Yogesh R.Rochlani, 2 Prof. A.R. Itkikar 1 Department of Computer Science & Engineering Sipna COET, SGBAU, Amravati (MH), India 2 Department of Computer
DISMAR implementing an OpenGIS compliant Marine Information Management System
DISMAR implementing an OpenGIS compliant Marine Information Management System Éamonn Ó T uama, Coastal & Marine Resources Centre, ERI, University College Cork. DISMAR DISMAR (Data Integration System for
Interoperable Solutions in Web-based Mapping
ISPRS SIPT IGU UCI CIG ACSG Table of contents Table des matières Authors index Index des auteurs Search Recherches Exit Sortir Interoperable Solutions in Web-based Mapping Marta Wojnarowska and Bridget
CURSO Inspire INSPIRE. SPEAKER: Pablo Echamendi Lorente. JEUDI 23/ THURSDAY 23 rd W S V : G E O S P A T I A L D A T A A C C E S S
CURSO Inspire JEUDI 23/ THURSDAY 23 rd SPEAKER: Pablo Echamendi Lorente WS 5 SCHEDULE WMS OVERVIEW ACTIONS OGC SPECIFICATIONS OTHER SERVICES OVERVIEW proposal: Member States shall establish and operate
Applying Semantic Web Technologies in Service-Oriented Architectures
Applying Semantic Web Technologies in Service-Oriented Architectures 24 August 2015 Semantic Web for Air Transportation (SWAT) Luis Bermudez - OGC Charles Chen - Skymantics Copyright 2015 Open Geospatial
reviewed paper Proceedings REAL CORP 2009 Tagungsband 22-25 April 2009, Sitges. http://www.corp.at
reviewed paper Public Participation and Urban Planning supported by OGC Web Services Joachim Benner, Thomas Eichhorn, Andreas Geiger, Karl-Heinz Häfele, Kai-Uwe Krause (Dr.-Ing. Joachim Benner, Andreas
OData Extension for XML Data A Directional White Paper
OData Extension for XML Data A Directional White Paper Introduction This paper documents some use cases, initial requirements, examples and design principles for an OData extension for XML data. It is
Linking Sensor Web Enablement and Web Processing Technology for Health-Environment Studies
Linking Sensor Web Enablement and Web Processing Technology for Health-Environment Studies Simon Jirka 1, Stefan Wiemann 2, Johannes Brauner 2, and Eike Hinderk Jürrens 1 1 52 North Initiative for Geospatial
Data Quality in Information Integration and Business Intelligence
Data Quality in Information Integration and Business Intelligence Leopoldo Bertossi Carleton University School of Computer Science Ottawa, Canada : Faculty Fellow of the IBM Center for Advanced Studies
REAL-TIME DATA GENERALISATION AND INTEGRATION USING JAVA
REAL-TIME DATA GENERALISATION AND INTEGRATION USING JAVA Lars Harrie and Mikael Johansson National Land Survey of Sweden SE-801 82 Gävle [email protected], [email protected] KEY WORDS:
SQL SUPPORTED SPATIAL ANALYSIS FOR WEB-GIS INTRODUCTION
SQL SUPPORTED SPATIAL ANALYSIS FOR WEB-GIS Jun Wang Jie Shan Geomatics Engineering School of Civil Engineering Purdue University 550 Stadium Mall Drive, West Lafayette, IN 47907 ABSTRACT Spatial analysis
Access to ESPON Database by third- party applications An expertise on the potentialities of web services for accessing the ESPON metadata and data
Access to ESPON Database by third- party applications An expertise on the potentialities of web services for accessing the ESPON metadata and data UNEP/GRID- Geneva 27/06/2013 ABOUT THIS DOCUMENT A technical
Semantic Web Technologies and Data Management
Semantic Web Technologies and Data Management Li Ma, Jing Mei, Yue Pan Krishna Kulkarni Achille Fokoue, Anand Ranganathan IBM China Research Laboratory IBM Software Group IBM Watson Research Center Bei
Querying Combined Cloud-Based and Relational Databases
Querying Combined Cloud-Based and Relational Databases Minpeng Zhu and Tore Risch Department of Information Technology, Uppsala University, Sweden [email protected] [email protected] Abstract An increasing
A View Integration Approach to Dynamic Composition of Web Services
A View Integration Approach to Dynamic Composition of Web Services Snehal Thakkar, Craig A. Knoblock, and José Luis Ambite University of Southern California/ Information Sciences Institute 4676 Admiralty
GIS Databases With focused on ArcSDE
Linköpings universitet / IDA / Div. for human-centered systems GIS Databases With focused on ArcSDE Imad Abugessaisa [email protected] 20071004 1 GIS and SDBMS Geographical data is spatial data whose
Big Data Analytics. Rasoul Karimi
Big Data Analytics Rasoul Karimi Information Systems and Machine Learning Lab (ISMLL) Institute of Computer Science University of Hildesheim, Germany Big Data Analytics Big Data Analytics 1 / 1 Introduction
GIS AS A DECISION SUPPORT FOR SUPPLY CHAIN MANAGEMENT
Paper Reference No.: PN-253 GIS AS A DECISION SUPPORT FOR SUPPLY CHAIN MANAGEMENT Sanjay Kumar 1 and Suneeta Agrawal 2 1. M. Tech. (GIS & Remote Sensing); GIS Cell; MNNIT, Allahabad, India (E-mail: [email protected])
ISO 19119 and OGC Service Architecture
George PERCIVALL, USA Keywords: Geographic Information, Standards, Architecture, Services. ABSTRACT ISO 19119, "Geographic Information - Services," has been developed jointly with the Services Architecture
Pennsylvania Geospatial Data Sharing Standards (PGDSS) V 2.5
Submitted to: Pennsylvania Geospatial Data Sharing Standards (PGDSS) V 2.5 Spatial Data Migration Tools Report May 2, 2007 Table of Contents 1.0 Document Purpose...B-1 2.0 Overview of Spatial Data Migration
Data Integration using Semantic Technology: A use case
Data Integration using Semantic Technology: A use case Jürgen Angele, ontoprise GmbH, Germany Michael Gesmann, Software AG, Germany Abstract For the integration of data that resides in autonomous data
Distributed GML Management with SVG Tools
Distributed GML Management with SVG Tools Gunnar Misund Associate Professor Head of Environmental Computing - Henning Kristiansen M. Sc. Student - Mats S. Lindh M. Sc. Student -- Østfold University College
Rich Web Map Applications HANNES JOHANSSON
Rich Web Map Applications An assessment of performance, functionality and implementation of Rich Internet Application techniques in web-based GIS Master of Science Thesis in the Programme Software Engineering
mdwfs Model-driven Schema Translation for Integrating Heterogeneous Geospatial Data
mdwfs Model-driven Schema Translation for Integrating Heterogeneous Geospatial Data Tatjana Kutzner, Andreas Donaubauer Chair of Geoinformatics [email protected] INSPIRE KEN Schema Transformation Workshop,
A MEDIATION LAYER FOR HETEROGENEOUS XML SCHEMAS
A MEDIATION LAYER FOR HETEROGENEOUS XML SCHEMAS Abdelsalam Almarimi 1, Jaroslav Pokorny 2 Abstract This paper describes an approach for mediation of heterogeneous XML schemas. Such an approach is proposed
KEYWORD SEARCH IN RELATIONAL DATABASES
KEYWORD SEARCH IN RELATIONAL DATABASES N.Divya Bharathi 1 1 PG Scholar, Department of Computer Science and Engineering, ABSTRACT Adhiyamaan College of Engineering, Hosur, (India). Data mining refers to
Luc Boerboom 1, Özgün OskayAlan 2. P.O. Box 217, 7500 AE Enschede, The Netherlands, [email protected]
Implementation, challenges and future directions of integrating services from the GIS and decision science domains; a case of Distributed Spatial Multi-Criteria Evaluation Luc Boerboom 1, Özgün OskayAlan
A View Integration Approach to Dynamic Composition of Web Services
A View Integration Approach to Dynamic Composition of Web Services Snehal Thakkar University of Southern California/ Information Sciences Institute 4676 Admiralty Way, Marina Del Rey, California 90292
ADVANCED GEOGRAPHIC INFORMATION SYSTEMS Vol. II - Using Ontologies for Geographic Information Intergration Frederico Torres Fonseca
USING ONTOLOGIES FOR GEOGRAPHIC INFORMATION INTEGRATION Frederico Torres Fonseca The Pennsylvania State University, USA Keywords: ontologies, GIS, geographic information integration, interoperability Contents
Introduction to the Mapbender OWS Security Proxy
Introduction to the Mapbender OWS Security Proxy Arnulf Christl, WhereGroup GmbH & Co. KG, Bonn, Germany 1/16 Agenda 1 Introduction to the Architecture OWS from Bottom Up with the OSGeo SDI Software Stack
Integrating AJAX Approach into GIS Visualization Web Services
Integrating AJAX Approach into GIS Visualization Web Services Ahmet Sayar 1, 2, *, Marlon Pierce 1 1, 2, 3, 4 and Geoffrey Fox 1 Community Grids Lab, Indiana University, Bloomington, Indiana, 47404, USA
Oracle8i Spatial: Experiences with Extensible Databases
Oracle8i Spatial: Experiences with Extensible Databases Siva Ravada and Jayant Sharma Spatial Products Division Oracle Corporation One Oracle Drive Nashua NH-03062 {sravada,jsharma}@us.oracle.com 1 Introduction
A generic approach for data integration using RDF, OWL and XML
A generic approach for data integration using RDF, OWL and XML Miguel A. Macias-Garcia, Victor J. Sosa-Sosa, and Ivan Lopez-Arevalo Laboratory of Information Technology (LTI) CINVESTAV-TAMAULIPAS Km 6
Catalogue or Register? A Comparison of Standards for Managing Geospatial Metadata
Catalogue or Register? A Comparison of Standards for Managing Geospatial Metadata Gerhard JOOS and Lydia GIETLER Abstract Publication of information items of any kind for discovery purposes is getting
Introduction to Geospatial Web Services
Geospatial Web Services Introduction to Geospatial Web Services An introduction and inventory of geospatial web services and their importance to interoperability in the geospatial domain. vers. 20100604
Modern Databases. Database Systems Lecture 18 Natasha Alechina
Modern Databases Database Systems Lecture 18 Natasha Alechina In This Lecture Distributed DBs Web-based DBs Object Oriented DBs Semistructured Data and XML Multimedia DBs For more information Connolly
14 Databases. Source: Foundations of Computer Science Cengage Learning. Objectives After studying this chapter, the student should be able to:
14 Databases 14.1 Source: Foundations of Computer Science Cengage Learning Objectives After studying this chapter, the student should be able to: Define a database and a database management system (DBMS)
An architecture for open and scalable WebGIS
An architecture for open and scalable WebGIS Aleksandar Milosavljević, Leonid Stoimenov, Slobodanka Djordjević-Kajan CG&GIS Lab, Department of Computer Science Faculty of Electronic Engineering, University
Data Visualization Using Web GIS Software
Data Visualization Using Web GIS Software Tuomas Peltonen Radiation and Nuclear Safety Authority (STUK), Finland NKS NordDSS Workshop, Copenhagen, 1.-2.10.2009 RADIATION AND NUCLEAR SAFETY AUTHORITY Preface
Presentation / Interface 1.3
W3C Recommendations Mobile Web Best Practices 1.0 Canonical XML Version 1.1 Cascading Style Sheets, level 2 (CSS2) SPARQL Query Results XML Format SPARQL Protocol for RDF SPARQL Query Language for RDF
Supporting Database Provenance under Schema Evolution
Supporting Database Provenance under Schema Evolution Shi Gao and Carlo Zaniolo University of California, Los Angeles {gaoshi, zaniolo}@cs.ucla.edu Abstract. Database schema upgrades are common in modern
Webservices Technological Evolutions. Peter Bogaert University of Ghent (Belgium) E Governement Academy 8 Geoservices 15 februari 2006 Kortrijk.
Webservices Technological Evolutions Peter Bogaert University of Ghent (Belgium) Van Mainframe naar een gedistribueerd GIS Geographic Informationsystems From mainframe to distributed systems by means of
