Scroll to navigation

mapcache_detail(1) mapcache_detail(1)

NAME

mapcache_detail - coverage analysis tool for SQLite caches

SYNOPSIS


mapcache_detail
[options]

DESCRIPTION

mapcache_detail is a coverage analysis tool for SQLite caches.

OPTIONS

-c, --config file
Configuration file (/path/to/mapcache.xml)
-D, --dimension DIMENSION_NAME=VALUE
Set the value of a dimension: format DIMENSIONNAME=VALUE. Can be used multiple times for multiple dimensions
-t, --tileset name
Tileset to analyze
-g, --grid name
Grid to analyze
-e, --extent minx,miny,maxx,maxy
Extent to analyze: format minx,miny,maxx,maxy. Cannot be used with --ogr-datasource
-d, --ogr-datasource data source
OGR data source to get features from. Cannot be used with --extent.
-l, --ogr-layer layer
OGR layer inside OGR data source. Cannot be used with --ogr-sql.
-w, --ogr-where filter
Filter to apply on OGR layer features. Cannot be used with --ogr-sql.
-s, --ogr-sql SQL query
SQL query to filter inside OGR data source. Cannot be used with --ogr-layer or --ogr-where.
-z, --zoom minzoom,maxzoom
Set min and max zoom levels to analyze, separated by a comma, eg: 12,15
-q, --query value
Set query for counting tiles in a rectangle. Default value works with default schema of SQLite caches.
-o, --short-output
Only existing SQLite files are reported, missing SQLite files are still taken into account for level and global coverage.

EXAMPLE

Analyze tile coverage of tileset osm with the g grid. Default extent is the whole world and default zoom level is 0:


        mapcache_detail --config mapcache.xml --tileset osm --grid g
      

Same as beforehand, with explicit zoom levels 9 to 12 and explicit extent covering Switzerland:


        mapcache_detail --config mapcache.xml --tileset osm --grid g --zoom 9,12 --extent 663000,5751230,1167680,6075050
      
01 March 2020