Skip to content

Commit 3bb78eb

Browse files
authored
Merge pull request #8982 from gadfort/heatmap-units
gui: add units to heatmap dump
2 parents e9b3257 + dcf5d69 commit 3bb78eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/src/heatMap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void HeatMapDataSource::dumpToFile(const std::string& file)
9797

9898
const double dbu_to_micron = block_->getDbUnitsPerMicron();
9999

100-
csv << "x0,y0,x1,y1,value" << std::endl;
100+
csv << "x0,y0,x1,y1,value (" << getValueUnits() << ")" << '\n';
101101
for (const auto& map_col : map_) {
102102
for (const auto& map_value : map_col) {
103103
if (!map_value->has_value) {

0 commit comments

Comments
 (0)