From 1a3b865eee1d9a56f1627d346dd2a692420c1f59 Mon Sep 17 00:00:00 2001 From: Andrew Harvey Date: Thu, 28 Feb 2019 17:14:17 +1100 Subject: improve offline cli help page The GeoJSON file can't be a FeatureCollection, it must be a single Feature GeoJSON, with simple geometry --- bin/offline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/offline.cpp b/bin/offline.cpp index a82e2b5aa5..fc8b0f1bd4 100644 --- a/bin/offline.cpp +++ b/bin/offline.cpp @@ -96,7 +96,7 @@ int main(int argc, char *argv[]) { // Geometry args::Group geoJSONGroup(argumentParser, "GeoJson geometry:", args::Group::Validators::AllOrNone); - args::ValueFlag geometryValue(geoJSONGroup, "file", "GeoJSON file containing the region geometry", {"geojson"}); + args::ValueFlag geometryValue(geoJSONGroup, "file", "GeoJSON Feature file containing the region geometry (can't be a FeatureCollection)", {"geojson"}); args::ValueFlag minZoomValue(argumentParser, "number", "Min zoom level", {"minZoom"}); args::ValueFlag maxZoomValue(argumentParser, "number", "Max zoom level", {"maxZoom"}); -- cgit v1.2.1