From 1ddece0683592e6779e7ee8438f9f4e5cf09cbed Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Sun, 24 Mar 2024 10:40:47 +0100 Subject: [PATCH] Update roundtrip expample in help text for cct Closes #4101 --- src/apps/cct.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/apps/cct.cpp b/src/apps/cct.cpp index 0d9c6a6d7b..f7d46cd655 100644 --- a/src/apps/cct.cpp +++ b/src/apps/cct.cpp @@ -162,7 +162,8 @@ static const char usage[] = { "1. convert geographical input to UTM zone 32 on the GRS80 ellipsoid:\n" " cct +proj=utm +ellps=GRS80 +zone=32\n" "2. roundtrip accuracy check for the case above:\n" - " cct +proj=pipeline +proj=utm +ellps=GRS80 +zone=32 +step +step +inv\n" + " cct +proj=pipeline +ellps=GRS80 +zone=32 +step +proj=utm \\\n" + " +step +proj=utm +inv\n" "3. as (1) but specify input columns for longitude, latitude, height and " "time:\n" " cct -c 5,2,1,4 +proj=utm +ellps=GRS80 +zone=32\n"