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"; }