Vector tiles for the Swiss Federal Geoportal

Size: px
Start display at page:

Download "Vector tiles for the Swiss Federal Geoportal"

Transcription

1 Vector tiles for the Swiss Federal Geoportal Ingensand Jens, Marion Nappez1, Cédric Moullet, Loïc Gasser2,Sarah Composto1 1 GIS Lab, University of Applied Sciences Western Switzerland. Route de Cheseaux 1, CH-1401 Yverdon-les-Bains {jens.ingensand, marion.nappez, sarah.composto}@heig-vd.ch 2 Swiss Federal Office of Topography. Seftigenstrasse 264, CH-3084 Wabern {cedric.moullet, loic.gasser}@swisstopo.ch Abstract Vector tiling aims at cutting vector data into smaller entities. It has several advantages for the development of web-mapping systems, such as the possibilities to apply different styles, to access attributes or to render 3D data. In this paper we investigate several parameters that need to be considered for the generation of vector tiles. Furthermore we present several options that will be tested in order to establish vector tile services for future versions of the Swiss Federal Geoportal. Keywords Vector Tiling, Web GIS, WebMapping, Web Services, Geoportal, Vector Data 1 Introduction The principle of vector tiling is similar to raster data tiling where large raster data sets are tiled into smaller pieces and stored in hierarchical structures, either in databases or in file systems. Raster tiling allows for an efficient consumption of raster data through a network connection, for instance using the standardized protocol WMTS (OpenGIS Web Map Tile Service, implementation standard. Within the context of web-mapping systems vector data, as compared to raster data, has several advantages first, vector data allows for more flexibility for rendering maps, such as the possibility to apply different styles or rendering 3D data. Second, it is possible to transfer not only geometries, but also an entities attributes. A third advantage is that, depending on the data layer, the features' attributes, the feature density and the level of detail, data can be compressed at a higher level. A fourth advantage is the fact that data can be reused and transformed on the client side; for instance using coordinate transformation, spatial analysis, and so forth. However transferring vector data from a server also bears certain risks; e.g. the fact that data can be illegally downloaded and reused for other uses that were not intended by the administrators of a server infrastructure. 717

2 The idea of tiled vector data services is to combine both the advantages of vector data with the advantages of tiled raster data services. Figure 1: Screenshot of the Swiss Federal Geoportal map.geo.admin.ch Today the Swiss Federal Geoportal map.geo.admin.ch is the official geoportal of the Swiss state, serving almost 400 data layers (see Figure 1) (Moullet 2015). Map.geo.admin.ch is based on the open-source framework MapFish (mapfish.org) which itself consists of several Python and Javascript libraries such as Pylons ( OpenLayers ( ExtJS ( and GeoExt (geoext.org). The geoportal uses Amazons EC2 and S3 (Amazon 2015) cloud computing infrastructure as a service provider. A majority of the available data layers are generated using WMTS web services; some layers are available as WMS (Web Map Service, services. About 2'500'000'000 WMTS unique raster tiles are stored in the cloud infrastructure (Oesch 2014). One problem in the context of vector tiling is the absence of standards. There are standards for the transfer of vector data such as WFS (Web Feature Service, and standards for serving tiled raster data such as WMTS, but today there is no standard for tiled vector data. Possible reasons for this lack of standards might be found in the complexity of vector tiling. Within the context of the Swiss Federal Geoportal, the goals of the project GeoTile are: to investigate existing vector tile service solutions and to analyze which are the different parameters that need to be taken into account for the implementation of tiled vector services and for the development of 718

3 clients that need to assemble data layers from cut vector data to analyze which of the identified parameters and existing solutions would be usable for the Swiss Federal Geoportal to test different parameters in order to identify the best solution for tiled vector services In the following sections we will illustrate different solutions and concepts for generating, serving and consuming vector tiles. Due to the vast scope of vector tiling, only the most important approaches are cited. Thereafter we will discuss which of these solutions will be tested in the Swiss Federal Geoportal infrastructure in order to identify the solution that is best adapted for future versions of the geoportal. 2 Different approaches to vector tiling 2.1 Regular versus irregular tiling A first question in the context of vector tiling is whether a vector layer should be cut into pieces of regular size (in terms of equally-sized and shaped bounding-boxes, see Figure 2), whether a vector layer should be cut into pieces with a similar payload or if each object (such a polygon or a point) should be stored in a tile of its own (see Figure 2) Figure 2: Examples for irregular and regular vector tiling. Irregular tiling: each object is a tile of its own (left) Regular tiling: a square bounding-box is applied to cut a layer into equallysized and shaped tiles (right) Today several applications such as Google Maps (maps.google.com, Google Inc, Mountain View (CA), USA), GISCloud ( London, UK) or Polymaps (polymaps.org) have adopted the concept of regular vector tiling. One notable example for irregular tiles has been described by Dufilie and Grinstein (2014). In their approach shapes are cut using the TileSplit algorithm into pieces of equal payload. The results are both an overview layer that indicates the positions of the tiles and the tiles themselves. In order to generate tiles for different levels of detail, the authors used Visvalingam's algorithm (Visvlingam and Whyatt 1992). 719

4 2.2 Formats for storing and transferring vector tiles Similar to raster tiles, vector tiles can be stored in database structures or file systems. Two common formats for transferring vector data in a web context are XML-based formats such as GML and JSON-based formats such as GeoJSON and TopoJSON. Both types of formats have advantages and disadvantages. XMLbased formats are extensible and offer several possibilities to verify data. The disadvantage of XML-based formats is the fact that much storage is used for tags. JSON files on the other hand need less space and JSON files are easily parsed using Javascript (JSON 2015) 2.3 Generalization and simplification of vector data Depending on the zoom level, data needs to be simplified and generalized in order to maintain readability and payload. Several methods and algorithms could be used within the context of tiled vector data. One possibility to generalize vector data is the GAP (Generalized Area Partitioning) tree method which focuses on topological area data. This method identifies the importance of areas. Depending on the level of detail less important areas are removed (Van Oosterom 1993). Tinghua and Van Oosterom 2002 have extended this method in order to include bridge areas between aggregated polygons. Another algorithm described by Visvlingam and Whyatt (2002) focuses on the importance of a line's edges. In this method an edges neighbors are used to calculate the area of a triangle. Depending of the calculated area, an edge is considered more or less important. If the line needs to be simplified, less important edges are removed. This method can be used both for linear features as well as for area features. The Douglas-Peucker (Douglas and Peucker1973) algorithm is perhaps the most widely used algorithm for generalization in GIS software. The algorithm uses distances between the points of a line to determine which points can be omitted. For point features, there are basically two possibilities to reduce the number of points: Either points can be grouped into clusters, for instance using the KMeans clustering algorithm (MacQueen 1967), or thinned such as described by for instance Moenning and Dodgson (2003). In both cases the loss of information (e.g. in terms of attributes) is an important subject to consider. 2.4 Attribute handling If geometric entities are cut into several pieces, one important question is how attributes are handled. One solution to this problem is to replicate the attributes to all pieces of the cut vector feature and thus to increase the overall payload. Another possibility is to attach the attributes to one of the pieces and to enable clients to reassemble geometries and attributes. A third solution is to transfer attribute data separately and independently from the geometries. 720

5 2.5 Client-side object assembly A challenge in the context of vector tiling is the assembly of cut entities into the original vector features. The main question is how a client can know that all pieces of one entity have been transferred. The simplest method is to check all tiles that have been received for e.g. the existence of pieces of one specific entity. The drawback of this method is the time that is necessary to analyze all tiles. Another method has been described by Nordan (2012) in order to locate pieces of tiled vector features, pointers can be included in the pieces, indicating in which directions a client needs to look for more pieces. 3 Identification of the best approach In order to find the method that is best adapted for the Swiss Federal Geoportal, a testbed has been deployed. This testbed includes a copy of several data layers stored in PostgreSQL/PostGIS databases. Python scripts will be used to connect to these data sources and to produce vector tiles. The following options have been chosen: Only tiles with equally shaped bounding-boxes will be generated (regular tiling). The reasons for this decision are that the effort to generate irregularly shaped tiles appears to be greater than for generating regularly shaped tiles; second OpenLayers, the Javascript library that is used in the geoportal already has a built in support for regularly shaped raster-tiles (WMTS). Thereby an extension of this library (in order to enable the consumption of vector tiles) would be easier to accomplish. Furthermore an idea is to use the WMTS tile-indexation for the generation of the tiles (e.g. a vector tile would be addressed using a similar URL as a raster tile) to simplify the assembly of both raster- and vector tiles in a client. Several algorithms for the generalization of vector tiles will be tested. All tiles at all levels of detail will be generated at once. Thereafter we will analyze the payload, the stored features, etc. with statistical methods. Only JSON-based formats will be considered. The main reason is that JSON-based formats are lighter than XML-based formats in terms of payload and data processing. Attributes will be handled in separate files, independently from the vector tiles. This has the advantage that no redundant data will be generated. The main objective of our approach is to find a solution that balances flexibility, performance and complexity. Important parameters that will be considered are the payload of the generated tiles as well as the time it takes to generate the tiles for a given layer. Moreover the generated tiles will be used as a repository for the development of the Javascript client. 4 Discussion and conclusions Vector tiling paired with webgl-enabled Javascript libraries permits to create high-performance web-mapping applications. Today mostly proprietary solutions such as Google Maps are using vector tiles. We can state that there is a lack of standards for the generation and consumption of vector tiles. Vector tiling however is a complex subject as there are many different possibilities to 721

6 implement such services depending on the context of the application. In Google Maps for instance there is a limited number of data layers available, however these data layers cover the surface of the entire planet. The Swiss Geoportal on the other hand offers hundreds of data layers from point feature layers containing all addresses in the whole of Switzerland to polygon layers with all of Switzerland's buildings. Our approach to tiled vector data refers to existing standards such as the WMTS tile indexing and JSON-based file formats. Moreover we will use a testbed that enables empirical testing of different alternatives. Since this project is an ongoing project, at the time of writing no empirical results are available. References Amazon (2015): AWS Case Study: Swisstopo. Amazon web services portal: ( ) Douglas, D., Peucker T. (1973): Algorithms for the reduction of the number of points required to represent a digitized line or its caricature. In: The Canadian Cartographer. (10) , pages Dufilie and Grinstein (2014): Feathered Tiles with Uniform Payload Size for Progressive Transmission of Vector Data. In: Pfoser and Li (eds): Web and Wireless Geographical Information Systems. 13th International Symposium, W2GIS 2014, Seoul, South Korea, May 29-30, Proceedings. Pages Springer JSON (2015): JSON: The Fat-Free ( ) Alternative to XML. MacQueen, J.B. (1967): Some Methods for classification and Analysis of Multivariate Observations, Proceedings of 5th Berkeley Symposium on Mathematical Statistics and Probability, Berkeley, University of California Press, 1: Moenning, C. and Dodgson, N.A (2003) A new point cloud simplification algorithm. Proceedings of the 3d IASTED International Conference on Visualization, Imaging and Image Processing (VIIP 2003), 8-10 September 2003, Benalmádena, Spain Moullet, C. (2015): Géoportail de la confédération map.geo.admin.ch: contenu et évolution technologique. Journée de veille technologique IGSO, , Yverdon-les-Bains, Suisse Nordan, R.P. (2012) An Investigation of Potential Methods for Topology Preservation in Interactive Vector Tile Map Applications. Trondheim University, Norway. 722

7 Oesch, D. (2014): The Swiss Federal Geoportal - more than maps. Geospatial World Forum Geneva. Tinghua, A. and Van Oosterom, P (2002): GAP-Tree Extensions Based on Skeletons. In: Proceedings of the 10 th International Symposium on Spatial Data Handling. July , Ottawa, Canada Van Oosterom, P (1993). The GAP-tree, an approach to On-the-Fly Map generalization of an Area Partitioning. In: Proceedings of the GISDATA Specialist Meeting of Generalization. Compiègne, France, December 1993 Visvalingam, M. and Whyatt, J.D. (1992): Line Generalisation by Repeated Elimination of the Smalles Area. Cartographic Journal., 30 (1) pages

8 724

Vector Web Mapping Past, Present and Future. Jing Wang MRF Geosystems Corporation

Vector Web Mapping Past, Present and Future. Jing Wang MRF Geosystems Corporation Vector Web Mapping Past, Present and Future Jing Wang MRF Geosystems Corporation Oct 27, 2014 Terms Raster and Vector [1] Cells and Pixel Geometrical primitives 2 Early 2000s From static to interactive

More information

Interoperable Solutions in Web-based Mapping

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

More information

Standardized data sharing through an open-source Spatial Data Infrastructure: the Afromaison project

Standardized data sharing through an open-source Spatial Data Infrastructure: the Afromaison project Standardized data sharing through an open-source Spatial Data Infrastructure: the Afromaison project Yaniss Guigoz - University of Geneva/GRID-Geneva 1 EcoARM2ERA and AFROMAISON Why Afromaison in this

More information

Design Requirements for an AJAX and Web-Service Based Generic Internet GIS Client

Design Requirements for an AJAX and Web-Service Based Generic Internet GIS Client 11th AGILE International Conference on Geographic Information Science 2008 Page 1 of 6 Design Requirements for an AJAX and Web-Service Based Generic Internet GIS Client Edward Nash 1, Peter Korduan 1,

More information

REAL-TIME DATA GENERALISATION AND INTEGRATION USING JAVA

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 lars.harrie@lantm.lth.se, micke.j@goteborg.utfors.se KEY WORDS:

More information

OSGeo Web Mapping Typification: GeoMajas, Mapbender, MapFish and OpenLayers. Christoph Baudson Arnulf Christl FOSS4G 2010 Barcelona

OSGeo Web Mapping Typification: GeoMajas, Mapbender, MapFish and OpenLayers. Christoph Baudson Arnulf Christl FOSS4G 2010 Barcelona OSGeo Web Mapping Typification: GeoMajas, Mapbender, MapFish and OpenLayers Christoph Baudson Arnulf Christl FOSS4G 2010 Barcelona Disclaimer All information contained in this presentation has been compiled

More information

Institute of Computational Modeling SB RAS

Institute of Computational Modeling SB RAS Institute of Computational Modeling SB RAS ORGANIZATION OF ACCESS TO OBSERVATIONAL DATA USING WEB SERVICES FOR MONITORING SYSTEMS THE STATE OF THE ENVIRONMENT Kadochnikov Aleksey A. Russia, Krasnoyarsk

More information

Study of GML-Based Geographical Data Visualization Strategy

Study of GML-Based Geographical Data Visualization Strategy Study of GML-Based Geographical Data Visualization Strategy ZHANG LIN 1, CHEN SHI-BIN 2 1 College of Information Technology, ZheJiang University of Finance & Economics, HangZhou 310012, China 2 College

More information

Analysis of the Free GIS Software Applications in respect to INSPIRE services and OGC standards

Analysis of the Free GIS Software Applications in respect to INSPIRE services and OGC standards Analysis of the Free GIS Software Applications in respect to INSPIRE services and OGC standards Authors: Francesco D'Alesio Peter Hopfgartner Paolo Viskanic June 2011 Executive Summary This document analyses

More information

Leveraging Cloud-Based Mapping Solutions

Leveraging Cloud-Based Mapping Solutions Leveraging Cloud-Based Mapping Solutions GeoAlberta October 28, 2014 Laura Kerssens Safe Software Agenda To the Cloud Using Basic Services Cloud Applications Web Services Cloud-Hosted Databases Real-time

More information

County of Los Angeles. Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) September 2014

County of Los Angeles. Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) September 2014 County of Los Angeles Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) September 2014 CIO Preferred Technologies for GIS This document lists the preferred Geographic

More information

GEOENGINE MSc in Geomatics Engineering, Master Thesis Gina Campuzano

GEOENGINE MSc in Geomatics Engineering, Master Thesis Gina Campuzano Master Thesis Gina CAMPUZANO Gina Campuzano Development of a GIS web application as a tool for learning of environmental protection -Comparison between MapServer and GeoServer constructing a tool for not

More information

MAP GENERALIZATION FOR OSMASTERMAP DATA IN LOCATION BASED SERVICES & MOBILE GIS APPLICATIONS

MAP GENERALIZATION FOR OSMASTERMAP DATA IN LOCATION BASED SERVICES & MOBILE GIS APPLICATIONS Geoinformatics 2004 Proc. 12th Int. Conf. on Geoinformatics Geospatial Information Research: Bridging the Pacific and Atlantic University of Gävle, Sweden, 7-9 June 2004 MAP GENERALIZATION FOR OSMASTERMAP

More information

A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION

A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION A HYBRID APPROACH FOR AUTOMATED AREA AGGREGATION Zeshen Wang ESRI 380 NewYork Street Redlands CA 92373 Zwang@esri.com ABSTRACT Automated area aggregation, which is widely needed for mapping both natural

More information

1. Introduction ABSTRACT

1. Introduction ABSTRACT ISPRS SIPT IGU UCI CIG ACSG Table of contents Table des matières Authors index Index des auteurs Search Recherches Exit Sortir Oceans Management Internet Mapping Application (OMIMA): A GIS Web-Based Tool

More information

Correspondence can be sent to: GeoConnections Natural Resources Canada 615 Booth Street Ottawa, Ontario K1A 0E9

Correspondence can be sent to: GeoConnections Natural Resources Canada 615 Booth Street Ottawa, Ontario K1A 0E9 Quick Guide for CGDI Service Compliance Testing and Performance Optimization May 12, 2009 Correspondence can be sent to: GeoConnections Natural Resources Canada 615 Booth Street Ottawa, Ontario K1A 0E9

More information

Urban Planning -794 Internet Geographic Information Systems Fall 2012

Urban Planning -794 Internet Geographic Information Systems Fall 2012 Urban Planning -794 Internet Geographic Information Systems Fall 2012 Instructor: Melissa Mann (mmann@uwm.edu) Manager: Kurt Meingast (kurtm@uwm.edu) Schedule: Class: Monday, 5:30 6:45, SARUP 158 : Monday,

More information

MapServer and OGC Standards in real life (and saving real lives) Daniel Morissette, Mapgears dmorissette@mapgears.com

MapServer and OGC Standards in real life (and saving real lives) Daniel Morissette, Mapgears dmorissette@mapgears.com MapServer and OGC Standards in real life (and saving real lives) Daniel Morissette, Mapgears dmorissette@mapgears.com 1 Mapgears Team of MapServer experts (we're the developers) assisting application developers

More information

AN INTRODUCTION TO MAPBOX TOOLS AND SOFTWARE. Matt Gregory 24 July 2013

AN INTRODUCTION TO MAPBOX TOOLS AND SOFTWARE. Matt Gregory 24 July 2013 AN INTRODUCTION TO MAPBOX TOOLS AND SOFTWARE Matt Gregory 24 July 2013 BACKGROUND AND MOTIVATION Research involves regionalscale vegetation modeling (mapping) where every pixel is associated with a treelist

More information

Neues vom QGIS Server und QGIS-Webclient

Neues vom QGIS Server und QGIS-Webclient FOSSGIS 2012 Neues vom QGIS Server und QGIS-Webclient Pirmin Kalberer Sourcepole AG, Pfäffikon SZ www.sourcepole.ch Über Sourcepole > QGIS > Core dev. & Project Steering Commitee > Printing, QGIS Server,

More information

Open Source Visualisation with ADAGUC Web Map Services

Open Source Visualisation with ADAGUC Web Map Services Open Source Visualisation with ADAGUC Web Map Services Maarten Plieger Ernst de Vreede John van de Vegte, Wim Som de Cerff, Raymond Sluiter, Ian van der Neut, Jan Willem Noteboom 1 ADAGUC project Cooperative

More information

Investigating Hadoop for Large Spatiotemporal Processing Tasks

Investigating Hadoop for Large Spatiotemporal Processing Tasks Investigating Hadoop for Large Spatiotemporal Processing Tasks David Strohschein dstrohschein@cga.harvard.edu Stephen Mcdonald stephenmcdonald@cga.harvard.edu Benjamin Lewis blewis@cga.harvard.edu Weihe

More information

Geospatially Enabling the World: The Convergence of Geospatial and Architectural and Engineering Design

Geospatially Enabling the World: The Convergence of Geospatial and Architectural and Engineering Design Geospatially Enabling the World: The Convergence of Geospatial and Architectural and Engineering Design Geoff Zeiss Director of Technology Autodesk Map Middle East Dubai 2007 1 Overview Geospatial inflection

More information

SCALABILITY OF CONTEXTUAL GENERALIZATION PROCESSING USING PARTITIONING AND PARALLELIZATION. Marc-Olivier Briat, Jean-Luc Monnot, Edith M.

SCALABILITY OF CONTEXTUAL GENERALIZATION PROCESSING USING PARTITIONING AND PARALLELIZATION. Marc-Olivier Briat, Jean-Luc Monnot, Edith M. SCALABILITY OF CONTEXTUAL GENERALIZATION PROCESSING USING PARTITIONING AND PARALLELIZATION Abstract Marc-Olivier Briat, Jean-Luc Monnot, Edith M. Punt Esri, Redlands, California, USA mbriat@esri.com, jmonnot@esri.com,

More information

Developer Tutorial Version 1. 0 February 2015

Developer Tutorial Version 1. 0 February 2015 Developer Tutorial Version 1. 0 Contents Introduction... 3 What is the Mapzania SDK?... 3 Features of Mapzania SDK... 4 Mapzania Applications... 5 Architecture... 6 Front-end application components...

More information

Cloud Computing and Government Services August 2013 Serdar Yümlü SAMPAŞ Information & Communication Systems

Cloud Computing and Government Services August 2013 Serdar Yümlü SAMPAŞ Information & Communication Systems eenviper White Paper #4 Cloud Computing and Government Services August 2013 Serdar Yümlü SAMPAŞ Information & Communication Systems 1 Executive Summary Cloud computing could revolutionise public services

More information

Implementation of information system to respond to a nuclear emergency affecting agriculture and food products - Case of Morocco

Implementation of information system to respond to a nuclear emergency affecting agriculture and food products - Case of Morocco Centre National de l énergie des sciences et techniques nucléaires (CNESTEN-Morocco) Implementation of information system to respond to a nuclear emergency affecting agriculture and food products - Case

More information

Integration of location based services for Field support in CRM systems

Integration of location based services for Field support in CRM systems Invited Contribution to GeoInformatics. Deadline September 15, 2001. Integration of location based services for Field support in CRM systems By P. Álvarez, J.A. Bañares, P.R. Muro-Medrano and F.J. Zarazaga

More information

Towards Generalization Processes of LiDAR Data based on GRID and OGC Web Processing Services

Towards Generalization Processes of LiDAR Data based on GRID and OGC Web Processing Services Towards Generalization Processes of LiDAR Data based on GRID and OGC Web Processing Services Sandra Lanig 1, Alexander Zipf 1 1 Department of Geography, Chair of Cartography, University of Bonn {lanig,zipf}@geographie.uni-bonn.de

More information

Open Source Geospatial Software. Bob Bruce, P.Eng Mapping and Lands Branch, Manitoba Conservation WWW.HWPS.CA Bob.Bruce@gov.mb.ca

Open Source Geospatial Software. Bob Bruce, P.Eng Mapping and Lands Branch, Manitoba Conservation WWW.HWPS.CA Bob.Bruce@gov.mb.ca A Survey of Open Source Geospatial Software Bob Bruce, P.Eng Mapping and Lands Branch, Manitoba Conservation WWW.HWPS.CA Bob.Bruce@gov.mb.ca APEGM PD Breakfast Tuesday, 12 June 2007 access this presentation

More information

Effective Vector Data Transmission and Visualization Using HTML5

Effective Vector Data Transmission and Visualization Using HTML5 Effective Vector Data Transmission and Visualization Using HTML5 Padraig Corcoran 1, Peter Mooney 1, Adam Winstanley 1 and Michela Bertolotto 2 1 Department of Computer Science, National University of

More information

ArcGIS. Server. A Complete and Integrated Server GIS

ArcGIS. Server. A Complete and Integrated Server GIS ArcGIS Server A Complete and Integrated Server GIS ArcGIS Server A Complete and Integrated Server GIS ArcGIS Server enables you to distribute maps, models, and tools to others within your organization

More information

GeoKettle: A powerful open source spatial ETL tool

GeoKettle: A powerful open source spatial ETL tool GeoKettle: A powerful open source spatial ETL tool FOSS4G 2010 Dr. Thierry Badard, CTO Spatialytics inc. Quebec, Canada tbadard@spatialytics.com Barcelona, Spain Sept 9th, 2010 What is GeoKettle? It is

More information

A Web-based Geospatial Analysis Tool for BREA: Integrating Research into an Assessment. Valerie Torontow and Jason Duffe Environment Canada Ottawa, ON

A Web-based Geospatial Analysis Tool for BREA: Integrating Research into an Assessment. Valerie Torontow and Jason Duffe Environment Canada Ottawa, ON A Web-based Geospatial Analysis Tool for BREA: Integrating Research into an Assessment Valerie Torontow and Jason Duffe Environment Canada Ottawa, ON Overview Part 1: Introduction Part 2: Methodology The

More information

The ORIENTGATE data platform

The ORIENTGATE data platform Seminar on Proposed and Revised set of indicators June 4-5, 2014 - Belgrade (Serbia) The ORIENTGATE data platform WP2, Action 2.4 Alessandra Nuzzo, Sandro Fiore, Giovanni Aloisio Scientific Computing and

More information

CLOUD BASED N-DIMENSIONAL WEATHER FORECAST VISUALIZATION TOOL WITH IMAGE ANALYSIS CAPABILITIES

CLOUD BASED N-DIMENSIONAL WEATHER FORECAST VISUALIZATION TOOL WITH IMAGE ANALYSIS CAPABILITIES CLOUD BASED N-DIMENSIONAL WEATHER FORECAST VISUALIZATION TOOL WITH IMAGE ANALYSIS CAPABILITIES M. Laka-Iñurrategi a, I. Alberdi a, K. Alonso b, M. Quartulli a a Vicomteh-IK4, Mikeletegi pasealekua 57,

More information

GIS Databases With focused on ArcSDE

GIS Databases With focused on ArcSDE Linköpings universitet / IDA / Div. for human-centered systems GIS Databases With focused on ArcSDE Imad Abugessaisa g-imaab@ida.liu.se 20071004 1 GIS and SDBMS Geographical data is spatial data whose

More information

Developing Wireless GIS: Using Java and XML Technologies

Developing Wireless GIS: Using Java and XML Technologies Developing Wireless GIS: Using Java and XML Technologies Hossein Mohammadi GIS Dept., Faculty of Geodesy and Geomatics Eng. K.N. Toosi University of Technology Vali_Asr St., Mirdamad Cross, Tehran, Iran,

More information

ADVANCED DATA STRUCTURES FOR SURFACE STORAGE

ADVANCED DATA STRUCTURES FOR SURFACE STORAGE 1Department of Mathematics, Univerzitni Karel, Faculty 22, JANECKA1, 323 of 00, Applied Pilsen, Michal, Sciences, Czech KARA2 Republic University of West Bohemia, ADVANCED DATA STRUCTURES FOR SURFACE STORAGE

More information

Web Mapping in Archaeology

Web Mapping in Archaeology Non-invasive methods in the contemporary archaeological practice 25th February 2014 http://www.pborycki.pl/pdf/webmapping.pdf Plan of the presentation 1 Web Mapping General Idea History of Web Mapping

More information

Oracle Platform GIS & Location-Based Services. Fred Louis Solution Architect Ohio Valley

Oracle Platform GIS & Location-Based Services. Fred Louis Solution Architect Ohio Valley Oracle Platform GIS & Location-Based Services Fred Louis Solution Architect Ohio Valley Overview Geospatial Technology Trends Oracle s Spatial Technologies Oracle10g Locator Spatial Oracle Application

More information

VISUAL INSPECTION OF EO DATA AND PRODUCTS - OVERVIEW

VISUAL INSPECTION OF EO DATA AND PRODUCTS - OVERVIEW WMS services from the EUMETSAT real-time Image Gallery Uwe Voges (1), Michael Schick (2), Udo Einspanier (1) (1) con terra GmbH Martin-Luther-King-Weg 24, 48155, Münster, Germany EMail: (U.Voges U.Einspanier)@conterra.de

More information

A Java Tool for Creating ISO/FGDC Geographic Metadata

A Java Tool for Creating ISO/FGDC Geographic Metadata F.J. Zarazaga-Soria, J. Lacasta, J. Nogueras-Iso, M. Pilar Torres, P.R. Muro-Medrano17 A Java Tool for Creating ISO/FGDC Geographic Metadata F. Javier Zarazaga-Soria, Javier Lacasta, Javier Nogueras-Iso,

More information

PROGRESSIVE TRANSMISSION AND VISUALIZATION OF VECTOR DATA OVER WEB INTRODUCTION

PROGRESSIVE TRANSMISSION AND VISUALIZATION OF VECTOR DATA OVER WEB INTRODUCTION PROGRESSIVE TRANSMISSION AND VISUALIZATION OF VECTOR DATA OVER WEB Tinghua Ai and Jingzhong Li School of Resource and Environment Sciences Wuhan University, China ABSTRACT The progressive transmission

More information

Environment Canada Data Management Program. Paul Paciorek Corporate Services Branch May 7, 2014

Environment Canada Data Management Program. Paul Paciorek Corporate Services Branch May 7, 2014 Environment Canada Data Management Program Paul Paciorek Corporate Services Branch May 7, 2014 EC Data Management Program (ECDMP) consists of 5 foundational, incremental projects which will implement

More information

Web and Mobile GIS Applications Development

Web and Mobile GIS Applications Development Web and Mobile GIS Applications Development Presented by : Aamir Ali Manager Section Head (GIS Software Customization) Pakistan Space and Upper Atmosphere Research Commission (SUPARCO) Geographical Information

More information

Visualisation in the Google Cloud

Visualisation in the Google Cloud Visualisation in the Google Cloud by Kieran Barker, 1 School of Computing, Faculty of Engineering ABSTRACT Providing software as a service is an emerging trend in the computing world. This paper explores

More information

CityGML goes to Broadway

CityGML goes to Broadway CityGML goes to Broadway Thomas H. Kolbe, Barbara Burger, Berit Cantzler Chair of Geoinformatics thomas.kolbe@tum.de September 11, 2015 Photogrammetric Week 2015, Stuttgart The New York City Open Data

More information

GIS Initiative: Developing an atmospheric data model for GIS. Olga Wilhelmi (ESIG), Jennifer Boehnert (RAP/ESIG) and Terri Betancourt (RAP)

GIS Initiative: Developing an atmospheric data model for GIS. Olga Wilhelmi (ESIG), Jennifer Boehnert (RAP/ESIG) and Terri Betancourt (RAP) GIS Initiative: Developing an atmospheric data model for GIS Olga Wilhelmi (ESIG), Jennifer Boehnert (RAP/ESIG) and Terri Betancourt (RAP) Unidata seminar August 30, 2004 Presentation Outline Overview

More information

<Insert Picture Here> Data Management Innovations for Massive Point Cloud, DEM, and 3D Vector Databases

<Insert Picture Here> Data Management Innovations for Massive Point Cloud, DEM, and 3D Vector Databases Data Management Innovations for Massive Point Cloud, DEM, and 3D Vector Databases Xavier Lopez, Director, Product Management 3D Data Management Technology Drivers: Challenges & Benefits

More information

MOBILE GEOGRAPHIC INFORMATION SYSTEMS: A CASE STUDY ON MANSOURA UNIVERSITY, EGYPT

MOBILE GEOGRAPHIC INFORMATION SYSTEMS: A CASE STUDY ON MANSOURA UNIVERSITY, EGYPT MOBILE GEOGRAPHIC INFORMATION SYSTEMS: A CASE STUDY ON MANSOURA UNIVERSITY, EGYPT Asmaa Ahmed Hussein 1, Elkhedr Hassan Eibrahim 2, Aziza Asem 1 1 Faculty of Computer Sciences and information systems,

More information

_ LUCIADRIA PRODUCT DATA SHEET

_ LUCIADRIA PRODUCT DATA SHEET _ LUCIADRIA PRODUCT DATA SHEET V2015.1 LuciadRIA offers browser-based geospatial situational awareness with the fluidity and speed of a desktop application. The software components of LuciadRIA have been

More information

How To Use Gis

How To Use Gis Welcome Understanding Purpose Creating Relationships You A Global Community of GIS Professionals Changing the World Together Applying Geography Everywhere Your WORK Showcasing Your Web Apps Vision Applying

More information

ArcGIS Online School Locator

ArcGIS Online School Locator ArcGIS Online School Locator G-Cloud Services RM 1557vi Service Definition Esri UK G-Cloud 6 Lot 3 SaaS Services Crown Commercial Service Acknowledgement Esri and ArcGIS are trademarks, registered trademarks,

More information

Oklahoma s Open Source Spatial Data Clearinghouse: OKMaps

Oklahoma s Open Source Spatial Data Clearinghouse: OKMaps Oklahoma s Open Source Spatial Data Clearinghouse: OKMaps Presented by: Mike Sharp State Geographic Information Coordinator Oklahoma Office of Geographic Information MAGIC 2014 Symposium April 28-May1,

More information

G-Cloud Service Definition Cadcorp Web Map Layers

G-Cloud Service Definition Cadcorp Web Map Layers G-Cloud Service Definition Cadcorp Web Map Layers Ref: RM1557/iii Government Procurement Services G-Cloud III Contents 1. Introduction... 3 2. Service Overview... 4 2.1 Web Map Layers... 4 2.2 Initial

More information

Enabling embedded maps

Enabling embedded maps Enabling embedded maps Case: National geoportal of Finland Antti Rainio National Land Survey of Finland Trends: Web Services, Mapping Mashup, Open Source, Open Data Decentralised data s Service interfaces

More information

Chapter 6: Data Acquisition Methods, Procedures, and Issues

Chapter 6: Data Acquisition Methods, Procedures, and Issues Chapter 6: Data Acquisition Methods, Procedures, and Issues In this Exercise: Data Acquisition Downloading Geographic Data Accessing Data Via Web Map Service Using Data from a Text File or Spreadsheet

More information

Web Map Context Service for Adaptive Geospatial Data Visualization

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,

More information

Geospatial Cloud Computing - Perspectives for

Geospatial Cloud Computing - Perspectives for Geospatial Cloud Computing - Perspectives for Startups and Open Source Projects The Cases of OpenWebGlobe and 3D Vision Mobile Mapping for Urban Infrastructure Management Prof. Dr. Stephan Nebiker FHNW

More information

Open Source Software and Open Interoperability Standards at EDINA National Datacentre

Open Source Software and Open Interoperability Standards at EDINA National Datacentre Open Source Software and Open Interoperability Standards at EDINA National Datacentre Joe Vernon November 25, 2009 Slide 1 of 18 Overview of Presentation Introducing EDINA national datacentre Our thoughts

More information

Geographic Web Application

Geographic Web Application University of L Aquila Department of Electrical and Information Engineering Geographic Web Application Enrico Ippoliti Building complete web applications This section discuss how to build complete web

More information

How to Design and Create Your Own Custom Ext Rep

How to Design and Create Your Own Custom Ext Rep Combinatorial Block Designs 2009-04-15 Outline Project Intro External Representation Design Database System Deployment System Overview Conclusions 1. Since the project is a specific application in Combinatorial

More information

How To Write An Nccwsc/Csc Data Management Plan

How To Write An Nccwsc/Csc Data Management Plan Guidance and Requirements for NCCWSC/CSC Plans (Required for NCCWSC and CSC Proposals and Funded Projects) Prepared by the CSC/NCCWSC Working Group Emily Fort, Data and IT Manager for the National Climate

More information

GIS 101 - Introduction to Geographic Information Systems Last Revision or Approval Date - 9/8/2011

GIS 101 - Introduction to Geographic Information Systems Last Revision or Approval Date - 9/8/2011 Page 1 of 10 GIS 101 - Introduction to Geographic Information Systems Last Revision or Approval Date - 9/8/2011 College of the Canyons SECTION A 1. Division: Mathematics and Science 2. Department: Earth,

More information

Cloud application for water resources modeling. Faculty of Computer Science, University Goce Delcev Shtip, Republic of Macedonia

Cloud application for water resources modeling. Faculty of Computer Science, University Goce Delcev Shtip, Republic of Macedonia Cloud application for water resources modeling Assist. Prof. Dr. Blagoj Delipetrev 1, Assist. Prof. Dr. Marjan Delipetrev 2 1 Faculty of Computer Science, University Goce Delcev Shtip, Republic of Macedonia

More information

SUMMER SCHOOL ON ADVANCES IN GIS

SUMMER SCHOOL ON ADVANCES IN GIS SUMMER SCHOOL ON ADVANCES IN GIS Six Workshops Overview The workshop sequence at the UMD Center for Geospatial Information Science is designed to provide a comprehensive overview of current state-of-the-art

More information

Web Development of Spatial Content Management System through the Use of Free and Open-Source Technologies. Case Study in Rural Areas

Web Development of Spatial Content Management System through the Use of Free and Open-Source Technologies. Case Study in Rural Areas Journal of Geographic Information System, 2015, 7, 527-540 Published Online October 2015 in SciRes. http://www.scirp.org/journal/jgis http://dx.doi.org/10.4236/jgis.2015.75042 Web Development of Spatial

More information

NATIONAL CLIMATE CHANGE & WILDLIFE SCIENCE CENTER & CLIMATE SCIENCE CENTERS DATA MANAGEMENT PLAN GUIDANCE

NATIONAL CLIMATE CHANGE & WILDLIFE SCIENCE CENTER & CLIMATE SCIENCE CENTERS DATA MANAGEMENT PLAN GUIDANCE NATIONAL CLIMATE CHANGE & WILDLIFE SCIENCE CENTER & CLIMATE SCIENCE CENTERS DATA MANAGEMENT PLAN GUIDANCE Prepared by: NCCWSC/CSC Data Management Working Group US Geological Survey February 26, 2013 Version

More information

What is GIS? Geographic Information Systems. Introduction to ArcGIS. GIS Maps Contain Layers. What Can You Do With GIS? Layers Can Contain Features

What is GIS? Geographic Information Systems. Introduction to ArcGIS. GIS Maps Contain Layers. What Can You Do With GIS? Layers Can Contain Features What is GIS? Geographic Information Systems Introduction to ArcGIS A database system in which the organizing principle is explicitly SPATIAL For CPSC 178 Visualization: Data, Pixels, and Ideas. What Can

More information

Two-Tier Architecture for Web Mapping with NoSQL Database CouchDB

Two-Tier Architecture for Web Mapping with NoSQL Database CouchDB 62 Two-Tier Architecture for Web Mapping with NoSQL Database CouchDB Mario MILER, Damir MEDAK and Drazen ODOBASIC The GI_Forum Program Committee accepted this paper as reviewed full paper. Abstract Two

More information

Vector storage and access; algorithms in GIS. This is lecture 6

Vector storage and access; algorithms in GIS. This is lecture 6 Vector storage and access; algorithms in GIS This is lecture 6 Vector data storage and access Vectors are built from points, line and areas. (x,y) Surface: (x,y,z) Vector data access Access to vector

More information

ARCHITECTURE OF INTEGRATED GIS AND GPS FOR VEHICLE MONITORING

ARCHITECTURE OF INTEGRATED GIS AND GPS FOR VEHICLE MONITORING 1 st Logistics International Conference Belgrade, Serbia 28-30 November 2013 ARCHITECTURE OF INTEGRATED GIS AND GPS FOR VEHICLE MONITORING Adela B. Crnišanin * State University of Novi Pazar, Department

More information

Geoprocessing in Hybrid Clouds

Geoprocessing in Hybrid Clouds Geoprocessing in Hybrid Clouds Theodor Foerster, Bastian Baranski, Bastian Schäffer & Kristof Lange Institute for Geoinformatics, University of Münster, Germany {theodor.foerster; bastian.baranski;schaeffer;

More information

LSD APC Part I Workshop Geographic Information System. Danny Yeung 14 November 2015

LSD APC Part I Workshop Geographic Information System. Danny Yeung 14 November 2015 LSD APC Part I Workshop Geographic Information System Danny Yeung 14 November 2015 Purposes To help LSD probationers to prepare for the LSD APC Part I Written Assessment to be held in December 2015. To

More information

A Business Process Services Portal

A Business Process Services Portal A Business Process Services Portal IBM Research Report RZ 3782 Cédric Favre 1, Zohar Feldman 3, Beat Gfeller 1, Thomas Gschwind 1, Jana Koehler 1, Jochen M. Küster 1, Oleksandr Maistrenko 1, Alexandru

More information

GIS Data in ArcGIS. Pay Attention to Data!!!

GIS Data in ArcGIS. Pay Attention to Data!!! GIS Data in ArcGIS Pay Attention to Data!!! 1 GIS Data Models Vector Points, lines, polygons, multi-part, multi-patch Composite & secondary features Regions, dynamic segmentation (routes) Raster Grids,

More information

INTEROPERABLE IMAGE DATA ACCESS THROUGH ARCGIS SERVER

INTEROPERABLE IMAGE DATA ACCESS THROUGH ARCGIS SERVER INTEROPERABLE IMAGE DATA ACCESS THROUGH ARCGIS SERVER Qian Liu Environmental Systems Research Institute 380 New York Street Redlands, CA92373, U.S.A - qliu@esri.com KEY WORDS: OGC, Standard, Interoperability,

More information

What's new in gvsig Desktop 2.0

What's new in gvsig Desktop 2.0 What's new in gvsig Desktop 2.0 What are the novelties? 2.0 1.12 Migrating and building... Some examples... Please pardon our appearance during construction Pie and bar chart legends Table in layout 1.12

More information

3D Building Roof Extraction From LiDAR Data

3D Building Roof Extraction From LiDAR Data 3D Building Roof Extraction From LiDAR Data Amit A. Kokje Susan Jones NSG- NZ Outline LiDAR: Basics LiDAR Feature Extraction (Features and Limitations) LiDAR Roof extraction (Workflow, parameters, results)

More information

Use of NASA World Wind Java SDK for Three-Dimensional Accessibility Visualization of Remote Areas in Lao P.D.R.

Use of NASA World Wind Java SDK for Three-Dimensional Accessibility Visualization of Remote Areas in Lao P.D.R. Use of NASA World Wind Java SDK for Three-Dimensional Accessibility Visualization of Remote Areas in Lao P.D.R. Adrian Weber 1, Andreas Heinimann 2, Peter Messerli 2 1 Institute of Cartography, ETH Zurich,

More information

GENERATION OF TOPOGRAPHIC

GENERATION OF TOPOGRAPHIC GENERATION OF TOPOGRAPHIC MAP APPLYING AUTOMATIC GENERALIZATION Luz Angela Rocha Salamanca Universidad Distrital F.J.C. E-mail: lrocha@udistrital.edu.co NIDE Research Group Natalia Esperanza Bustacara

More information

The Virtual Database A Tool for Integrated Data Processing in a Distributed Environment

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

More information

Web Mapping and Geospatial Web: An Introductory Course for Geographers and Geoscientists

Web Mapping and Geospatial Web: An Introductory Course for Geographers and Geoscientists Web Mapping and Geospatial Web: An Introductory Course for Geographers and Geoscientists Emmanuel Stefanakis Department of Geodesy and Geomatics Engineering University of New Brunswick Fredericton, NB,

More information

Integrating AJAX Approach into GIS Visualization Web Services

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

More information

Intergraph Geospatial Portfolio 2013

Intergraph Geospatial Portfolio 2013 W H A T S N E W? Intergraph Geospatial Portfolio 2013 Photogrammetry LPS ImageStation Remote Sensing ERDAS IMAGINE GIS GeoMedia Server GeoMedia WebMap GeoMedia Smart Client ERDAS APOLLO Geospatial SDI

More information

GeoManitoba Spatial Data Infrastructure Update. Presented by: Jim Aberdeen Shawn Cruise

GeoManitoba Spatial Data Infrastructure Update. Presented by: Jim Aberdeen Shawn Cruise GeoManitoba Spatial Data Infrastructure Update Presented by: Jim Aberdeen Shawn Cruise Organization Overview Manitoba Innovation Energy and Mines Business Transformation and Technology (BTT) Application

More information

Cloud Computing for Fundamental Spatial Operations on Polygonal GIS Data

Cloud Computing for Fundamental Spatial Operations on Polygonal GIS Data 1 Cloud Computing for Fundamental Spatial Operations on Polygonal GIS Data Dinesh Agarwal, Satish Puri, Xi He, and Sushil K. Prasad 1 Department of Computer Science Georgia State University Atlanta - 30303,

More information

GeoMedia Product Update. Title of Presentation. Lorilie Barteski October 15, 2008 Edmonton, AB

GeoMedia Product Update. Title of Presentation. Lorilie Barteski October 15, 2008 Edmonton, AB Product Update Title of Presentation Lorilie Barteski Edmonton, AB Know the audience poll Existing /Pro users Version 6.1 Version 6.0 Version 5.2 or earlier Existing WebMap users Version 6.1 Version 6.0

More information

EXPLORING AND SHARING GEOSPATIAL INFORMATION THROUGH MYGDI EXPLORER

EXPLORING AND SHARING GEOSPATIAL INFORMATION THROUGH MYGDI EXPLORER EXPLORING AND SHARING GEOSPATIAL INFORMATION THROUGH MYGDI EXPLORER Subashini Panchanathan Malaysian Centre For Geospatial Data Infrastructure ( MaCGDI ) Ministry of National Resources and Environment

More information

Project eharta: a collaborative initiative to digitally preserve and freely share old cartographic documents in Romania

Project eharta: a collaborative initiative to digitally preserve and freely share old cartographic documents in Romania Vasile Crăciunescu, Ştefan Constantinescu, IonuŃ Ovejanu, Ioan Rus Project eharta: a collaborative initiative to digitally preserve and freely share old cartographic documents in Romania Keywords: geo-spatial.org;

More information

Choosing the right GIS framework for an informed Enterprise Web GIS Solution

Choosing the right GIS framework for an informed Enterprise Web GIS Solution 13 ANNUAL INTERNATIONAL CONFERENCE AND EXHIBITION ON GEOSPATIAL INFORMATION TECHNOLOGY AND APPLICATIONS Epicentre; Gurgaon, India; 19-21 January, 2010 Choosing the right GIS framework for an informed Enterprise

More information

Commotion Network Dashboard Application for Commotion Wireless Request for Development Proposals

Commotion Network Dashboard Application for Commotion Wireless Request for Development Proposals Commotion Network Dashboard Application for Commotion Wireless Request for Development Proposals Date: 2013-11-23 Prepared by: Jernej Kos (jernej@kos.mx), Institute for Development of Advanced Applied

More information

From Business Intelligence to Location Intelligence with the Lily Library

From Business Intelligence to Location Intelligence with the Lily Library From Business Intelligence to Location Intelligence with the Lily Library Matteo Golfarelli Stefano Rizzi Marco Mantovani Federico Ravaldi Agenda Location Intelligence State of the art Lily Features Architecture

More information

Abstract. Introduction

Abstract. Introduction Data Replication and Data Sharing Integrating Heterogeneous Spatial Databases Mark Stoakes and Katherine Irwin Professional Services, Safe Software Inc. Abstract Spatial data warehouses are becoming more

More information

Visualization Method of Trajectory Data Based on GML, KML

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,

More information

Constrained Clustering of Territories in the Context of Car Insurance

Constrained Clustering of Territories in the Context of Car Insurance Constrained Clustering of Territories in the Context of Car Insurance Samuel Perreault Jean-Philippe Le Cavalier Laval University July 2014 Perreault & Le Cavalier (ULaval) Constrained Clustering July

More information

ishare in the Cloud Service Definition v5.0

ishare in the Cloud Service Definition v5.0 Service Definition v5.0 An overview of ishare in the Cloud ishare is an end to end Enterprise GIS for public sector comprising a spatial data warehouse, rich functionality browser based GIS including editing

More information

Enhancing Field Service Support in CRM Systems with LBS

Enhancing Field Service Support in CRM Systems with LBS Enhancing Field Service Support in CRM Systems with LBS J. A. Bañares, 1 P. Álvarez, R. Béjar, S. Blasco, P.R. Muro-Medrano Department of Computer Science and System Engineering University of Zaragoza

More information

PDOK Kaart, the Dutch Mapping API

PDOK Kaart, the Dutch Mapping API PDOK Kaart, the Dutch Mapping API Haico van der Vegt*, Leo van der Sluijs* * Cadastre, Land Registry and Mapping Agency of the Netherlands Abstract. PDOK (public services on the map) is a partnership of

More information