Skip to content
This repository has been archived by the owner on Jan 4, 2025. It is now read-only.

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlhui committed Jan 26, 2020
1 parent 8fa52e6 commit 1632a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collarDisplay/display_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def generateGraph(run_num, num_col, filename, output_path, col_def, alpha = -0.7
tiffXSize = int(max(finalEasting)) - int(min(finalEasting)) + margin * 2
tiffYSize = int(max(finalNorthing)) - int(min(finalNorthing)) + margin * 2
pixelSize = 1
heatMapArea = np.zeros((tiffYSize, tiffXSize)) # [y, x]
heatMapArea = np.ones((tiffYSize, tiffXSize)) # [y, x]
minY = min(finalNorthing) - margin
refY = max(finalNorthing) + margin
refX = min(finalEasting) - margin
Expand Down

0 comments on commit 1632a4d

Please sign in to comment.