From ebbd544d756259018349ed96c07ae0e6e9a913d9 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Thu, 18 Mar 2021 16:05:09 +0000 Subject: [PATCH] Add text to indicate if proj_transform is internal or external (libproj) --- benchmark/src/test_proj_transform1.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/benchmark/src/test_proj_transform1.cpp b/benchmark/src/test_proj_transform1.cpp index a87f22ea3..be85685d8 100644 --- a/benchmark/src/test_proj_transform1.cpp +++ b/benchmark/src/test_proj_transform1.cpp @@ -66,9 +66,9 @@ int main(int argc, char** argv) std::string from_str2("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"); std::string to_str2("+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over"); return benchmark::sequencer(argc, argv) - .run("lonlat->merc epsg", from_str, to_str, from, to, true) - .run("lonlat->merc literal", from_str2, to_str2, from, to, true) - .run("merc->lonlat epsg", to_str, from_str, to, from, true) - .run("merc->lonlat literal", to_str2, from_str2, to, from, true) + .run("lonlat->merc epsg (internal)", from_str, to_str, from, to, true) + .run("lonlat->merc literal (libproj)", from_str2, to_str2, from, to, true) + .run("merc->lonlat epsg (internal)", to_str, from_str, to, from, true) + .run("merc->lonlat literal (libproj)", to_str2, from_str2, to, from, true) .done(); }