smas1 / geoext-viewer

Automatically exported from code.google.com/p/geoext-viewer
GNU General Public License v3.0
0 stars 0 forks source link

Support for OGC GeoPackage (GPKG) format for Vector feature up/download #341

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
GeoPackage (GPKG), see http://www.geopackage.org is the upcoming OGC standard 
for storing and exchanging both vector and raster (for now tiles) information 
in a single file. The file-format is based on SQLite. 
GPKG is touted as "The Shapefile of the Future": 
http://elogeo.nottingham.ac.uk/xmlui/handle/url/247

Ongoing implementation of the GPKG can be found in a.o. GDAL OGR (1.11 dev 
branch): 
http://www.gdal.org/ogr/drv_geopackage.html (work by Paul Ramsey). 

As Heron already support up/download via heron.cgi and heron.cgi is using 
ogr2ogr (from GDAL/OGR) already, it would be quite trivial to add support for 
GPKG. The requirement is to install the latest GitHub version of GDAL by 
compiling from source or using prefab downloads. 

Only some small changes are required in Heron:

- one/two-line addition to heron.cgi to recognize .gpkg
- extend config for some examples for FeaturePanel and Drawing and apps

Original issue reported on code.google.com by jus...@gmail.com on 11 Mar 2014 at 11:38

GoogleCodeExporter commented 9 years ago
Most examples involving up/download now include GeoPackage. Probably Heron is 
the first viewer now to support GeoPackage! See the showcase app KadViewer for 
examples, e.g. download in drawing:

http://kadviewer.kademo.nl/

See also some general notes on GeoPackage, from my presentation, that triggered 
including GPKG in Heron.
http://www.justobjects.nl/jo/assets/presentation/geopackage1

Note: to use in your environment you need to install the very latest dev 
version of GDAL (v1,11dev)!!!

Original comment by jus...@gmail.com on 12 Mar 2014 at 1:11