diff options
author | Daniel Ehlers <danielehlers@mindeye.net> | 2018-01-15 00:40:51 +0100 |
---|---|---|
committer | Daniel Ehlers <danielehlers@mindeye.net> | 2018-01-15 00:40:51 +0100 |
commit | b002c81016971841560e5dcec15427fb5dd2da38 (patch) | |
tree | d0c8d1d28923b5402cf7d2aa882504dff908785b | |
parent | 5fbb67690b054007d9fef7b021c9ba229cc04ce3 (diff) |
Draw positions (not measured, just testing)
-rw-r--r-- | standorte/mercator/mast-single-heatmap.gp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/standorte/mercator/mast-single-heatmap.gp b/standorte/mercator/mast-single-heatmap.gp index 53a7e58..52ba7dc 100644 --- a/standorte/mercator/mast-single-heatmap.gp +++ b/standorte/mercator/mast-single-heatmap.gp @@ -20,11 +20,17 @@ load "mast.gp" mast_max(x,y) = max(max(mast(d_front(x,y),150,10),mast(d_fbs(x,y),200,10)),mast(d_feld(x,y),200,10)) +# Format +set term png +set output 'mast-single-heatmap.png' + # Plot set view map set xrange [0 : gx] set yrange [0 : gy] set obj rect fs empty from 4,4 to gx-4,gy-4 front +set obj circle fs empty center 16,7 size 0.5 front +set obj circle fs empty center 14,11 size 0.5 front splot mast_max(x,y) with pm3d |