1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

Size: px
Start display at page:

Download "1 Copyright 2011, Oracle and/or its affiliates. All rights reserved."

Transcription

1 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

2 ORACLE PRODUCT LOGO S15402 Google Maps, ESRI, Traffic, ipad: Bring it all Together With Oracle Spatial LJ Qian Jayant Sharma Sr. Mgr., FMW MapViewer Director, Spatial Prod. Mgmt. 2 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

3 3 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

4 Latin America 2011 December 6 8, 2011 Tokyo 2012 April 4 6, Copyright 2011, Oracle and/or its affiliates. All rights reserved.

5 Oracle OpenWorld Bookstore Visit the Oracle OpenWorld Bookstore for a fabulous selection of books on many of the conference topics and more! Bookstore located at Moscone West, Level 2 All Books at 20% Discount 5 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

6 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle. 6 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

7 Outline The basic mashup: maps in apps What are Spatial and MapViewer External services and MapViewer Demo (if possible) Discussion <Insert Picture Here> 7 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

8 THE BASIC MASHUP: MAPS IN APPS 8 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

9 Basic Mashup: Application Content and MapViewer Simplest form: a database query containing a spatial column, aka a MapViewer theme Or the result of a stored procedure which Can be spatial (e.g. asset location) or non-spatial (e.g. work orders) Must have a location identifier (e.g. asset id) Or contain the location 9 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

10 Display applica*on content from a local database 10 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

11 11 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

12 Display spatial network analysis results 12 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

13 Display Results of Stored Procedures 13 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

14 OTM 6.2 Order Release Ac;on Map Order Release Shipment Routes Destination of OUTBOUND Unplanned Order Shipment Source Shipment Destination 14 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 14

15 Map Views in Oracle BIEE 11g 15 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

16 OBIEE 11g map view on an ipad 16 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

17 TMC: Oracle SiteHub & Retail Analytics 17 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

18 iconsulting: BI Spatial Analytics 18 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

19 iconsulting: BI Spatial Analytics 19 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

20 IMMCO Prototype: Linear Asset mgmt 20 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

21 IMMCO Prototype: Linear Asset mgmt 21 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

22 ORACLE SPATIAL & FMW MAPVIEWER 22 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

23 What is Oracle Spatial Lines Points Polygons Oracle database Rasters e1 f1 e2 n1 n2 f2 e4 e3 3D Networks Topologies 23 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

24 P 8 P 1 Oracle Spatial Database Services P 7 H 1 P 2 H 4 H 3 H 2 P 6 P 3 P 5 P 4 Element 0 Element 1 (Hole) Geometry Data Type Indexing Rtree ROADS Query/Analysis Select, join, buffer, within distance, nearest neighbor, intersection, union, convex hull, centroid,... RNAME ID TYPE LANES GEOMETRY M40 M HWY HWY Access: SQL (Structured Query Language) X x1 x2 x3 x4 x5 6 4 Y y1 y2 y3 y4 y5 Abstract Data Type 24 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

25 Spatial Tables Just like regular tables Contain a column of type SDO_GEOMETRY to store the geometric shape of the objects CREATE TABLE map_countries ( id NUMBER PRIMARY KEY, name VARCHAR2(30), geometry SDO_GEOMETRY); 25 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

26 Analyze Find all competitors within 2 miles of Northport Branch SELECT c.holding_company, c.location FROM competitor c, bank b WHERE b.site_id = 1604 AND SDO_WITHIN_DISTANCE( c.location, b.location, 'distance=2 unit=mile ) = 'TRUE' Map data NAVTEQ 26 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

27 Analyze What percentage of Yellowstone is in each state? WITH p AS ( SELECT s.state, sdo_geom.sdo_area ( sdo_geom.sdo_intersection ( s.geom, p.geom, 0.5), 0.5, 'unit=sq_km') area FROM us_states s, us_parks p WHERE SDO_ANYINTERACT (s.geom, p.geom) = 'TRUE' AND p.name = 'Yellowstone NP' ) SELECT state, area, RATIO_TO_REPORT(area) OVER () * 100 AS pct FROM p ORDER BY pct DESC; STATE AREA PCT Wyoming Montana Idaho Copyright 2011, Oracle and/or its affiliates. All rights reserved.

28 Oracle Spatial 11g Enables Scrollable, Interactive Maps Spatial Web Services 3D, Point Clouds, and LIDAR Geocoding & Routing Oracle BI Dashboards Raster Imagery 28 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

29 Oracle Locator vs Spatial Enumerated in detail in the online Locator doc Oracle Database Oracle Spatial Option GeoRaster Geocoder Routing Engine 3D Misc advanced spatial analyses Topology Data Model Linear Referencing System Spa*al Analy*c Func*ons OGC Web Services Oracle Locator Native Spatial datatype Native Spatial index Basic spatial queries Full projection support 29 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

30 Open and Interoperable Data 30 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

31 Oracle Fusion Middleware MapViewer A J2EE component (.ear) for developing web mapping applications. Usually deployed in WLS. Renders geospatial content stored in an Oracle database. Background maps can be from 3 rd party providers. Provides Java, Javascript, and XML request/response APIs. 31 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

32 Oracle Mapviewer OAS, WLS or other J2EE container Mapviewer applica*on Oracle Maps Javascript API Oracle Database build build build Mapviewer metadata Styles style definitions (markers, colors etc) Themes association of style with data Base Maps collection of themes Tilecaches predefined base map tiles Spatial data 32 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

33 Oracle Mapviewer : architecture Mapviewer client side external map providers elocation, Google, Bing HTTP: (Map interaction client lib) (map tiles and feature data) WebLogic or J2EE Container MapViewer server components rendering engine Dynamic SQL queries map cache server adapter Oracle Maps server-side HTTP (get map tiles) Oracle Database 33 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

34 Mapviewer facilitates different options For content Local (Oracle database) Online web services Hybrid (local database + online content) For development Java or javascript code embedded in application Using ADF Faces (<dvt:map>) 34 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

35 External Services and MapViewer Can be spatial (e.g. weather) or non-spatial (e.g. BI report) Must have a location identifier (e.g. county name, or region id) Or contain the location (e.g. georss) Can be an XML document (BI report, georss) or JSON or embeddable content (e.g. media) Or an OGC WebFeatureService 1.0 response (i.e. a GML 2.11 feature) 35 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

36 Display Content (XML) from External Services 36 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

37 Display Content (GeoRSS) from External Services 37 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

38 Display Content (JSON) from External Services 38 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

39 Display Content (media) from External Services 39 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

40 External Content (StreetView) on MapViewer Maps 40 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

41 ESRI basemap, NAVTEQ Traffic, fuel, incidents 41 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

42 External Map Services and MapViewer Built-in support for Google and Bing Maps Purely for tiles not their full javascript API Interface (MVCustomTileLayer) for accessing other online map services (e.g. ESRI or OpenStreetMap) OGC WebMapService and WebFeatureService interfaces are also supported 42 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

43 MapViewer also renders applica*on content on background maps from online services 43 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

44 External Map Tiles in MapViewer 44 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

45 CustomTileLayer Interface and OpenStreetMap 45 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

46 CustomTileLayer Interface and ESRI ArcGIS Online 46 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

47 Summary An Oracle database is a powerful, robust geospatial data management and analysis platform FMW MapViewer renders application content The content can be in an Oracle database, or Can come from other platforms or services Such as OBIEE or web services like Weatherbug The map data can be stored using Spatial, or The background maps can come from services E.g. ESRI, Bing or Google Maps 47 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

48 The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle s products remains at the sole discretion of Oracle. 48 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

49 49 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Q&A

50 50 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

51 51 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

An Overview of FMW MapViewer

An Overview of FMW MapViewer An Overview of FMW MapViewer Agenda What is MapViewer Select Features Getting Started Additional Resources 2 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Oracle

More information

May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA

May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA 1 Building Applications with Oracle MapViewer LJ Qian (lj.qian@oracle.com) Director, Software Development The following

More information

Map Visualization in Analytic Applications LJ Qian, Director of Software Development David Lapp, Product Manager Oracle

Map Visualization in Analytic Applications LJ Qian, Director of Software Development David Lapp, Product Manager Oracle Map Visualization in Analytic Applications LJ Qian, Director of Software Development David Lapp, Product Manager Oracle Copyright 2015, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Real Life Applications of Location Analytics Dan Geringer, Senior Software Development Manager, Oracle Jayant Sharma, Director Prod Mgmt, Oracle 2 The following is intended to outline our general product

More information

May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA

May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA 1 Introduction to MapViewer & Tools for Your Business Apps and Mobile Devices Albert Godfrind Oracle Spatial Architect

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Oracle Spatial and Graph: Technologies 101 Xavier Lopez, Senior Director Product Management, Oracle Server Technologies 2 Program Agenda Introducing Oracle Spatial and Graph Advanced Features New Features

More information

An Oracle White Paper January Oracle Fusion Middleware MapViewer 10g ( )

An Oracle White Paper January Oracle Fusion Middleware MapViewer 10g ( ) An Oracle White Paper January 2009 Oracle Fusion Middleware MapViewer 10g (10.1.3.3) Oracle Fusion Middleware MapViewer Disclaimer The following is intended to outline our general product direction. It

More information

An Oracle White Paper September Oracle Fusion Middleware MapViewer

An Oracle White Paper September Oracle Fusion Middleware MapViewer An Oracle White Paper September 2014 Oracle Fusion Middleware MapViewer Introduction... 2 Usage Scenarios... 3 Reporting... 3 Proximity Search... 4 Analysis... 5 Brief Feature Overview... 8 Developing

More information

An Oracle White Paper July Oracle Fusion Middleware MapViewer 12c

An Oracle White Paper July Oracle Fusion Middleware MapViewer 12c An Oracle White Paper July 2016 Oracle Fusion Middleware MapViewer 12c Oracle Fusion Middleware MapViewer 12c Introduction... 2 Usage Scenarios... 3 Reporting... 3 Proximity Search... 3 Analysis... 5 Feature

More information

Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 What s New in Location Analytics Jayant Sharma Director, Product Mgmt The following is intended to outline our general product direction. It is intended for information purposes only, and may not be

More information

Oracle. Spatial Summit Using Map Views in Oracle Business Intelligence Analy7cs. Albert Godfrind SpaCal SoluCons Architect

Oracle. Spatial Summit Using Map Views in Oracle Business Intelligence Analy7cs. Albert Godfrind SpaCal SoluCons Architect Oracle Spatial Summit 2015 Using Map Views in Oracle Business Intelligence Analy7cs Albert Godfrind SpaCal SoluCons Architect Oracle Hans Viehmann Product Manager, EMEA Oracle The Spa7al & Graph SIG User

More information

May 2012 Oracle Spatial User Conference

May 2012 Oracle Spatial User Conference 1 May 2012 Oracle Spatial User Conference May 23, 2012 Ronald Reagan Building and International Trade Center Washington, DC USA Siva Ravada Director of Development Oracle Spatial Steve MacCabe Product

More information

Deploying Spatial Applications in Oracle Public Cloud

Deploying Spatial Applications in Oracle Public Cloud Deploying Spatial Applications in Oracle Public Cloud David Lapp, Product Manager Oracle Spatial and Graph Oracle Spatial Summit at BIWA 2017 Safe Harbor Statement The following is intended to outline

More information

Visualizing Data Using Maps in OBI 11g

Visualizing Data Using Maps in OBI 11g Copyright 2010, Vlamis Software Solutions, Inc. Visualizing Data Using Maps in OBI 11g Collaborate 2011 Tim Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Copyright 2010, Vlamis Software

More information

Land Information Management and its (3D) Database Foundation

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

More information

ORACLE FUSION MIDDLEWARE MAPVIEWER

ORACLE FUSION MIDDLEWARE MAPVIEWER ORACLE FUSION MIDDLEWARE MAPVIEWER 10.1.3.3 MAPVIEWER KEY FEATURES Component of Fusion Middleware Integration with Oracle Spatial, Oracle Locator Support for two-dimensional vector geometries stored in

More information

ORACLE FUSION MIDDLEWARE

ORACLE FUSION MIDDLEWARE ORACLE FUSION MIDDLEWARE Oracle Application Server 10g MapViewer Technical Overview September 2005 Oracle Corporation Topics Overview Main features Concepts APIs Fast start Map Definition Tool OTN utility:

More information

Learning What s New in ArcGIS 10.1 for Server: Administration

Learning What s New in ArcGIS 10.1 for Server: Administration Esri Mid-Atlantic User Conference December 11-12th, 2012 Baltimore, MD Learning What s New in ArcGIS 10.1 for Server: Administration Derek Law Product Manager Esri - Redlands ArcGIS for Server Delivering

More information

Oracle Spatial Technologies: An Update. Xavier Lopez Director, Spatial Technologies Oracle Corporation

Oracle Spatial Technologies: An Update. Xavier Lopez Director, Spatial Technologies Oracle Corporation Oracle Spatial Technologies: An Update Xavier Lopez Director, Spatial Technologies Oracle Corporation Overview Oracle Approach to Market Specialist v. Generalist Solutions New Developments: Oracle Database

More information

<Insert Picture Here> The Oracle Fusion Development Platform: Oracle JDeveloper and Oracle ADF Overview

<Insert Picture Here> The Oracle Fusion Development Platform: Oracle JDeveloper and Oracle ADF Overview 1 1 The Oracle Fusion Development Platform: Oracle JDeveloper and Oracle ADF Overview Dana Singleterry Principal Product Manager Oracle JDeveloper and Oracle ADF http://blogs.oracle.com/dana

More information

ArcGIS Online: Managing Data. Jeremy Bartley Sentha Sivabalan

ArcGIS Online: Managing Data. Jeremy Bartley Sentha Sivabalan ArcGIS Online: Managing Data Jeremy Bartley (jbartley@esri.com) Sentha Sivabalan (ssivabalan@esri.com) Agenda Creating and managing content like Apps, Maps, Scenes and Layers in ArcGIS Today s Topics:

More information

May 21, 2014 Walter E. Washington Convention Center Washington, DC USA. Copyright 2014, Oracle and/or its affiliates. All rights reserved.

May 21, 2014 Walter E. Washington Convention Center Washington, DC USA. Copyright 2014, Oracle and/or its affiliates. All rights reserved. May 21, 2014 Walter E. Washington Convention Center Washington, DC USA 1 How to Build a Better GIS Application Siva Ravada Senior Director of Development Spatial and Graph & MapViewer Oracle Program Agenda

More information

Don t Rewrite, Reuse!

Don t Rewrite, Reuse! Don t Rewrite, Reuse! Architecture for Mobile Enablement CON2571 Jeff Davies Sr. Product Manager Oracle Mobile October 2, 2014 Copyright 2014 Oracle and/or its affiliates. All rights reserved. Oracle ConfidenLal

More information

An Introduction to Oracle s Location Technologies ORACLE WHITE PAPER MARCH 2017

An Introduction to Oracle s Location Technologies ORACLE WHITE PAPER MARCH 2017 An Introduction to Oracle s Location Technologies ORACLE WHITE PAPER MARCH 2017 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only,

More information

IT Infrastructure for BIM and GIS 3D Data, Semantics, and Workflows

IT Infrastructure for BIM and GIS 3D Data, Semantics, and Workflows IT Infrastructure for BIM and GIS 3D Data, Semantics, and Workflows Hans Viehmann Product Manager EMEA ORACLE Corporation November 23, 2017 @SpatialHannes Safe Harbor Statement The following is intended

More information

Building Apps with the ArcGIS Runtime SDK for ios

Building Apps with the ArcGIS Runtime SDK for ios Building Apps with the ArcGIS Runtime SDK for ios Nick Furness @geeknixta ArcGIS Runtime SDKs 10.2 Released! Runtime platforms OS X Desktop Desktop Client Windows Store QT ios.net JavaSE Mobile Android

More information

Best Practices for Designing Effective Map Services

Best Practices for Designing Effective Map Services 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Best Practices for Designing Effective Map Services Ty Fitzpatrick Tanu Hoque What s in this session Map

More information

BROWSER. LuciadRIA DATA SHEET

BROWSER. LuciadRIA DATA SHEET BROWSER LuciadRIA DATA SHEET V2017 V2017.0 DATA SHEET LuciadRIA is the answer to today s demands for powerful, lightweight applications in the browser. Driven by today s most advanced web technologies,

More information

Connecting your Microservices and Cloud Services with Oracle Integration CON7348

Connecting your Microservices and Cloud Services with Oracle Integration CON7348 Connecting your Microservices and Cloud Services with Oracle Integration CON7348 Robert Wunderlich Sr. Principal Product Manager September 19, 2016 Copyright 2016, Oracle and/or its affiliates. All rights

More information

May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA

May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA May 22, 2013 Ronald Reagan Building and International Trade Center Washington, DC USA 1 To 9. D 1. 2. 3. Performance, Performance, Performance What You Need To Know About Exadata Daniel Geringer Senior

More information

Oracle 10g GeoSpatial Technologies. Eve Kleiman Asia/Pacific Spatial Product Manager Oracle Corporation

Oracle 10g GeoSpatial Technologies. Eve Kleiman Asia/Pacific Spatial Product Manager Oracle Corporation Oracle 10g GeoSpatial Technologies Eve Kleiman Asia/Pacific Spatial Product Manager Oracle Corporation Eve.Kleiman@oracle.com Agenda Market and Technology Trends Oracle GeoSpatial Technology Stack What

More information

Working with Feature Layers. Russell Brennan Gary MacDougall

Working with Feature Layers. Russell Brennan Gary MacDougall Working with Feature Layers Russell Brennan Gary MacDougall Working with Feature Layers Session will focus on feature access and editing Highlight new features added over the last few releases Agenda Introduction

More information

Using ArcGIS for Server. Javier Abadía, Esri España Peter McDaid, Esri UK

Using ArcGIS for Server. Javier Abadía, Esri España Peter McDaid, Esri UK Using ArcGIS for Server Javier Abadía, Esri España Peter McDaid, Esri UK 1. Intro 2. ArcGIS for Server = Geospatial Apps Server 3. Map Services Publishing Flow Apps 4. Spatial Functionality Services Publishing

More information

Both ArcGIS Online and ArcWeb Services: Focused on the ArcGIS User Deeply integrated within ArcGIS System

Both ArcGIS Online and ArcWeb Services: Focused on the ArcGIS User Deeply integrated within ArcGIS System ArcWeb Services in GIS Solutions James Killick: Marwa Mabrouk: ArcWeb Product Manager ArcWeb Development Manager Developer Summit 2007 1 Topics Quick Overview & Update ArcWeb Content & Content Management

More information

Building Applications with ArcGIS Runtime SDK for ios - Part I. Divesh Goyal Mark Dostal

Building Applications with ArcGIS Runtime SDK for ios - Part I. Divesh Goyal Mark Dostal Building Applications with ArcGIS Runtime SDK for ios - Part I Divesh Goyal Mark Dostal Agenda The ArcGIS System Using the Runtime SDK for ios - Display Maps - Perform Analysis - Visualize Results Q&A

More information

ORACLE SPATIAL DATABASE WITH MAPVIEWER AND MAP BUILDER FOR DESGINING SPATIAL APPLICATION OF THAPAR UNIVERSITY

ORACLE SPATIAL DATABASE WITH MAPVIEWER AND MAP BUILDER FOR DESGINING SPATIAL APPLICATION OF THAPAR UNIVERSITY ORACLE SPATIAL DATABASE WITH MAPVIEWER AND MAP BUILDER FOR DESGINING SPATIAL APPLICATION OF THAPAR UNIVERSITY Thesis submitted in partial fulfillment of the requirements for the award of degree of Master

More information

Oracle Fusion Middleware MapViewer Primer. An Oracle White Paper April 2012

Oracle Fusion Middleware MapViewer Primer. An Oracle White Paper April 2012 Oracle Fusion Middleware MapViewer Primer An Oracle White Paper April 2012 Oracle Fusion Middleware MapViewer Primer Introduction... 3 What Is MapViewer... 3 What is Oracle Maps... 4 Setting up your MapViewer

More information

A ONE-STOP SERVICE HUB INTEGRATING ESSENTIAL WEATHER AND GEOPHYSICAL INFORMATION ON A GIS PLATFORM. Hong Kong Observatory

A ONE-STOP SERVICE HUB INTEGRATING ESSENTIAL WEATHER AND GEOPHYSICAL INFORMATION ON A GIS PLATFORM. Hong Kong Observatory A ONE-STOP SERVICE HUB INTEGRATING ESSENTIAL WEATHER AND GEOPHYSICAL INFORMATION ON A GIS PLATFORM Hong Kong Observatory Mission HONG KONG OBSERVATORY To provide people-oriented quality services in meteorology

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware User's Guide for Oracle MapViewer 11g Release 1 (11.1.1) E10145-04 December 2009 Describes how to use Oracle MapViewer, a tool that renders maps showing different kinds of spatial

More information

ArcWeb Services (APIs, GIS Content and Functionality)

ArcWeb Services (APIs, GIS Content and Functionality) ArcWeb Services SOAP API Deep Dive Marwa Mabrouk: Saravanan Rajaram: ArcWeb Development Manager ArcWeb Senior QA Engineer Developer Summit 2007 1 Topics Quick Overview Location services Spatial analysis

More information

BEST PRACTICES FOR DEVELOPING GEOSPATIAL BIG DATA APPS FOR THE CLOUD. Nick Salem - Distinguished Engineer David Tatar - Principal Software Engineer

BEST PRACTICES FOR DEVELOPING GEOSPATIAL BIG DATA APPS FOR THE CLOUD. Nick Salem - Distinguished Engineer David Tatar - Principal Software Engineer BEST PRACTICES FOR DEVELOPING GEOSPATIAL BIG DATA APPS FOR THE CLOUD Nick Salem - Distinguished Engineer David Tatar - Principal Software Engineer SPEAKER BIO NICK SALEM 18 Oracle Certified Professional

More information

Developing Loca.on- enabled Enterprise Applica.ons

Developing Loca.on- enabled Enterprise Applica.ons Developing Loca.on- enabled Enterprise Applica.ons On- premise, cloud, or mobile September 28 October 2, 2014 San Francisco Jayant Sharma, Liujian Qian Director Spa.al Product Development September 29,

More information

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

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

More information

Oracle APEX 18.1 New Features

Oracle APEX 18.1 New Features Oracle APEX 18.1 New Features May, 2018 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Introduction to ArcGIS API for Flex. Bjorn Svensson Lloyd Heberlie

Introduction to ArcGIS API for Flex. Bjorn Svensson Lloyd Heberlie Introduction to ArcGIS API for Flex Bjorn Svensson Lloyd Heberlie Agenda API Introduction Getting started API concepts and examples Getting more information API Introduction ArcGIS 10 A Complete System

More information

County of Los Angeles. Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) Version 2 May 2015

County of Los Angeles. Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) Version 2 May 2015 County of Los Angeles Chief Information Office Preferred Technologies for Geographic Information Systems (GIS) Version 2 May 2015 CIO Preferred Technologies for GIS This document lists the preferred Geographic

More information

Welkom bij de themasessie Oracle Spatial 11g

Welkom bij de themasessie Oracle Spatial 11g Welkom bij de themasessie Oracle Spatial 11g OGh SIM Commissie Agenda 19:00-19:05 Welkom 19:05-19:35 Managing ALL your Information in 11g (Han Wammes) 19:35-20:15 Oracle Spatial 11g

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware User's Guide for Oracle MapViewer 11g Release 1 (11.1.1) E10145-01 May 2009 Describes how to use Oracle MapViewer, a tool that renders maps showing different kinds of spatial data.

More information

ArcGIS Enterprise: An Introduction. Philip Heede

ArcGIS Enterprise: An Introduction. Philip Heede Enterprise: An Introduction Philip Heede Online Enterprise Hosted by Esri (SaaS) - Upgraded automatically (by Esri) - Esri controls SLA Core Web GIS functionality (Apps, visualization, smart mapping, analysis

More information

Adopting the Appropriate GIS Web Service Technologies

Adopting the Appropriate GIS Web Service Technologies Adopting the Appropriate GIS Web Service Technologies Bo Guo, PE, PhD GIS/IT Integration Consultant Gistic Research Inc. UT & AZ Jake Payne Database Administrator & Architect State of Utah Department of

More information

Understanding Oracle ADF and its role in the Oracle Fusion Platform

Understanding Oracle ADF and its role in the Oracle Fusion Platform ORACLE PRODUCT LOGO Understanding Oracle ADF and its role in the Oracle Fusion Platform Dana Singleterry blogs.oracle.com/dana 2 Copyright Principal 2011, Oracle and/or its Product affiliates. All rights

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. BI Publisher Anatomy of a Template (15010) Mike Donohue Director, BI Product Management 2 Copyright 2011, Oracle and/or its affiliates.

More information

Leveraging OGC Services in ArcGIS Server. Satish Sankaran Yingqi Tang

Leveraging OGC Services in ArcGIS Server. Satish Sankaran Yingqi Tang Leveraging OGC Services in ArcGIS Server Satish Sankaran ssankaran@esri.com Yingqi Tang ytang@esri.com Agenda Interoperability Enablers OGC and esri OGC Web Services ArcGIS and OGC Web Services - @ version

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Oracle Spatial Summit 2015 Best Practices for Developing Geospatial Apps for the Cloud

Oracle Spatial Summit 2015 Best Practices for Developing Geospatial Apps for the Cloud Oracle Spatial Summit 2015 Best Practices for Developing Geospatial Apps for the Cloud Nick Salem, Distinguished Engineer Neustar Neustar ElementOne OVERVIEW Comprehensive cloud based GIS analytics platform

More information

Oracle Spatial 10g: Platform for Enterprise Geospatial Solutions

Oracle Spatial 10g: Platform for Enterprise Geospatial Solutions 11/30/2005-8:00 am - 9:30 am Room:Macaw 1/2 (Swan) Walt Disney World Swan and Dolphin Resort Orlando, Florida Oracle Spatial 10g: Platform for Enterprise Geospatial Solutions Xavier Lopez - Oracle USA,

More information

An introduction to ArcGIS Runtime

An introduction to ArcGIS Runtime 2013 Europe, Middle East, and Africa User Conference October 23-25 Munich, Germany An introduction to ArcGIS Runtime Christine Brunner Lars Schmitz Welcome! Christine Brunner, Germany - Software Developer

More information

Oracle Spatial 11g: Build Web Services, GeoRaster, Network and 3D Applications Dr. Siva Ravada Director of Development Oracle

Oracle Spatial 11g: Build Web Services, GeoRaster, Network and 3D Applications Dr. Siva Ravada Director of Development Oracle Oracle Spatial 11g: Build Web Services, GeoRaster, Network and 3D Applications Dr. Siva Ravada Director of Development Oracle Oracle Spatial Features Oracle Locator: Feature of Oracle Database XE, SE,

More information

Esri Support for Geospatial Standards

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

More information

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Oracle WebCenter Portal and ADF Development Richard Maldonado Principal Product Manager 2 Copyright 2012, Oracle and/or its affiliates.

More information

How to create geojson out of an image for using it as map layer in Oracle Data Visualization

How to create geojson out of an image for using it as map layer in Oracle Data Visualization How to create geojson out of an image for using it as map layer in Oracle Data Visualization In this document we will discuss about how to convert an image to a geojson file format. Many a time BI users

More information

Oracle Corporation

Oracle Corporation 1 2012 Oracle Corporation Oracle WebLogic Server 12c: Developing Modern, Lightweight Java EE 6 Applications Will Lyons, Director of WebLogic Server Product Management Pieter Humphrey, Principal Product

More information

!1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

!1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. !1 Oracle Applications User Experiences in the Cloud: Trends and Strategy Noel Portugal Principal UX Developer March, 2014!2 Safe Harbor The following is intended to outline our general product direction.

More information

Oracle WebCenter Interaction: Roadmap for BEA AquaLogic User Interaction. Ajay Gandhi Sr. Director of Product Management Enterprise 2.

Oracle WebCenter Interaction: Roadmap for BEA AquaLogic User Interaction. Ajay Gandhi Sr. Director of Product Management Enterprise 2. Oracle WebCenter Interaction: Roadmap for BEA AquaLogic User Interaction Ajay Gandhi Sr. Director of Product Management Enterprise 2.0 and Portals 1 Agenda Enterprise 2.0 and Portal Product Strategy AquaLogic

More information

An Introduction to GIS for developers

An Introduction to GIS for developers An Introduction to GIS for developers Part 4: GIS Sharing Canserina Kurnia & Tom Shippee Agenda Web GIS ArcGIS Online Cloud-based ArcGIS Server ArcGIS Server on-premises ArcGIS a complete platform discover,

More information

REST APIs on z/os. How to use z/os Connect RESTful APIs with Modern Cloud Native Applications. Bill Keller

REST APIs on z/os. How to use z/os Connect RESTful APIs with Modern Cloud Native Applications. Bill Keller REST APIs on z/os How to use z/os Connect RESTful APIs with Modern Cloud Native Applications Bill Keller bill.keller@us.ibm.com Important Disclaimer IBM s statements regarding its plans, directions and

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights Web Services and SOA Integration Options for Oracle E-Business Suite Rajesh Ghosh, Group Manager, Applications Technology Group Abhishek Verma,

More information

Mobile Application Development: Introducing ADF Mobile Native Client Framework

Mobile Application Development: Introducing ADF Mobile Native Client Framework Mobile Application Development: Introducing ADF Mobile Native Client Framework Denis Tyrell, Senior Director of Product Development, ADF/JDeveloper Joe Huang, Senior Principal Product Manager, ADF/JDeveloper

More information

Fact-Finding with MapViewer By Liujian Qian and Jayant Sharma

Fact-Finding with MapViewer By Liujian Qian and Jayant Sharma As Published In DEVELOPER: MapViewer Fact-Finding with MapViewer By Liujian Qian and Jayant Sharma May/June 2005 Map answers with Oracle Application Server 10g For years people have been able to enter

More information

What s New in Desktop 10.1

What s New in Desktop 10.1 What s New in Desktop 10.1 Damian Spangrud Esri Redlands Trip Down Memory Lane ArcGIS A Complete System for Geographic Information Cloud Web Online Mobile Enterprise Desktop Sharing Information sharing

More information

ESRI Technology Update. Joe Holubar Larry Young

ESRI Technology Update. Joe Holubar Larry Young ESRI Technology Update Joe Holubar Larry Young Continued Improvement Improving Quality and Extending and Refining Functionality First Half of 2009: Minor Update Release (ArcGIS 9.3.1) ArcGIS Explorer Fall

More information

ESRI Software Evolution

ESRI Software Evolution ArcGIS Jan Šlahař About ESRI ESRI - Environmental Systems Research Institute Founded in 1969, Redlands, California In 2002 Esri had approximately a 36 percent share of the GIS software market worldwide

More information

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

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

More information

Getting Started with ArcGIS Runtime SDK for ios and OS X. Divesh Goyal & Mary Harvey

Getting Started with ArcGIS Runtime SDK for ios and OS X. Divesh Goyal & Mary Harvey Getting Started with ArcGIS Runtime SDK for ios and OS X Divesh Goyal & Mary Harvey Topics Overview of Runtime Quick intro to SDK resources SDK functionality & patterns - Displaying maps - Performing analysis

More information

ArcGIS Runtime SDK for WPF

ArcGIS Runtime SDK for WPF Esri Developer Summit in Europe November 9 th Rotterdam ArcGIS Runtime SDK for WPF Mike Branscomb Mark Baird Agenda Introduction SDK Building the Map Query Spatial Analysis Editing and Geometry Programming

More information

The Oracle Enterprise Geodatabase (EGDB) Charlie Crocker Farallon Geographics, Inc.

The Oracle Enterprise Geodatabase (EGDB) Charlie Crocker Farallon Geographics, Inc. The Oracle Enterprise Geodatabase (EGDB) Charlie Crocker Farallon Geographics, Inc. www.fargeo.com Norcal URISA Chapter Meeting 2/9/2005 Todays Goals Enterprise geodatabase defined Roles Oracle can play

More information

Lotus Technical Night School XPages and RDBMS

Lotus Technical Night School XPages and RDBMS Lotus Technical Night School XPages and RDBMS Note: Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing

More information

Spatial and Graph Analytics with Oracle Database 12c Release 2 ORACLE WHITE PAPER MARCH 2017

Spatial and Graph Analytics with Oracle Database 12c Release 2 ORACLE WHITE PAPER MARCH 2017 Spatial and Graph Analytics with Oracle Database 12c Release 2 ORACLE WHITE PAPER MARCH 2017 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Continuous delivery of Java applications. Marek Kratky Principal Sales Consultant Oracle Cloud Platform. May, 2016

Continuous delivery of Java applications. Marek Kratky Principal Sales Consultant Oracle Cloud Platform. May, 2016 Continuous delivery of Java applications using Oracle Cloud Platform Services Marek Kratky Principal Sales Consultant Oracle Cloud Platform May, 2016 Safe Harbor Statement The following is intended to

More information

MySQL Cluster Web Scalability, % Availability. Andrew

MySQL Cluster Web Scalability, % Availability. Andrew MySQL Cluster Web Scalability, 99.999% Availability Andrew Morgan @andrewmorgan www.clusterdb.com Safe Harbour Statement The following is intended to outline our general product direction. It is intended

More information

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

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

More information

Application Express 4.0 Architecture & Configuration Marc Sewtz Senior Software Development Manager Oracle America Inc.

Application Express 4.0 Architecture & Configuration Marc Sewtz Senior Software Development Manager Oracle America Inc. 1 Application Express 4.0 Architecture & Configuration Marc Sewtz Senior Software Development Manager Oracle America Inc., New York, NY The following is intended to outline our general

More information

GEOSPATIAL ENGINEERING COMPETENCIES. Geographic Information Science

GEOSPATIAL ENGINEERING COMPETENCIES. Geographic Information Science GEOSPATIAL ENGINEERING COMPETENCIES Geographic Information Science The character and structure of spatial information, its methods of capture, organisation, classification, qualification, analysis, management,

More information

Building Java Apps with ArcGIS Runtime SDK

Building Java Apps with ArcGIS Runtime SDK Building Java Apps with ArcGIS Runtime SDK Mark Baird and Vijay Gandhi A step back in time Map making 50 years ago - http://www.nls.uk/exhibitions/bartholomew/maps-engraver - http://www.nls.uk/exhibitions/bartholomew/printing

More information

ArcGIS Runtime: Styling Maps. Ralf Gottschalk, Daniel Lee, Lucas Danzinger

ArcGIS Runtime: Styling Maps. Ralf Gottschalk, Daniel Lee, Lucas Danzinger ArcGIS Runtime: Styling Maps Ralf Gottschalk, Daniel Lee, Lucas Danzinger Map Styling What is this session about? Creating beautiful functional maps for your Runtime Apps - Not about cartography It is

More information

_ LUCIADRIA V PRODUCT DATA SHEET _ LUCIADRIA PRODUCT DATA SHEET

_ LUCIADRIA V PRODUCT DATA SHEET _ LUCIADRIA PRODUCT DATA SHEET _ LUCIADRIA PRODUCT DATA SHEET V2016 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

This presentation is for informational purposes only and may not be incorporated into a contract or agreement.

This presentation is for informational purposes only and may not be incorporated into a contract or agreement. This presentation is for informational purposes only and may not be incorporated into a contract or agreement. The following is intended to outline our general product direction. It is intended for information

More information

3D in the Browser with WebGL. Chris Andrews 3D Product Manager Javier Gutierrez 3D Product Engineer

3D in the Browser with WebGL. Chris Andrews 3D Product Manager Javier Gutierrez 3D Product Engineer 3D in the Browser with WebGL Chris Andrews 3D Product Manager Javier Gutierrez 3D Product Engineer Just sayin This is not a programming class Goal is to help you learn about a technology area that impacts

More information

ebusiness Suite goes SOA

ebusiness Suite goes SOA ebusiness Suite goes SOA Ulrich Janke Oracle Consulting Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not

More information

Leveraging OGC Services in ArcGIS Server

Leveraging OGC Services in ArcGIS Server Esri International User Conference San Diego, CA Technical Workshops Jul.14 th 2011 Leveraging OGC Services in ArcGIS Server Satish Sankaran Yingqi Tang Agenda Interoperability

More information

InCLUDE Data Exchange. Julia Harrell, GISP GIS Coordinator, NC DENR

InCLUDE Data Exchange. Julia Harrell, GISP GIS Coordinator, NC DENR InCLUDE Data Exchange Julia Harrell, GISP GIS Coordinator, NC DENR Julia.harrell@ncdenr.gov InCLUDE Project Partners NC Department of Environment & Natural Resources: The State of NC s lead environmental

More information

<Insert Picture Here>

<Insert Picture Here> Oracle Forms Modernization with Oracle Application Express Marc Sewtz Software Development Manager Oracle Application Express Oracle USA Inc. 540 Madison Avenue,

More information

ArcGIS Runtime SDK for ios and macos: Building Apps. Suganya Baskaran, Gagandeep Singh

ArcGIS Runtime SDK for ios and macos: Building Apps. Suganya Baskaran, Gagandeep Singh ArcGIS Runtime SDK for ios and macos: Building Apps Suganya Baskaran, Gagandeep Singh Get Started Core Components Agenda - Display Map Content - Search for Content - Perform Analysis - Edit Content Summary

More information

Development of Java Plug-In for Geoserver to Read GeoRaster Data. 1. Baskar Dhanapal CoreLogic Global Services Private Limited, Bangalore

Development of Java Plug-In for Geoserver to Read GeoRaster Data. 1. Baskar Dhanapal CoreLogic Global Services Private Limited, Bangalore Development of Java Plug-In for Geoserver to Read GeoRaster Data 1. Baskar Dhanapal CoreLogic Global Services Private Limited, Bangalore 2. Bruce Thelen CoreLogic Spatial Solutions, Austin, USA 3. Perumal

More information

S Building Maps with Oracle Spatial and Oracle Fusion Middleware MapViewer

S Building Maps with Oracle Spatial and Oracle Fusion Middleware MapViewer S318534 - Building Maps with Oracle Spatial and Oracle Fusion Middleware MapViewer Ji Yang Principle Member of Technical Staff Jayant Sharma Technical Director Joao Paiva Principle Member of Technical

More information

ArcGIS Online: Developing Web Applications with Geocoding and Routing Services. Deelesh Mandloi Dmitry Kudinov Brad Niemand

ArcGIS Online: Developing Web Applications with Geocoding and Routing Services. Deelesh Mandloi Dmitry Kudinov Brad Niemand ArcGIS Online: Developing Web Applications with Geocoding and Routing Services Deelesh Mandloi Dmitry Kudinov Brad Niemand Metadata Slides available at http://esriurl.com/ds15gr Slides and video recording

More information

Verarbeitung von Vektor- und Rasterdaten auf der Hadoop Plattform DOAG Spatial and Geodata Day 2016

Verarbeitung von Vektor- und Rasterdaten auf der Hadoop Plattform DOAG Spatial and Geodata Day 2016 Verarbeitung von Vektor- und Rasterdaten auf der Hadoop Plattform DOAG Spatial and Geodata Day 2016 Hans Viehmann Product Manager EMEA ORACLE Corporation 12. Mai 2016 Safe Harbor Statement The following

More information

Esri and MarkLogic: Location Analytics, Multi-Model Data

Esri and MarkLogic: Location Analytics, Multi-Model Data Esri and MarkLogic: Location Analytics, Multi-Model Data Ben Conklin, Industry Manager, Defense, Intel and National Security, Esri Anthony Roach, Product Manager, MarkLogic James Kerr, Technical Director,

More information

Creating Web Mapping Applications. Nikki Golding

Creating Web Mapping Applications. Nikki Golding Creating Web Mapping Applications Nikki Golding Agenda Web Mapping and Map Services Fundamentals ArcGIS Web Mapping Applications - ArcGIS.com Viewer - ArcGIS Explorer Online - ArcGIS Viewer for Flex -

More information