GISBox

OGC GeoPackage

GISBox is a one-stop 3D GIS data editing, conversion and publishing platform that supports editing in multiple GIS formats such as OSGB/GEOTIFF/RVT, converting to 3DTiles/Terrain and publishing.

Introduction

GeoPackage is a lightweight, high-performance geospatial information exchange and storage format standardized by the Open Geospatial Consortium (OGC). Unlike traditional multi-file formats such as Shapefile or GeoTIFF, GeoPackage stores all spatial and attribute data in a single SQLite database file (.gpkg extension). GeoPackage is designed for mobile devices and web applications, and is particularly suitable for environments with limited storage capacity and performance.

File Structure

GeoPackage files can contain geospatial data, such as:

  1. Vector data (points, lines, polygons)
  2. Raster data (tile images)
  3. Coordinate Reference System information (CRS)
  4. Metadata, styles, and extended properties

Pros

  1. Single file management: All spatial and non-spatial data are stored in a single file for easy management.
  2. Strong compatibility and standardization: It is an international standard established by OGC and supported by many GIS tools.
  3. Lightweight and fast data access: Fast access even in mobile and web environments.
  4. Support for both vector and raster data: Multiple data formats can be processed in one package.
  5. Extensible structure: You can add your own tables and attributes.

Cons

  1. File size may increase: Due to the characteristics of SQLite, storing large amounts of data can easily cause the file to become bloated.
  2. Not suitable for simultaneous editing: Because it is based on SQLite, there are restrictions on multiple users writing at the same time.
  3. Compatibility issues with some old software: Older GIS software may not be compatible.
  4. Transaction processing considerations: Proper transaction management is required to maintain data integrity.

Application Scenario

Display and edit maps offline on mobile devices such as Android and iOS. Extract and record data in areas with difficult network connections. Facilitates the exchange of geographic information between different organizations and systems. Supports fast, lightweight serverless configuration. Suitable for field use that requires high portability and consistency.

Example

  1. An overview of the GeoPackage table.

  1. GeoPackage-WorldWind。

File Opening Mode

  1. Check the GeoPackage with QGIS.

  1. Export to GeoPackage in ArcMap.

Related GIS files

LYR

MID

MDB

QLR

References

  1. https://www.geopackage.org/
  2. https://en.wikipedia.org/wiki/GeoPackage
  3. https://www.ogc.org/standards/geopackage/