GEON: Assembling Maps on Demand From Heterogeneous Grid Sources

Size: px
Start display at page:

Download "GEON: Assembling Maps on Demand From Heterogeneous Grid Sources"

Transcription

1 GEON: Assembling Maps on Demand From Heterogeneous Grid Sources Ilya Zaslavsky, Ashraf Memon Abstract Integrating spatial information from multiple grid-enabled sources of geologic data is an important component of the NSF-funded Geosciences Network (GEON) project. The spatial integration is orchestrated by Geo-GEMS (Grid-Enabled Mediation ), a collection of grid services that support spatial data mediation, ontology and schema conflict resolution, and composite map assembly. Geologic data are served by distributed ArcIMS and WMS servers, each wrapped in WSDL/SOAP wrappers. Capabilities of each source are registered at the mediator, so that the latter can plan and orchestrate query execution. To produce a composite result, query results retrieved from individual sources are either merged at the mediator or overlapped at the client. A comprehensive GEON map assembly service represents a temporary mediator-level ArcIMS service that is created on demand to merge individual raster and vector fragments from distributed servers into a composite map and generate answers to follow-up requests without re-querying the sources. Introduction Spatial information is maintained in multiple disparate databases. While integrating information from diverse spatial sources is at the heart of GIS, differences in spatial data types and file formats, data schemas and access mechanisms, projections and spatial scales, data quality and precision, query and transformation capabilities of the sources, and ontological frameworks the datasets subscribe to, represent serious integration challenges. Methods of formal standards-based reconciliation of these differences become increasingly important with the advancement of spatial data infrastructures and proliferation of Internet map services. Federating data on demand, instead of materializing data replicas in a data warehouse, appears to be the preferred strategy given the exponential growth of spatial data collections. Data grids have emerged as a popular strategy for managing heterogeneities across distributed scientific datasets. Data grid is a data federation environment where multiple distributed heterogeneous resources share a common logical name space and can be accessed and queried seamlessly. Open Grid Architecture (OGSA) is an outline and specification of grid services that combines Web services technology (W3C, 2001) with principles and experiences of computational grid development [Foster et al. 1999, 2001, 2002; GLOBUS 2003, GGF 2003]. The Geosciences Network (GEON) is a large NSF-funded Information Technology Research (ITR) project being developed collaboratively by geoscientists and computer scientists. GEON develops grid services that support discovery, integration and analytical use of multiple geosciences databases. The GEON grid architecture is shown in Figure 1.

2 Registration GeonSearch PORTAL (login, mygeon) Data Mediation Indexing GeoWorkbench Workflow Visualization & Mapping Core Grid : Authentication, monitoring, scheduling, catalog, data transfer, replication, collection management, databases Physical Grid: RedHat Linux, ROCKS, Internet, I2, OptIPuter Figure 1. The GEON services infrastructure (Source: GEON poster, 2004) GEON portal is accessed from id.org. It provides user-specific interfaces to several application services combined into GeonSearch and GeoWorkbench environments. The application services let users register spatial and non-spatial datasets (registration services), situate the data in spatial, temporal and conceptual contexts (indexing services), execute complex queries (mediation services) and multi-step processing chains (workflow services), and visualize intermediate and final results as tables, maps, and graphs (visualization and mapping services). The application services execute on top of core grid services which implement basic data grid capabilities providing mechanisms for data movement, user access control and security, load balancing and network weather service, and communication with physical grid infrastructure. This paper describes our implementation of GEON mapping services, with specific emphasis on services that enable automatic generation of composite maps from heterogeneous grid sources. Below, they are referred to as map assembly services. The structure of the paper is as follows. We start by presenting a motivating example of geologic map integration. The following section outlines potential strategies for assembling composite maps given different outputs generated by individual grid sources. Finally, we describe implementation details of the map assembly service, and conclude with an outline of future work. The motivating example This example derives from a practical need to select geologic formations with a given set of attributes for an area that is covered by several map services. The Rocky Mountains area, one of GEON test beds, covers 8 states. Geologic maps for each state have different schemas, and are served by one or more servers, including ArcIMS, WMS and WFS servers. Handling schema and semantic heterogeneities across multiple map sources within a data grid environment has been considered in [Lin and Ludäscher 2003, Zaslavsky et al. 2003], therefore this issue is not discussed

3 here. Instead, we focus on techniques for merging different types of query results into a composite map. In particular, ArcIMS sources may return images of maps (on GET_IMAGE requests), zipped shapefiles (on GET_EXTRACT requests), or feature coordinates in ArcXML (on GET_FEATURES requests). At the same time, WMS servers generate map images (on getmap requests), while WFS sources produce GML documents. In case of ArcIMS servers, for example, the preferred type of result would depend on such factors as the size of result set, target level of interactivity at the client, etc. To handle source heterogeneity, all spatial sources in GEON are wrapped in WSDL/SOAP wrappers. The role of wrappers is two-fold: they convert grid service calls generated by the mediator into a system-specific language (for example, translating a mediator request into one or several equivalent ArcXML requests to be posted to an ArcIMS server), and convert query responses (ArcXML response with a path to generated image or shapefiles, or containing feature geometry) into a common format handled by results presentation services. The WSDL/SOAP layer serves as an additional level of abstraction which provides standard access interface to different sources while hiding source peculiarities from the user. For example, the user (or client application) doesn t have to differentiate between ArcIMS and WMS servers as long as both can be invoked via a standard GetImage grid request. Depending on the type of output generated by each source, we consider several mechanisms for merging them into composite maps. Map assembly mechanisms Merging results of mediated query into a composite result is fairly well understood when the result fragments are homogeneous. For example, XML mediators [e.g., Baru et al. 1999, Gupta et al. 1999] developed in the course of our previous work on MIX (Mediation of Information using XML), combined XML fragments into a single XML tree and presented it to the client. Merging spatial result fragments represents a more serious challenge as the fragments need to be spatially arranged and/or overlapped following cartographic design principles (possibly requiring reprojection and alignment, and adding various elements of geographic context), and certain data/format transformations may be required to create a composite map (raster to vector, XML to shapefile, etc.) In addition, since creating a composite map document may be more time-consuming than merging XML trees, such a map should be able to support additional requests without re-querying individual sources and re-assembly. The composite map creation problems are resolved by a special map assembly service which is presented below. It is described using three generic map assembly scenarios, in the order of increasing complexity.

4 1. Spatial services return map fragments as images; the images are overlaid at the client or fused at the mediator. This is the simplest scenario for creating a composite map. Within the GEON environment, grid services exposed for spatial servers include a GifService interface whose methods translate (at source wrappers) into GetCapabilities and GetMap requests of the WMS specification (for ArcIMS: GET_SERVICE_INFO and GET_IMAGE requests respectively). On these requests, each server generates a GIF or PNG8 file with transparent background and within a common map envelope supplied by the mediator. The list of paths to generated image files is communicated to the mediator and either used by an Image Fusion service to merge them into a single image displayed in a standard ArcIMS client, or passed on to a custom ArcIMS or AxioMap-based [Zaslavsky, 2000] web client where images in the stack are displayed in the same coordinate space, one on top of the other (Figure 2). Note that before map fragments can be meaningfully merged into a single map, a common legend must be generated, and uniform rendering requests submitted to spatial servers. Figure 2. Displaying a stack of image fragments at the client, to produce a composite map. An example from GEON Rocky Mountains test bed.

5 2. Spatial services return coordinate information for result fragments, which is rendered as an acetate layer in an ArcIMS service In this scenario, ArcIMS servers (with GET_FEATURES request allowed) and WFS servers are wrapped to expose GetCoordinates grid interface. Query results are returned as either GML or ArcXML (inside the <FEATURES> element). The map assembly service uses the coordinate information to generate a single multi-part feature from all features returned. This feature is added as an acetate layer to an ArcIMS service which already contains a collection of base map elements. The scenario is shown schematically in Figure 3. This approach is efficient when the results set is fairly small, due to limitations on the size of acetate layers. As a variation, the coordinate results may be sent to an SVG client for rendering subject to the similar limitation on the size of the results set. If the amount of coordinate information returned by each spatial server is large, then the map assembly service converts result fragments into one or more shapefiles and Figure 3. The second strategy for map assembly: combining coordinates into an acetate or similar layer. adds them, as layers, to an existing ArcIMS service. In practice, however, transmitting large volumes of XML-formatted coordinate information between sources during query execution takes significant time, leading to poor scalability of this approach. 3. Spatial services return both coordinate and image result fragments, in a variety of formats; a complete ArcIMS service is generated from the fragments When query result fragments are of arbitrary types, including raster images, [compressed] shapefiles, GML, ArcXML with coordinate information for each feature, etc., the map assembly service retrieves them into a local staging area (using GridFTP, in particular), and generates a new ArcIMS image service. The result fragments are then added as layers into the ArcXML service configuration file. The mapping client then interacts with this dynamically-generated service, ideally without re-querying individual sources on each user request. The schematics of the service is shown in Figure 4, and its main internal components, as implemented in GEON middleware, are in Figure 5.

6 The service is implemented using OGSA grid service Factory interface, and supports lifetime management via SoftStateDestruction and ExplicitDestruction interfaces. The Factory interface creates a new Grid service instance and returns a Grid service handle, which in turn can be used to retrieve the service WSDL description from the Grid Service Reference for subsequent querying. The service must be destroyed when additional user requests exceed the capabilities of the service (say, if the user zooms out beyond the area covered by the transient ArcIMS service), or after certain period of inactivity. Explicit lifetime management is thus an important component of this service specification. Figure 4. The third strategy for map assembly: combining raster and vector fragments into a new dynamic ArcIMS service. Let s consider the internal operation of the service step-by-step (see Figure 5). On the first step, the user formulates a request against distributed resources, which includes desired extent of the output map, the query expression, and the type of client (the latter is used by the mediator to determine an appropriate type of the output map, whether it is a single or multiple images, XML coordinate information for SVG rendering, or both). The mediator orchestrates query execution at each source by issuing grid service calls against source wrappers (2). Handles (including data types and paths) to result fragments generated by each service, along with the initial query expression and map extent, are transferred to the map assembly service (3). Using these handles and the query, the command module organizes them into a map configuration file similar to ArcXML Config document, but with paths pointing to remote resources as specified in the handles (4). Additionally, it selects (5) one of several map assembly templates stored in command.xml, which bind together available processing components (file transfer service, uncompress service, image fusion service, data conversion service, etc.) into a map assembly workflow. At the next step, the workflow is executed (6) with help of File Transfer Service (file transfer over HTTP or via GridFTP web service), Uncompress Service (for efficiency, data are shipped in compressed format), Image Fusion Service (responsible for merging raster fragments into a composite map image), and Data Conversion Service (responsible for converting result fragments into formats that ArcIMS can import). Finally, the Image Assembly Service rewrites the map configuration file into a valid ArcXML configuration file, and uses it to start a new ArcIMS service (7).

7 Figure 5. Internal organization of the map assembly services within a spatial wrapper-mediator system. Conclusion Techniques for assembling query results from spatial fragments into a composite map document are quite different from merging XML fragments into a single XML tree, which is a common component of XML-based information mediation. This paper reported our experiences developing grid services for assembling composite maps from heterogeneous fragments, which are retrieved from distributed grid sources. We outlined a range of scenarios with increased complexity, for handling different combinations of result fragments. Ultimately, the scenario requiring most flexibility in map assembly leads to automatic generation of a grid service instance based on a transient ArcIMS service. Acknowledgments Support under US National Science Foundation grants # ITR/IM: Enabling the Creation and Use of GeoGrids for Next Generation Geospatial Information and # ITR: GEON: The Geosciences Network: A Research Project to Develop Cyberinfrastructure for the Geosciences, is gratefully acknowledged. References Baru, C., Gupta, A., Ludäscher, B., Marciano, R., Papakonstantinou, Y., Velikhov, P. and Chu, V. (1999). "XML Based Information Mediation with MIX". Proc. of the ACM SIGMOD 1999, pp

8 Foster, I., Kesselman, C. and Tuecke, S. (2001). The Anatomy of the Grid: Enabling Scalable Virtual Organizations. International J. Supercomputer Applications, 15(3). Foster, I., Kesselman, C., Nick, J. and Tuecke, S. (2002) The Physiology of the Grid: An Open Grid Architecture for Distributed Systems Integration ( GGF (2003). Global Grid Forum ( GEON, the Geosciences Network (2003). GLOBUS (2003). The GLOBUS Project ( Gupta, A., Marciano, R., Zaslavsky, I., and Baru, C. (1999). Integrating GIS and Imagery through XML-Based Information Mediation. In P. Agouris and A. Stefanidis (Eds.) Integrated Spatial Databases: Digital Images and GIS, Lecture Notes in Computer Science, Vol. 1737, pp Lin, K, and Ludäscher, B. (2003) A System for Semantic Integration of Geologic Maps via Ontologies, In Semantic Web Technologies for Searching and Retrieving Scientific Data (SCISW), Sanibel Island, Florida, Open GIS Consortium (2000). OpenGIS Web Map Server Interfaces Implementation Specification. Open GIS Consortium (2001). Geography Markup Language (GML) 2.0. Open GIS Consortium (2002). OpenGIS Web Feature Service Implementation Specification. W3C (2001). Scalable Vector Graphics (SVG) 1.0 Specification, W3C Recommendation, 04 September W3C (2003a). Web Description Language (WSDL) Version 1.2. W3C Working Draft 24 January 2003 W3C (2003b). Simple Object Access Protocol, W3C Proposed Recommendation, 07 May Zaslavsky, I. (2000). "A New Technology for Interactive Online Mapping with Vector Markup and XML". Cartographic Perspectives, # 37 (Fall 2000), pp Zaslavsky, I., Memon, A., Petropoulos, M., and Baru, C. (2003) Online Querying of Heterogeneous Distributed Spatial Data on a Grid. Proceedings of Digital Earth 2003 Conference. Author information: Dr. Ilya Zaslavsky Director, Spatial Information Systems Lab, San Diego Supercomputer Center, University of California San Diego 9500 Gilman Drive, La Jolla, CA , USA Phone: Fax: zaslavsk@sdsc.edu Ashraf Memon Programmer/Analyst San Diego Supercomputer Center, University of California San Diego 9500 Gilman Drive, La Jolla, CA , USA Phone: Fax: amemon@sdsc.edu

SPATIAL INFORMATION GRID AND ITS APPLICATION IN GEOLOGICAL SURVEY

SPATIAL INFORMATION GRID AND ITS APPLICATION IN GEOLOGICAL SURVEY SPATIAL INFORMATION GRID AND ITS APPLICATION IN GEOLOGICAL SURVEY K. T. He a, b, Y. Tang a, W. X. Yu a a School of Electronic Science and Engineering, National University of Defense Technology, Changsha,

More information

THE SPATIAL DATA SERVER BASED ON OPEN GIS STANDARDS IN HETEROGENEOUS DISTRIBUTED ENVIRONMENT

THE SPATIAL DATA SERVER BASED ON OPEN GIS STANDARDS IN HETEROGENEOUS DISTRIBUTED ENVIRONMENT 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 THE SPATIAL DATA SERVER BASED ON

More information

Australian Earth Science Research Spatial Information Infrastructure

Australian Earth Science Research Spatial Information Infrastructure AN ORGANISATION FOR A NATIONAL EARTH SCIENCE INFRASTRUCTURE PROGRAM Australian Earth Science Research Spatial Information Infrastructure Dr Robert Woodcock AuScope Grid - Director Outline Why build an

More information

Paper UC1351. Conference: User Conference Date: 08/10/2006 Time: 8:30am-9:45am Room: Room 23-B (SDCC)

Paper UC1351. Conference: User Conference Date: 08/10/2006 Time: 8:30am-9:45am Room: Room 23-B (SDCC) Conference: User Conference Date: 08/10/2006 Time: 8:30am-9:45am Room: Room 23-B (SDCC) Title of Paper: Increasing the Use of GIS in the Federal Government Author Name: Miss Abstract This presentation

More information

WEB MAP SERVICE (WMS) FOR GEOLOGICAL DATA GEORGE TUDOR

WEB MAP SERVICE (WMS) FOR GEOLOGICAL DATA GEORGE TUDOR WEB MAP SERVICE (WMS) FOR GEOLOGICAL DATA GEORGE TUDOR WEB MAP SERVICE (WMS) - GENERALITIES Projects with data from different sources Geological data are in different GIS software format Large amount of

More information

A Model of GIS Interoperability Based on JavaRMI

A Model of GIS Interoperability Based on JavaRMI A Model of GIS Interoperability Based on Java Gao Gang-yi 1 Chen Hai-bo 2 1 Zhejiang University of Finance & Economics, Hangzhou 310018, China 2 College of Computer Science and Technology, Zhejiang UniversityHangzhou

More information

Charter for the. Information Transfer and Services Architecture Focus Group

Charter for the. Information Transfer and Services Architecture Focus Group for the Information Transfer and Services Architecture Focus Group 1. PURPOSE 1.1. The purpose of this charter is to establish the Information Transfer and Services Architecture Focus Group (ITSAFG) as

More information

GEOSPATIAL WEB SERVICE INTEGRATION AND MASHUPS FOR WATER RESOURCE APPLICATIONS

GEOSPATIAL WEB SERVICE INTEGRATION AND MASHUPS FOR WATER RESOURCE APPLICATIONS GEOSPATIAL WEB SERVICE INTEGRATION AND MASHUPS FOR WATER RESOURCE APPLICATIONS C. Granell a, *, L. Díaz a, M. Gould a a Center for Interactive Visualization, Department of Information Systems, Universitat

More information

Semantic Evolution of Geospatial Web Services: Use Cases and Experiments in the Geospatial Semantic Web

Semantic Evolution of Geospatial Web Services: Use Cases and Experiments in the Geospatial Semantic Web Semantic Evolution of Geospatial Web Services: Use Cases and Experiments in the Geospatial Semantic Web Joshua Lieberman, Todd Pehle, Mike Dean Traverse Technologies, Inc., Northrop Grumman Information

More information

GEON: Geosciences Network

GEON: Geosciences Network GEON: Geosciences Network A Research Project to Create Cyberinfrastructure for the Geosciences Dogan Seber San Diego Supercomputer Center, University of California, San Diego Objectives An in-depth look

More information

Water Data Sharing an Update

Water Data Sharing an Update Water Data Sharing an Update By David R. Maidment Leader, CUAHSI Hydrologic Information System Project and Director, Center for Research in Water Resources, University of Texas at Austin Prepared for Subcommittee

More information

SDI Standards at work

SDI Standards at work SDI Standards at work Jan Juul Jensen Senior Technology Strategist Informi GIS Denmark Informi GIS Private held Limited Company Specialized in GIS 100+ employees HQ in Charlottenlund, Copenhagen Regional

More information

Creation of an Internet Based Indiana Water Quality Atlas (IWQA)

Creation of an Internet Based Indiana Water Quality Atlas (IWQA) Department of Environmental Management Creation of an Internet Based Water Quality Atlas (IWQA) May 4, 2005 IUPUI 1200 Waterway Blvd., Suite 100 polis, 46202-5140 Water Quality Atlas John Buechler, Neil

More information

GEOSPATIAL COMPUTATIONAL GRID FOR DIGITAL FORESTRY WITH THE INTEROPERABILITY

GEOSPATIAL COMPUTATIONAL GRID FOR DIGITAL FORESTRY WITH THE INTEROPERABILITY GEOSPATIAL COMPUTATIONAL GRID FOR DIGITAL FORESTRY WITH THE INTEROPERABILITY Guang Deng 1,*, Xu Zhang 1, Quoqing Li 2, Zhenchun Huang 3 1 Research Institute of Resource and Information Technique, Chinese

More information

Web Visualization of Geo-Spatial Data using SVG and VRML/X3D

Web Visualization of Geo-Spatial Data using SVG and VRML/X3D Web Visualization of Geo-Spatial Data using SVG and VRML/X3D Jianghui Ying Falls Church, VA 22043, USA jying@vt.edu Denis Gračanin Blacksburg, VA 24061, USA gracanin@vt.edu Chang-Tien Lu Falls Church,

More information

Leveraging the OGC Capabilities of ArcGIS Server

Leveraging the OGC Capabilities of ArcGIS Server Leveraging the OGC Capabilities of ArcGIS Server Satish Sankaran Interoperability and Standards Team Yingqi Tang Server Team Jessica Parteno Geodatabase Team ArcGIS Server is Open & Interoperable Using

More information

Editorial Introduction: Special Issue on Grids and Geospatial Information Systems

Editorial Introduction: Special Issue on Grids and Geospatial Information Systems EditorialIntroduction:SpecialIssueonGridsand GeospatialInformationSystems MarlonE.Pierce CommunityGridsLaboratory IndianaUniversity mpierce@cs.indiana.edu Abstract: Grids and Geospatial Information Systems(GIS)

More information

Atmospheric Science and GIS Interoperability issues: some Data Model and Computational Interface aspects

Atmospheric Science and GIS Interoperability issues: some Data Model and Computational Interface aspects UNIDATA Boulder, Sep. 2003 Atmospheric Science and GIS Interoperability issues: some Data and Computational Interface aspects Stefano Nativi University of Florence and IMAA-CNR Outline Service-Oriented

More information

The Architecture of the Georgia Basin Digital Library: Using geoscientific knowledge in sustainable development

The Architecture of the Georgia Basin Digital Library: Using geoscientific knowledge in sustainable development GEOLOGIJA 46/2, 343 348, Ljubljana 2003 The Architecture of the Georgia Basin Digital Library: Using geoscientific knowledge in sustainable development B. BRODARIC 1, M. JOURNEAY 2, S. TALWAR 2,3, R. HARRAP

More information

These modules are covered with a brief information and practical in ArcGIS Software and open source software also like QGIS, ILWIS.

These modules are covered with a brief information and practical in ArcGIS Software and open source software also like QGIS, ILWIS. Online GIS Training and training modules covered are: 1. ArcGIS, Analysis, Fundamentals and Implementation 2. ArcGIS Web Data Sharing 3. ArcGIS for Desktop 4. ArcGIS for Server These modules are covered

More information

Spatial Data Infrastructure Concepts and Components. Douglas Nebert U.S. Federal Geographic Data Committee Secretariat

Spatial Data Infrastructure Concepts and Components. Douglas Nebert U.S. Federal Geographic Data Committee Secretariat Spatial Data Infrastructure Concepts and Components Douglas Nebert U.S. Federal Geographic Data Committee Secretariat August 2009 What is a Spatial Data Infrastructure (SDI)? The SDI provides a basis for

More information

Geog 469 GIS Workshop. Managing Enterprise GIS Geodatabases

Geog 469 GIS Workshop. Managing Enterprise GIS Geodatabases Geog 469 GIS Workshop Managing Enterprise GIS Geodatabases Outline 1. Why is a geodatabase important for GIS? 2. What is the architecture of a geodatabase? 3. How can we compare and contrast three types

More information

CARTOGRAPHIC WEB SERVICES AND CARTOGRAPHIC RULES A NEW APPROACH FOR WEB CARTOGRAPHY

CARTOGRAPHIC WEB SERVICES AND CARTOGRAPHIC RULES A NEW APPROACH FOR WEB CARTOGRAPHY CARTOGRAPHIC WEB SERVICES AND CARTOGRAPHIC RULES A NEW APPROACH FOR WEB CARTOGRAPHY 1. Introduction Ionut Iosifescu, Marco Hugentobler, Lorenz Hurni ETH Zurich, Institute of Cartography Wolfgang-Pauli-Str.

More information

The PREVIEW Global Risk Data Platform: a geoportal to serve and share global data on risk to natural hazards

The PREVIEW Global Risk Data Platform: a geoportal to serve and share global data on risk to natural hazards The PREVIEW Global Risk Data Platform: a geoportal to serve and share global data on risk to natural hazards Gregory Giuliani (UNEP/GRID-Geneva & University of Geneva/enviroSPACE ) http://www.grid.unep.ch

More information

Alban Gabillon, Patrick Capolsini University of French Polynesia - Tahiti

Alban Gabillon, Patrick Capolsini University of French Polynesia - Tahiti Alban Gabillon Patrick Capolsini November 2008 DRM policies for Web Map Service Alban Gabillon, Patrick Capolsini University of French Polynesia - Tahiti Université de la Polynésie Française (UPF) BP 6570

More information

The Current Status of EarthCube with an EarthScope Perspective. Tim Ahern IRIS Director of Data Services

The Current Status of EarthCube with an EarthScope Perspective. Tim Ahern IRIS Director of Data Services The Current Status of EarthCube with an EarthScope Perspective Tim Ahern IRIS Director of Data Services Key Aspects of EarthCube EarthCube Empowers cross-domain data discovery, interoperability, Current

More information

Using MAGIC to Access Spatial Imagery: Putting ER Mapper Image Web Server, ArcIMS and MrSID to work in your Library

Using MAGIC to Access Spatial Imagery: Putting ER Mapper Image Web Server, ArcIMS and MrSID to work in your Library Using MAGIC to Access Spatial Imagery: Putting ER Mapper Image Web Server, ArcIMS and MrSID to work in your Library Patrick McGlamery Shirley Quintero University of Connecticut Libraries Building the Connecticut

More information

GIS GIS.

GIS GIS. GIS 388 Vol., No.3, Autumn 2009 99-4 GIS Iranian Remote Sensing & GIS 2 * (GIS). GIS.2 389/5/6 : 389/2/6 :........ : 8878622 : GIS ( ) : * Email: PouriaAmirian@gmail.com ... (AQI) 2.(Cheng et al., 2007)..

More information

Design and implementation of a new meteorology geographic information system

Design and implementation of a new meteorology geographic information system Design and implementation of a new meteorology geographic information system WeiJiang Zheng, Bing. Luo, Zhengguang. Hu, Zhongliang. Lv National Meteorological Center, China Meteorological Administration,

More information

Roadmap to interoperability of geoinformation

Roadmap to interoperability of geoinformation Roadmap to interoperability of geoinformation and services in Europe Paul Smits, Alessandro Annoni European Commission Joint Research Centre Institute for Environment and Sustainability paul.smits@jrc.it

More information

Institute of Statistical and Geographical Information of Jalisco State Subnational Statistical and Geographical System India.

Institute of Statistical and Geographical Information of Jalisco State Subnational Statistical and Geographical System India. Institute of Statistical and Geographical Information of Jalisco State Subnational Statistical and Geographical System India. January 2017 Subnational Statistical and Geographical System National Statistical

More information

WEB-BASED SPATIAL DECISION SUPPORT: TECHNICAL FOUNDATIONS AND APPLICATIONS

WEB-BASED SPATIAL DECISION SUPPORT: TECHNICAL FOUNDATIONS AND APPLICATIONS WEB-BASED SPATIAL DECISION SUPPORT: TECHNICAL FOUNDATIONS AND APPLICATIONS Claus Rinner University of Muenster, Germany Piotr Jankowski San Diego State University, USA Keywords: geographic information

More information

GIS at UCAR. The evolution of NCAR s GIS Initiative. Olga Wilhelmi ESIG-NCAR Unidata Workshop 24 June, 2003

GIS at UCAR. The evolution of NCAR s GIS Initiative. Olga Wilhelmi ESIG-NCAR Unidata Workshop 24 June, 2003 GIS at UCAR The evolution of NCAR s GIS Initiative Olga Wilhelmi ESIG-NCAR Unidata Workshop 24 June, 2003 Why GIS? z z z z More questions about various climatological, meteorological, hydrological and

More information

Open Contextual Cartographic Visualization

Open Contextual Cartographic Visualization J. Kozel 223 Open Contextual Cartographic Visualization Jiří Kozel Laboratory on Geoinformatics and Cartography, Insitute of Geography, Faculty of Science, Masaryk University, Czech Republic jirikozel@centrum.cz

More information

ArcGIS. for Server. Understanding our World

ArcGIS. for Server. Understanding our World ArcGIS for Server Understanding our World ArcGIS for Server Create, Distribute, and Manage GIS Services You can use ArcGIS for Server to create services from your mapping and geographic information system

More information

Imagery and the Location-enabled Platform in State and Local Government

Imagery and the Location-enabled Platform in State and Local Government Imagery and the Location-enabled Platform in State and Local Government Fred Limp, Director, CAST Jim Farley, Vice President, Leica Geosystems Oracle Spatial Users Group Denver, March 10, 2005 TM TM Discussion

More information

Esri UC2013. Technical Workshop.

Esri UC2013. Technical Workshop. Esri International User Conference San Diego, California Technical Workshops July 9, 2013 CAD: Introduction to using CAD Data in ArcGIS Jeff Reinhart & Phil Sanchez Agenda Overview of ArcGIS CAD Support

More information

Geoprovisioning delivers geodata and its analysis for specific areas on request.

Geoprovisioning delivers geodata and its analysis for specific areas on request. DRAFT 27 February 2009 Geoprovisioning Geoprovisioning delivers geodata and its analysis for specific areas on request. What are the components of a geoprovisioning service? The sample web site geoprovisioning.com

More information

5A.10 A GEOSPATIAL DATABASE AND CLIMATOLOGY OF SEVERE WEATHER DATA

5A.10 A GEOSPATIAL DATABASE AND CLIMATOLOGY OF SEVERE WEATHER DATA 5A.10 A GEOSPATIAL DATABASE AND CLIMATOLOGY OF SEVERE WEATHER DATA Steve Ansari * and Stephen Del Greco NOAA National Climatic Data Center, Asheville, North Carolina Mark Phillips University of North Carolina

More information

Innovation. The Push and Pull at ESRI. September Kevin Daugherty Cadastral/Land Records Industry Solutions Manager

Innovation. The Push and Pull at ESRI. September Kevin Daugherty Cadastral/Land Records Industry Solutions Manager Innovation The Push and Pull at ESRI September 2004 Kevin Daugherty Cadastral/Land Records Industry Solutions Manager The Push and The Pull The Push is the information technology that drives research and

More information

Enabling ENVI. ArcGIS for Server

Enabling ENVI. ArcGIS for Server Enabling ENVI throughh ArcGIS for Server 1 Imagery: A Unique and Valuable Source of Data Imagery is not just a base map, but a layer of rich information that can address problems faced by GIS users. >

More information

Introduction to geoprocessing services using SEXTANTE. Víctor Olaya SEXTANTE Geospatial Services

Introduction to geoprocessing services using SEXTANTE. Víctor Olaya SEXTANTE Geospatial Services Introduction to geoprocessing services using SEXTANTE. Víctor Olaya SEXTANTE Geospatial Services Overview Quick introduction to SEXTANTE Client/Server fundamentals Standards for web-based geoservices SEXTANTE

More information

Overview of Geospatial Open Source Software which is Robust, Feature Rich and Standards Compliant

Overview of Geospatial Open Source Software which is Robust, Feature Rich and Standards Compliant Overview of Geospatial Open Source Software which is Robust, Feature Rich and Standards Compliant Cameron SHORTER, Australia Key words: Open Source Geospatial Foundation, OSGeo, Open Standards, Open Geospatial

More information

Framework for on an open 3D urban analysis platform based on OGC Web Services

Framework for on an open 3D urban analysis platform based on OGC Web Services Platzhalter für Bild, Bild auf Titelfolie hinter das Logo einsetzen Framework for on an open 3D urban analysis platform based on OGC Web Services Marc-O. Löwner & Thomas Adolphi (née Becker) Technische

More information

A Technique for Importing Shapefile to Mobile Device in a Distributed System Environment.

A Technique for Importing Shapefile to Mobile Device in a Distributed System Environment. A Technique for Importing Shapefile to Mobile Device in a Distributed System Environment. 1 Manish Srivastava, 2 Atul Verma, 3 Kanika Gupta 1 Academy of Business Engineering and Sciences,Ghaziabad, 201001,India

More information

DP Project Development Pvt. Ltd.

DP Project Development Pvt. Ltd. Dear Sir/Madam, Greetings!!! Thanks for contacting DP Project Development for your training requirement. DP Project Development is leading professional training provider in GIS technologies and GIS application

More information

What is CERA? Coastal Emergency Risks Assessment

What is CERA? Coastal Emergency Risks Assessment What is CERA? Coastal Emergency Risks Assessment Visualization tool using OGC standards Displays the outputs from the ADCIRC storm surge model or other coastal models Represents the maps on interactive

More information

Introduction to ArcGIS Server Development

Introduction to ArcGIS Server Development Introduction to ArcGIS Server Development Kevin Deege,, Rob Burke, Kelly Hutchins, and Sathya Prasad ESRI Developer Summit 2008 1 Schedule Introduction to ArcGIS Server Rob and Kevin Questions Break 2:15

More information

INSPIRE General Introduction & Service Architecture

INSPIRE General Introduction & Service Architecture INSPIRATION Spatial Data Infrastructure in the Western Balkans INSPIRE General Introduction & Service Architecture 1st National INSPIRATION Workshop Croatia November 21-22, 2012 A multi-countryprojectfunded

More information

Global 3D Models with Local Content

Global 3D Models with Local Content Gunnar Misund Associate Professor Head of Environmental Computing gunnar.misund@hiof.no - Morten Granlund, Scientfic Assistant Herman Kolås, Master Student Mats Lindh, Master Student - Østfold University

More information

An ESRI Technical Paper June 2007 An Overview of Distributing Data with Geodatabases

An ESRI Technical Paper June 2007 An Overview of Distributing Data with Geodatabases An ESRI Technical Paper June 2007 An Overview of Distributing Data with Geodatabases ESRI 380 New York St., Redlands, CA 92373-8100 USA TEL 909-793-2853 FAX 909-793-5953 E-MAIL info@esri.com WEB www.esri.com

More information

gvsig a real tool for GIS technicians

gvsig a real tool for GIS technicians gvsig a real tool for GIS technicians Jorge Gaspar Sanz Salinas jsanz@prodevelop.es International Geodetic Students Meeting 05/05/08 Valencia Agenda of the project OK, but what can gvsig do for me now?

More information

THE DESIGN AND IMPLEMENTATION OF A WEB SERVICES-BASED APPLICATION FRAMEWORK FOR SEA SURFACE TEMPERATURE INFORMATION

THE DESIGN AND IMPLEMENTATION OF A WEB SERVICES-BASED APPLICATION FRAMEWORK FOR SEA SURFACE TEMPERATURE INFORMATION THE DESIGN AND IMPLEMENTATION OF A WEB SERVICES-BASED APPLICATION FRAMEWORK FOR SEA SURFACE TEMPERATURE INFORMATION HE Ya-wen a,b,c, SU Fen-zhen a, DU Yun-yan a, Xiao Ru-lin a,c, Sun Xiaodan d a. Institute

More information

Lecture 11. Data Standards and Quality & New Developments in GIS

Lecture 11. Data Standards and Quality & New Developments in GIS Lecture 11 Data Standards and Quality & New Developments in GIS Lecture 11: Outline I. Data Standards and Quality 1. Types of Spatial Data Standards 2. Data Accuracy II. New Developments/The Future of

More information

ONLINE DECISION SUPPORT TOOL FOR AVALANCHE RISK MANAGEMENT. Patrick Nairz* Avalanche Warning Center Tyrol, Austria

ONLINE DECISION SUPPORT TOOL FOR AVALANCHE RISK MANAGEMENT. Patrick Nairz* Avalanche Warning Center Tyrol, Austria ONLINE DECISION SUPPORT TOOL FOR AVALANCHE RISK MANAGEMENT Patrick Nairz* Avalanche Warning Center Tyrol, Austria Karel Kriz and Michaela Kinberger Department of Geography and Regional Research, University

More information

Finding geodata that otherwise would have been forgotten GeoXchange a portal for free geodata

Finding geodata that otherwise would have been forgotten GeoXchange a portal for free geodata Finding geodata that otherwise would have been forgotten GeoXchange a portal for free geodata Sven Tschirner and Alexander Zipf University of Applied Sciences FH Mainz Department of Geoinformatics and

More information

Methodological Chain for Hydrological Management with Web-GIS Applications

Methodological Chain for Hydrological Management with Web-GIS Applications Advances in Geosciences Konstantinos Perakis & Athanasios Moysiadis, Editors EARSeL, 2012 Methodological Chain for Hydrological Management with Web-GIS Applications Alexandros Konstantinidis 1, Eleni Tzanou

More information

<Insert Picture Here> Oracle Spatial 11g. Dr. Siva Ravada

<Insert Picture Here> Oracle Spatial 11g. Dr. Siva Ravada Oracle Spatial 11g Dr. Siva Ravada New in Oracle Spatial 11g 3D Support Spatial Web Services Network Data Model GeoRaster Performance Improvements 3D Applications Location-based services

More information

Implementing INSPIRE Geoportal in Turkey

Implementing INSPIRE Geoportal in Turkey Implementing INSPIRE Geoportal in Turkey Gencay SERTER City and Regional Planner 1 Presentation Plan Introduction INSPIRE and Turkey Importance of al Spatial Planning Portal Logical&Legal Hierarchy GeoPortal

More information

Bentley Map Advancing GIS for the World s Infrastructure

Bentley Map Advancing GIS for the World s Infrastructure Bentley Map Advancing GIS for the World s Infrastructure Presentation Overview Why would you need Bentley Map? What is Bentley Map? Where is Bentley Map Used? Why would you need Bentley Map? Because your

More information

The Open Geospatial Consortium and EarthCube

The Open Geospatial Consortium and EarthCube The Open Geospatial Consortium and EarthCube An EarthCube Technology Paper Prepared by David Maidment 1, Ben Domenico 2, Alastair Gemmell 3, Kerstin Lehnert 4, David Tarboton 5 and Ilya Zaslavsky 6 Introduction

More information

GENERALIZATION IN THE NEW GENERATION OF GIS. Dan Lee ESRI, Inc. 380 New York Street Redlands, CA USA Fax:

GENERALIZATION IN THE NEW GENERATION OF GIS. Dan Lee ESRI, Inc. 380 New York Street Redlands, CA USA Fax: GENERALIZATION IN THE NEW GENERATION OF GIS Dan Lee ESRI, Inc. 380 New York Street Redlands, CA 92373 USA dlee@esri.com Fax: 909-793-5953 Abstract In the research and development of automated map generalization,

More information

Testing of Geoportals: INSPIRE demands and challenges

Testing of Geoportals: INSPIRE demands and challenges Testing of Geoportals: INSPIRE demands and challenges Imad Abugessaisa & Solgerd Tanzilli Lantmäteriet - Swedish Mapping, Cadastre and Land Registration Authority / Future Position X, Gävle INSPIRE 2010

More information

Lecture 12. Data Standards and Quality & New Developments in GIS

Lecture 12. Data Standards and Quality & New Developments in GIS Lecture 12 Data Standards and Quality & New Developments in GIS Lecture 12: Outline I. Data Standards and Quality 1. Types of Spatial Data Standards 2. Data Accuracy 3. III. Documenting Spatial Data Accuracy

More information

RESEARCG ON THE MDA-BASED GIS INTEROPERABILITY Qi,LI *, Lingling,GUO *, Yuqi,BAI **

RESEARCG ON THE MDA-BASED GIS INTEROPERABILITY Qi,LI *, Lingling,GUO *, Yuqi,BAI ** RESEARCG ON THE MDA-BASED GIS INTEROPERABILITY Qi,LI *, Lingling,GUO *, Yuqi,BAI ** * Digital Earth Studio, Peking University, Beijing, 100871 liqi@pku.edu.cn, guolingling@cybergis.org.cn ** Network Department,

More information

Reprint of article that appeared in Hydro INTERNATIONAL November 2006 Volume 10 Issue 9

Reprint of article that appeared in Hydro INTERNATIONAL November 2006 Volume 10 Issue 9 Reprint of article that appeared in Hydro INTERNATIONAL November 2006 Volume 10 Issue 9 While Google Earth is the best known 3D web-mapping viewer currently in the public domain, there are alternative

More information

The Open Geospatial Consortium and EarthCube

The Open Geospatial Consortium and EarthCube The Open Geospatial Consortium and EarthCube An EarthCube Technology Paper Prepared by David Maidment 1, Ben Domenico 2, Alastair Gemmell 3, Kerstin Lehnert 4, David Tarboton 5 and Ilya Zaslavsky 6 Introduction

More information

Technical Specifications. Form of the standard

Technical Specifications. Form of the standard Used by popular acceptance Voluntary Implementation Mandatory Legally enforced Technical Specifications Conventions Guidelines Form of the standard Restrictive Information System Structures Contents Values

More information

GIS-based Smart Campus System using 3D Modeling

GIS-based Smart Campus System using 3D Modeling GIS-based Smart Campus System using 3D Modeling Hardik Panchal & Rizwan Khan, Smita Sengupta, GISE Advance Lab, Indian Institute of Technology, Bombay, India N.L. Sarda, Dept. Of Computer Science, Indian

More information

Data Aggregation with InfraWorks and ArcGIS for Visualization, Analysis, and Planning

Data Aggregation with InfraWorks and ArcGIS for Visualization, Analysis, and Planning Data Aggregation with InfraWorks and ArcGIS for Visualization, Analysis, and Planning Stephen Brockwell President, Brockwell IT Consulting, Inc. Join the conversation #AU2017 KEYWORD Class Summary Silos

More information

Experience in Building GML-based. Interoperable Geo-spatial Systems

Experience in Building GML-based. Interoperable Geo-spatial Systems Experience in Building GML-based Interoperable Geo-spatial Systems Chin-Lung Chang * Yi-Hong Chang * Miller Chiang ^ Tyng-Ruey Chuang * Dongpo Deng * Steve Ho # Feng-Tyan Lin # * Institute of Information

More information

Introduction to Portal for ArcGIS. Hao LEE November 12, 2015

Introduction to Portal for ArcGIS. Hao LEE November 12, 2015 Introduction to Portal for ArcGIS Hao LEE November 12, 2015 Agenda Web GIS pattern Product overview Installation and deployment Security and groups Configuration options Portal for ArcGIS + ArcGIS for

More information

Spatial information sharing technology based on Grid

Spatial information sharing technology based on Grid Spatial information sharing technology based on Grid Hong-bin ZHANG a,b,c,1, Bao-rui CHEN a,b,c,3,gang LI b,c,2, Xiao-ping XIN a,b,c,* a Hulunber Grassland Ecosystem Observation and Research Station, Beijing

More information

What s new in GIS. RAL Retreat Oct 5, 2005

What s new in GIS. RAL Retreat Oct 5, 2005 What s new in GIS RAL Retreat Oct 5, 2005 Overview GIS Initiative milestones Major activities in 2004-2005 GALEON UNIDATA OGC project New functionality in ESRI software GIS Initiative Team Olga Wilhelmi

More information

CHAPTER 22 GEOGRAPHIC INFORMATION SYSTEMS

CHAPTER 22 GEOGRAPHIC INFORMATION SYSTEMS CHAPTER 22 GEOGRAPHIC INFORMATION SYSTEMS PURPOSE: This chapter establishes the administration and use of to improve the quality and accessibility of Department s spatial information and support graphical

More information

A decade of geoinformation sharing at ETH Zurich

A decade of geoinformation sharing at ETH Zurich A decade of geoinformation sharing at ETH Zurich Ionuț Iosifescu-Enescu, Cristina Iosifescu-Enescu, Nadia H. Panchaud, Angeliki Tsorlini, Lorenz Hurni {iosifescu,ciosifescu,nadia.panchaud,atsorlini,lhurni}@ethz.ch

More information

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Sam Williamson

ArcGIS Enterprise: What s New. Philip Heede Shannon Kalisky Melanie Summers Sam Williamson ArcGIS Enterprise: What s New Philip Heede Shannon Kalisky Melanie Summers Sam Williamson ArcGIS Enterprise is the new name for ArcGIS for Server What is ArcGIS Enterprise ArcGIS Enterprise is powerful

More information

The Standard Infrastructure

The Standard Infrastructure GISize! The Standard Infrastructure Management Interface for Wonderware Presenter Selim Birced GISize! Introduction 2 GISize! The Standard Infrastructure Management Interface A framework designed to: Helping

More information

Geological applications using geospatial standards an example from OneGeology-Europe and GeoSciML

Geological applications using geospatial standards an example from OneGeology-Europe and GeoSciML Geological applications using geospatial standards an example from OneGeology-Europe and GeoSciML John Laxton 1, Jean-Jacques Serrano 2, Agnes Tellez-Arenas 2 1 British Geological Survey, Edinburgh, United

More information

Hosted by Esri Official Distributor

Hosted by Esri Official Distributor Hosted by Esri Official Distributor Esri European User Conference October 15-17, 2012 Oslo, Norway Hosted by Esri Official Distributor Interoperability and Standards Support in ArcGIS 10.1 Roberto Lucchi

More information

Open Geoportal lands to Europe: use cases and improvements from

Open Geoportal lands to Europe: use cases and improvements from Free and Open Source Software for Geospatial (FOSS4G) Conference Proceedings Volume 17 FOSS4G 2017 Full Conference Proceedings (papers and posters), Boston, USA. Article 11 2017 : use cases and improvements

More information

Discovery and Access of Geospatial Resources using the Geoportal Extension. Marten Hogeweg Geoportal Extension Product Manager

Discovery and Access of Geospatial Resources using the Geoportal Extension. Marten Hogeweg Geoportal Extension Product Manager Discovery and Access of Geospatial Resources using the Geoportal Extension Marten Hogeweg Geoportal Extension Product Manager DISCOVERY AND ACCESS USING THE GEOPORTAL EXTENSION Geospatial Data Is Very

More information

Modern Education at Universities: Improvements through the Integration of a Spatial Data Infrastructure SDI into an e-learning Environment

Modern Education at Universities: Improvements through the Integration of a Spatial Data Infrastructure SDI into an e-learning Environment Modern Education at Universities: Improvements through the Integration of a Spatial Data Infrastructure SDI into an e-learning Environment Ingo Simonis Institute for Geoinformatics, University of Muenster

More information

Introduction to Portal for ArcGIS

Introduction to Portal for ArcGIS Introduction to Portal for ArcGIS Derek Law Product Management March 10 th, 2015 Esri Developer Summit 2015 Agenda Web GIS pattern Product overview Installation and deployment Security and groups Configuration

More information

ArcGIS Earth for Enterprises DARRON PUSTAM ARCGIS EARTH CHRIS ANDREWS 3D

ArcGIS Earth for Enterprises DARRON PUSTAM ARCGIS EARTH CHRIS ANDREWS 3D ArcGIS Earth for Enterprises DARRON PUSTAM ARCGIS EARTH CHRIS ANDREWS 3D ArcGIS Earth is ArcGIS Earth is a lightweight globe desktop application that helps you explore any part of the world and investigate

More information

Building a National Data Repository

Building a National Data Repository Building a National Data Repository Mladen Stojic, Vice President - Geospatial 1/30/2013 2012 Intergraph Corporation 1 Information has meaning and gives power only when shared and distributed. Information,

More information

Analyzing Multidimensional Scientific Data in ArcGIS. Nawajish Noman Deng Ding

Analyzing Multidimensional Scientific Data in ArcGIS. Nawajish Noman Deng Ding Analyzing Multidimensional Scientific Data in ArcGIS Nawajish Noman Deng Ding Outline Part I - ArcGIS Platform - Scientific Multidimensional Data - Ingest and Data Management Part II - Data Exploration

More information

Portals: Standards in Action

Portals: Standards in Action Portals: Standards in Action David Danko ISO TC 211 Metadata Project Leader GIS Standards Consultant-ESRI. Metadata Portals Portal gateway, place of entry Producers Advertise, expose products Share information

More information

ESRI Survey Summit August Clint Brown Director of ESRI Software Products

ESRI Survey Summit August Clint Brown Director of ESRI Software Products ESRI Survey Summit August 2006 Clint Brown Director of ESRI Software Products Cadastral Fabric How does Cadastral fit with Survey? Surveyors process raw field observations Survey measurements define high-order

More information

Lesson 16: Technology Trends and Research

Lesson 16: Technology Trends and Research http://www.esri.com/library/whitepapers/pdfs/integrated-geoenabled-soa.pdf GEOG DL582 : GIS Data Management Lesson 16: Technology Trends and Research Overview Learning Objective Questions: 1. Why is integration

More information

Geometric Algorithms in GIS

Geometric Algorithms in GIS Geometric Algorithms in GIS GIS Visualization Software Dr. M. Gavrilova GIS Software for Visualization ArcView GEO/SQL Digital Atmosphere AutoDesk Visual_Data GeoMedia GeoExpress CAVE? Visualization in

More information

Northrop Grumman Concept Paper

Northrop Grumman Concept Paper Northrop Grumman Concept Paper A Comprehensive Geospatial Web-based Solution for NWS Impact-based Decision Support Services Glenn Higgins April 10, 2014 Northrop Grumman Corporation Information Systems

More information

LandEx A GeoWeb-based Tool for Exploration of Patterns in Raster Maps

LandEx A GeoWeb-based Tool for Exploration of Patterns in Raster Maps LandEx A GeoWeb-based Tool for Exploration of Patterns in Raster Maps T. F. Stepinski 1, P. Netzel 1,2, J. Jasiewicz 3, J. Niesterowicz 1 1 Department of Geography, University of Cincinnati, Cincinnati,

More information

G EOSPAT I A L ERDAS IMAGINE. The world s most widely-used software package for creating information from geospatial data

G EOSPAT I A L ERDAS IMAGINE. The world s most widely-used software package for creating information from geospatial data G EOSPAT I A L ERDAS IMAGINE The world s most widely-used software package for creating information from geospatial data ERDAS IMAGINE Geographic imaging professionals need to process vast amounts of

More information

Improving the Interoperability of Earth Observations. An EarthCube White Paper. Jeffery S. Horsburgh 1, David G. Tarboton 1.

Improving the Interoperability of Earth Observations. An EarthCube White Paper. Jeffery S. Horsburgh 1, David G. Tarboton 1. Improving the Interoperability of Earth Observations An EarthCube White Paper Jeffery S. Horsburgh 1, David G. Tarboton 1 October 16, 2011 1. Introduction In the history of science, many significant advances

More information

Why GIS & Why Internet GIS?

Why GIS & Why Internet GIS? Why GIS & Why Internet GIS? The Internet bandwagon Internet mapping (e.g., MapQuest) Location-based services Real-time navigation (e.g., traffic) Real-time service dispatch Business Intelligence Spatial

More information

Web 3D Service & CityGML Update

Web 3D Service & CityGML Update Technische Universität Berlin Web 3D Service & CityGML Update Thomas H. Kolbe Institute for Geodesy and Geoinformation Science Berlin University of Technology kolbe@igg.tu-berlin.de 2nd of November, 2007

More information

Spatial Web Portal for Building Spatial Data Infrastructure

Spatial Web Portal for Building Spatial Data Infrastructure Spatial Web Portal for Building Spatial Data Infrastructure Chaowei Phil Yang 1, 2, Ying Cao 1, John Evans 2, Menas Kafatos 1, Myra Bambacus 2 1 Earth Systems and GeoInformation Sciences and Center for

More information

NATO Headquarters The Situation Center GIS experience.

NATO Headquarters The Situation Center GIS experience. NATO Headquarters The Situation Center GIS experience. Abstract Recently, the dynamic capability of responding to a major world crisis with comprehensive in-depth information has become a crucial aspect

More information

ArcGIS Deployment Pattern. Azlina Mahad

ArcGIS Deployment Pattern. Azlina Mahad ArcGIS Deployment Pattern Azlina Mahad Agenda Deployment Options Cloud Portal ArcGIS Server Data Publication Mobile System Management Desktop Web Device ArcGIS An Integrated Web GIS Platform Portal Providing

More information