Oracle 12c: Oracle Spatial and Graph Newest Features...

55
Oracle 12c Oracle Spatial and Graph Newest Features Overview Daniel Geringer Spatial Solutions Architect

Transcript of Oracle 12c: Oracle Spatial and Graph Newest Features...

Page 1: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

Oracle 12c Oracle Spatial and Graph Newest Features Overview Daniel Geringer Spatial Solutions Architect

Page 2: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Program Agenda

• Spatial Vector Acceleration • In Memory PointInPolygon • 3D Geodetic Support • Newest Network Graph Functionality

• Multi Modal • Traffic Patterns

• Newest GeoRaster Functionality • In Database Raster Algebra • Physical and Virtual Mosaic • New GUI For Loading and Unloading Rasters

• Newest Fusion Middleware MapViewer

Page 3: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle 12c Much Faster Spatial Algorithms

Page 4: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

SPATIAL_VECTOR_ACCELERATION Oracle 12c Initialization Parameter

New faster algorithms for spatial operators and functions (up to 350x) Metadata caching increases performance:

– For all spatial operators and functions – For all DML operations (INSERT, UPDATE, DELETE)

Recommended for any application with mission critical spatial query performance requirements. Requires Oracle Spatial and Graph License

– ALTER SYSTEM SET SPATIAL_VECTOR_ACCELERATION = TRUE – ALTER SESSION SET SPATIAL_VECTOR_ACCELERATION = TRUE

Page 5: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

New In Memory Point In Polygon Function

Page 6: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

SDO_PointInPolygon

Parallel Enabled – Argument 1 – SQL statement (cursor) that defines which points (x,y) to

process – Argument 2 – Polygon – Returns all points inside polygon

Can “serially” process more than 70,000 points per second Multiply by number of cores for potential throughput “per second”

NO SPATIAL INDEX REQUIRED

New In memory point in polygon operation

Page 7: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

New - 3D Geodetic Support

Page 8: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle 12c - 3D Geodetic Support

DISTANCE, ANYINTERACT and INSIDE operations take height into account LRS functions also support 3D geodetic data

Page 9: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Endpoint with greatest height (P1) is projected onto the sphere of (P2) … and (P3) is generated. The distance between P2 and P3 is

spherical The distance of P1 to P2 is calculated

as the length of side (P1,P2) of triangle (P1,P2,P3).

Length of geodetic segment whose endpoints have different heights

Oracle 12c - 3D Distance Calculation For Geodesic Segment

P2

P1 P3

Page 10: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle Spatial and Graph Network Graph New Features

Page 11: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Network Graph Concepts

Page 12: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Why Drive Time Analysis Is Important

Reachabiltiy given a constraint (time or distance) should consider a road network. “As the crow flies”

computations can be misleading. For example, they may cross

rivers where there are no bridges.

Page 13: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Spatial Analysis Versus Network Analysis

Oracle Locator and Oracle Spatial solve spatial proximity problems.

Another type of analysis that is required by users and applications is network analysis.

Network applications deal with the connectivity of features. Spatial data is optional.

Spatial Closest feature (based on distance)

Network Closest feature (based on connectivity and cost)

Verses

Page 14: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

What Is Oracle Spatial & Graph Network Graph?

An open data model to store and analyze network data. Connectivity is determined using nodes and links:

Each link has a start node and an end node. Links and/or nodes can have costs Links can be one way or bi-directed

Page 15: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Analysis is based on connectivity and optionally cost information.

Network analyses includes: Shortest path analysis

Nearest neighbor analysis

Within cost analysis

Minimum cost spanning tree

Traveling salesman problem

Reachable/Reaching nodes

K-shortest paths analysis

What Is Oracle Spatial & Graph Network Graph?

Page 16: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Network Graph Demo

•Demo available on OTN Spatial Page

Page 17: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Network Constraint Example

public class NoHighwayConstraint implements LODNetworkConstraint { public NoHighwayConstraint(){} public boolean isSatisfied(LODAnalysisInfo info) { LogicalLink link = info.getNextLink(); if (link==null || link.getLevel() == 1 ) return true; else return false; }

Customize Oracle’s Algorithms

Page 18: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Feature Modeling/Analysis

Data model to manage node and link “features” with their associated “network elements”

– Node features: transformers, sub-stations, etc. – Link features: power lines, transit routes, etc.

Consistency between network features and network elements automatically maintained Feature level analysis

– Find the shortest path between two transformers – Find the shortest path between two transformers, but use only a certain

wire type

Model networks with application features instead of nodes and links

Page 19: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle Spatial and Graph - Network Data Model Best Route Using Traffic Pattern Information

10 PM

8 AM

Traffic Patterns

– Record historical travel patterns for different classes of roads

– Data collected based on time of day and day of the week

Use traffic patterns to compute shortest paths

– Find shorted path from point A to B with start time of 8 AM

– Find shortest path from point A to B and reach destination at 5.30PM

Support NAVTEQ Traffic Patterns format out of the box

Temporal Modeling/Analysis

Page 20: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Each mode (car, bus, rail, bike, etc) modeled as a separate network

Single logical network represents all modes of transportation

Transition nodes where networks meet NDM APIs can specify the modes to consider Out of the box support for transit data

published by transit authorities – GTFS (General Transit Feed Spec)

supported

Multi-Modal Routing

Oracle Spatial and Graph - Network Graph Routes with Preferences (walk/car/bus/subway)

Train & Bus

Bus Only

Page 21: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Parallel Enabled Geocoding

Page 22: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle Spatial & Graph - Geocoder

Geocoder is included in your Oracle Spatial and Graph license. Open data model for Geocoder reference data If you have reference data, you can populate the data model yourself If you don’t have the reference data, Oracle Partners sell it in

Transportable Tablespace format (plug and play data). – HERE – Tom Tom – ADCI – others

Page 23: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle Spatial and Graph Geocoder

Forward / Reverse / Street Centerline / Rooftop (point based) support In database geocoding –

– PL/SQL APIs – Optimal for parallel enabled batch geocoding – For batch processing, leverage parallel enabled pipeline table functions

Web service based geocoding – Java servlet based with XML geocoding APIs – Deployed in J2EE container – Optimal for non-batch request in web based applications. – Can perform batch processing too

Page 24: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Geocode Times On Exadata X4-2 1/2 RAC

X4-2 with 96 cores Geocoded 77216 addresses in 3.32 seconds 23,257 geocodes per second Works on commodity hardware too

Page 25: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Geocode Result

Result returns both: – Percent (between 0 and 1) and Edge ID. In this example (.12, 23612131) – Longitude, Latitude

For customer use case on next slide, want (Percent, Edge ID) SDO_GEO_ADDR(0, SDO_KEYWORDARRAY(), NULL,

'New Montgomery St', NULL, NULL, 'SAN FRANCISCO', 'SAN FRANCISCO', 'CA', 'US', '94105', NULL, '94105', NULL, '33', 'NEW MONTGOMERY', 'ST', 'F', 'F', NULL, NULL, 'R', .12, 23612131 , '??X?#ENUT?B281CP?', 1, 'DEFAULT', -122.40158, 37.78835 , '??010101010??000?', 8307)

Page 26: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Customer Use Case Oracle Spatial and Graph Geocoder and Network Graph

Page 27: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Marketing Requirement Road Network, Stores, and Customers Store locations in red Street network for the US in black E-mail fliers to millions of customers from their closest store.

Page 28: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

More Than One Way To Solve

As the crow flies computations often assign wrong store to a customer. Given 1,000,000 customers, and 100 stores, compute drive time every

combination? Takes a very long time.

But not all approaches are optimal

Voronoi Diagrams to group customers and stores and reduce drive time computations. Preprocessing

may take days.

Page 29: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

THINK OUT OF THE BOX

Page 30: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Same underlying data for geocoder and road network Customers geocode as link id and percentage

(instead of longitude/latitude) 5 mile Network Buffer generates all possible paths Each persisted path includes:

– Covered link IDs, nodes ID, and associated costs

Single database query to find closest store and drive time/distance for each customer (join on link_id)

•For millions of customers, find closest store within a specified drive time

Large Scale Drive Time/Distance Analysis

•Store Location •Customer Location

•20 minute Reverse Network Buffer computed in approximately 3 seconds

Page 31: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Newest Oracle Spatial and Graph GeoRaster Features and Functionality

Page 32: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Raster Concepts

Page 33: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

What Is Raster Data?

Raster data is spatial data that is created by assigning values to a matrix of cells that cover objects.

Coarser resolution

Finer resolution

Page 34: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

A Raster Is A Matrix Of Numbers

Cell Value Geological Period

1 Quaternary

2 Tertiary

3 Mesozoic

4 Proterozoic

5 Archaean

6 Gondwana

2 2 3 5 5 5 5

2 2 3 5 2 2 2

4 3 3 1 3 5 5

4 4 4 6 6 3 5

4 4 4 3 6 4 4

2 2 3 3 3 3 4

2 2 3 5 5 4 4

Value Attribute Table

Matrix of raster cells (or pixels)

Page 35: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

MultiBand Digital Image: Example

Each band is collected at a different wavelength for later processing and display.

Band 2

Band 1

Band 0 Red

Ultraviolet

Blue

Green

0.7 µm

0.6 µm

0.5 µm

0.4 µm

Page 36: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Blocking Raster Data One image can be Gigabytes in size Index very large rasters into smaller blocks Generate pyramids

Raster ID Block ID BLOB

1

1

1

1

1

2

3

4

Page 37: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

New - In Database Raster Algebra

Page 38: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

New Raster Algebra and Analytics Engine

• Four Map Algebra cell value based functions: – Conditional queries - Searches/masks cells based on booleanExpr – Updates - Update cells of a raster-based on booleanExpr – Arithmetic operations - ADD, DIVIDE, LOG, etc. – Classification for raster segmentation - Applies arithmetic expression to

cells and then segments the raster based on the expression result

Page 39: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

In Database Raster Algebra

• Algebraic functions applied to derive new results – Generate new raster layer from two or more raster layers – Raster algebra operations implement sophisticated analytical algorithms

– Normalized Difference Vegetation Index (NDVI) – TCT (Tasseled Cap Transformation) – You can define your own

– NDVI helps classify the amount of vegetation in a region, from none to rainforest

– Parallel Enabled Raster Algebra - Optimized for parallel hardware architectures

Page 40: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle Spatial and Graph GeoRaster Physical and Virtual Mosaic

Page 41: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Mosaic of Landsat Images

• 454 source images • Each about 400 Mb • Total about 108 Gb) • About 30% overlap • Images span many UTM coordinate systems

Page 42: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Newest Mosaic Functionality

Mosaic can be persisted (physical), or virtual (on the fly) Rasters can be different coordinate systems and resolution (resampling) Pyramids can be mosaiced Virtual mosaic defined by a SQL statement or a table column User defined priority for overlapping regions (Date or SQL ORDER BY)

Physical and Virtual Mosaic Support

Page 43: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Newest Mosaic Functionality

Supports gaps, no data, and overlapping regions More advanced mosaic support:

– georeferenced raw images – internal reproject/rectification – common point rules (max value, min value, etc...) – large-scale image append

Page 44: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Newest Mosaic Functionality

Supports gaps, no data, and overlapping regions More advanced mosaic support:

– georeferenced raw images – internal reproject/rectification – common point rules (max value, min value, etc...) – large-scale image append

Page 45: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle Spatial and Graph GeoRaster Mosaic

Demo

Page 46: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Demo - Landsat 5 TM Images

454 source images, each with 7 bands Each about 400 Mb Total about 108 Gb (with pyramids 143 Gb) About 30% overlap for each image Images span many UTM coordinate system Parallel 8 – Three hours to mosaic

Physical Mosaic – Persist result

Page 47: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Demo - Mosaic of Landsat Images Physical Mosaic – Persist Results

• 454 source images • Each about 400 Mb • Total about 108 Gb) • About 30% overlap • Images span many UTM coordinate systems • Parallel 8 – Three hours to generate

Page 48: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Demo - Landsat 5 TM Images

Mosaic on the fly Transform UTM coordinate systems on the fly No additional storage Mosaic pyramids on the fly too

Virtual Mosaic

Page 49: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle Fusion Middleware MapViewer New HTML5 API

Page 50: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle Fusion Middleware MapViewer Web Map Server

– Bundled feature of Oracle Fusion Middleware and Oracle WebLogic Easily publishes data stored in Oracle’s native spatial data types to

the web Provides the following API’s:

XML Java OGC Web Map Service HTML5 API – Fully disconnected capability

Page 51: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle MapViewer – Publish Maps To The Web

Footnote

Legend

Themes

Earthquakes Thematic Map

NEW – 11.1.1.7 Web Based Editor

Page 52: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

MapViewer with JDeveloper And OBIEE

Oracle JDeveloper

Oracle BI EE

Page 53: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle Fusion Middleware MapViewer Demo

Page 54: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Q&A

Oracle Confidential

Page 55: Oracle 12c: Oracle Spatial and Graph Newest Features Overviewdownload.oracle.com/.../ausRoadShow14-WhatsNewInSpatial12c.pdf · Oracle Spatial and Graph Newest Features Overview ...

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

Oracle BI SampleApp V406 (Includes MapViewer HTML5 Samples)