From 875778b25a0f7f33150f7e2e650cb1fe6a7285af Mon Sep 17 00:00:00 2001 From: James Cherry Date: Mon, 6 Jul 2020 16:49:25 -0700 Subject: [PATCH] json xy digits --- search/ReportPath.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/search/ReportPath.cc b/search/ReportPath.cc index 09c2443c..293554ac 100644 --- a/search/ReportPath.cc +++ b/search/ReportPath.cc @@ -2551,10 +2551,10 @@ ReportPath::reportPathJson(const Path *path, network_->location(pin, x, y, exists); if (exists) { result += " \"x\": "; - stringPrint(tmp, "%.3f", x); + stringPrint(tmp, "%.6f", x); result += tmp + ",\n"; result += " \"y\": "; - stringPrint(tmp, "%.3f", y); + stringPrint(tmp, "%.6f", y); result += tmp + "\n"; }