From 539979811ddf225fd5193c13b044b7559228844f Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Tue, 3 Nov 2015 14:10:02 -0800 Subject: [PATCH] Spell out what tippecanoe-enumerate does --- README.md | 6 +++++- man/tippecanoe.1 | 10 +++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 359a4a0..1978d78 100644 --- a/README.md +++ b/README.md @@ -295,7 +295,11 @@ tippecanoe-enumerate The `tippecanoe-enumerate` utility lists the tiles that an `mbtiles` file defines. Each line of the output lists the name of the `mbtiles` file and the zoom, x, and y -coordinates of one of the tiles. +coordinates of one of the tiles. It does basically the same thing as + + select zoom_level, tile_column, (1 << zoom_level) - 1 - tile_row from tiles; + +on the file in sqlite3. tippecanoe-decode ================= diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index f843212..3fbd4bb 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -341,7 +341,15 @@ Then you can join those populations to the geometries and discard the no\-longer .PP The \fB\fCtippecanoe\-enumerate\fR utility lists the tiles that an \fB\fCmbtiles\fR file defines. Each line of the output lists the name of the \fB\fCmbtiles\fR file and the zoom, x, and y -coordinates of one of the tiles. +coordinates of one of the tiles. It does basically the same thing as +.PP +.RS +.nf +select zoom_level, tile_column, (1 << zoom_level) \- 1 \- tile_row from tiles; +.fi +.RE +.PP +on the file in sqlite3. .SH tippecanoe\-decode .PP The \fB\fCtippecanoe\-decode\fR utility turns vector mbtiles back to GeoJSON. You can use it either