Defence Geospatial Information Working Group (DGIWG) P5: Geospatial Web Services Program Proposed Extension for Multi-resolution Vector Data in OGC GeoPackage.

Slides:



Advertisements
Similar presentations
Networked Digital Whiteboard with Handwritten-Symbol Interpreter and Dynamic-Display-Object Creator Atsuhide Kobashi Henry M. Gunn High School Palo Alto,
Advertisements

1.10 Report Findings to Communicate Research Information to Others
Raster Data in ArcSDE 8.2 Why Put Images in a Database? What are Basic Raster Concepts? How Raster data stored in Database?
JCDL 07/ 2002 JCDL W5 Digital Gazetteers Portland, Standard-based Gazetteer Services.
11 WARC standard revision workshop Clément Oury IIPC General Assembly open workshops Stanford, April 28th, 2015 IIPC General Assembly – Stanford – April.
Linux Operations and Administration
NHD Flow Check. NHDFlowcheck is a utility for geometric network creation and validation of an NHD Flowline feature class that exists in a NHD dataset.
Arnold Bregt SDI from a technological perspective: Architecture.
A Java-based tool for determining if spatial objects (polygons) require simplification before delivery to a mobile device using a Location-based Service.
Ensuring Long Term Access to Remotely Sensed HDF4 Data with Layout Maps Mike Folks, The HDF Group Ruth Duerr, NSIDC 1.
IMSS005 Computer Science Seminar
Geodata to Geoservices Design Issues for GI Infrastructures Josef Strobl Universität Salzburg Austrian Umbrella Organisation for Geographic Information.
Larger GIS Community Can answer: –Local questions at small extents Spatial and temporal extents limited –Global questions at low resolution (while ignoring.
The need for benchmarks for geographical data Frans Knibbe Geodan Introduction.
MapServer Support for Web Coverage Services Stephen Lime - Minnesota DNR Dr. Thomas E. Burk - University of Minnesota MUM Ottawa, Canada.
Achieving Interoperability using the ArcGIS Platform
Ensuring Long Term Access to Remotely Sensed HDF4 Data with Layout Maps Ruth Duerr, NSIDC Christopher Lynnes, GES DISC The HDF Group Oct HDF and.
A Prototype Spatial Object Transfer Format (SOTF) Peter Woodsford Laser-Scan Ltd., Cambridge, UK. 6th EC-GI & GIS.
Exploring Spatial Data Infrastructure in an Open Source World Jacqueline Lowe UNC-Asheville National Environmental Modeling and Analysis Center Jacqueline.
Benjamin Post Cole Kelleher.  Availability  Data must maintain a specified level of availability to the users  Performance  Database requests must.
WIGOS Data model – standards introduction.
Corporate Data Vault Data Warehousing Workshop Sept Data Warehousing Workshop Sept
ESRI Education User Conference – July 6-8, 2001 ESRI Education User Conference – July 6-8, 2001 Introducing ArcCatalog: Tools for Metadata and Data Management.
WMO GRIB Edition 3 Enrico Fucile Inter-Program Expert Team on Data Representation Maintenance and Monitoring IPET-DRMM Geneva, 30 May – 3 June 2016.
A nested grid for INSPIRE Orthoimagery and gridded data Guillermo Villa. IGN Spain April 2016.
Semantic metadata in the Catalogue Frédéric Houbie.
( ) 1 Chapter # 8 How Data is stored DATABASE.
MIWG-8 Update TG Metadata Michael Östling Status Rome.
Chapter 17 The Need for HTML 5.
Databases: What they are and how they work
HMA Follow On Activities
Joint Staff J7 3D Geospatial Modeling & Simulation Summit
Microsoft Office Access 2010 Lab 3
CHP - 9 File Structures.
1.10 Report Findings to Communicate Research Information to Others
In-situ Data and obs4MIPs
Flanders Marine Institute (VLIZ)
Towards connecting geospatial information and statistical standards in statistical production: two cases from Statistics Finland Workshop on Integrating.
Block 9: Assignment Briefing
Software Documentation
Geospatial to the Edge Interoperability Plugfest
Accessing Spatial Information from MaineDOT
MountainScope: OWS-6 Aviation Handheld Client
The Product Design Process
Scaling of Eclipse on High Density Displays
Julia Powell Coast Survey Development Laboratory
Module C: Presentation The Engineering / Design Process
Problems with INSPIRE WMS
Updating GML datasets S-100 WG TSM September 2017
Spatio-Temporal Databases
Feature Classes, Data File Formats in ArcGIS
Status Update for Extended/Multiple Feature Data Dictionary CRP WP
Proposal for a procedure for adoption of INSPIRE good practices
Module C: Presentation The Engineering / Design Process
Interpret the execution mode of SQL query in F1 Query paper
Cambridge TECHNICALS- LEVEL 3
To Be Safe For Now: Keep your shapefiles simple
Memory management Explain how memory is managed in a typical modern computer system (virtual memory, paging and segmentation should be described.
MountainScope: OWS-6 Aviation Handheld Client
Indexing 4/11/2019.
General recommendations
CSC-682 Advanced Computer Security
Geoprocessing Sample Tools for Lidar Data Management
Publishing image services in ArcGIS
Guide: Report results Version of Ladok by the latest update:
Item 7.3 (b) SDMX for UOE data collection
Survey Results Respondents: 39 of 51 – 76%
Creating Digital Graphics
QoS Metadata Status 106th OGC Technical Committee Orléans, France
Palestinian Central Bureau of Statistics
Presentation transcript:

Defence Geospatial Information Working Group (DGIWG) P5: Geospatial Web Services Program Proposed Extension for Multi-resolution Vector Data in OGC GeoPackage May 12, 2016

Defense Geospatial Information Working Group (DGIWG) 12-May-2016 Background In May 2015, DGIWG sent out a questionnaire to member nations to prioritize possible GeoPackage extensions from a military perspective. The result of this questionnaire was presented at the OGC meeting in Boulder, June Efficient handling of multi-resolution vector data was identified as one of three high-priority extensions (along with symbology and handling of coverage data).

Defense Geospatial Information Working Group (DGIWG) 12-May-2016 Rationale for the Proposed Extension Today’s support for vector data in OGC GeoPackages does not provide enough support for reading and displaying large geospatial datasets in applications. Using a spatial index (GeoPackage Extension RTree Spatial Indexes, gpkg_rtree_index) improves performance when reading the data at zoomed in levels, but it does not help if you zoom out. When using large datasets, zooming out far enough in an application can cause it to read so much data that it becomes unusable (or even crashes). Even if the application applies some filtering to reduce the amount of data that is displayed at zoomed-out levels, each geospatial object still has to be accessed, if only by SQLite.

Defense Geospatial Information Working Group (DGIWG) 12-May-2016 Two Possible Solutions 1.Introduce a “tiled vector pyramid” concept – similar to the existing tiled raster pyramids. – Work is ongoing in OGC OWS-12 to investigate this approach. 2.Add a new metadata table to describe tables that logically contain the same data but for different scale intervals. – This is the solution that is proposed by DGIWG in this presentation.

Defense Geospatial Information Working Group (DGIWG) 12-May-2016 “Tiled Vector Pyramids” – pros and cons Adding support for tiled vector pyramids – similar to tiled raster pyramids – might provide a solution for this problem. Pros: – Large datasets can be read efficiently without requiring the reader to support the gpkg_rtree_index extension. – Provides an opportunity to specify a new binary format for vector tiles that could reduce the size of the data on disk. Cons: – Requires a new binary format for vector tiles. – Extensive effort to specify and implement means that it could take long until clients, production tools and data are available. – Only clients that support the new format will be able to access the data.

Defense Geospatial Information Working Group (DGIWG) 12-May-2016 DGIWG Proposed Solution Add a new metadata table to OGC GeoPackage to describe tables that logically contain the same data but for different scale intervals. Applications can inspect this metadata table at runtime to determine which tables are suitable to use at which scale intervals. The format of the new metadata table could be specified in a new GeoPackage extension.

Defense Geospatial Information Working Group (DGIWG) 12-May-2016 Proposed Solution – pros and cons Pros: – All vector tables are still regular vector tables – readable by any OGC GeoPackage compliant reader in the same way as before. – Easy to implement: – Individual vector tables are read in the same way as before and only minor changes are necessary to make applications switch between tables at different scales. – Production tools need to be updated to write to the new metadata tables. The vector data is written in the same way as before. Cons: – Some data will be duplicated in multiple tables, but usually at a lower level of detail and therefore using less space than the most detailed version.

Defense Geospatial Information Working Group (DGIWG) 12-May-2016 Proposed Solution – Draft Table Structure