From: W. Trevor King Date: Tue, 9 Nov 2010 18:22:53 +0000 (-0500) Subject: Document raster direction in plot_image.py. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3e75d6815da95a8245635a9601ee3e05984669b2;p=parallel_computing.git Document raster direction in plot_image.py. --- diff --git a/src/plot_image/plot_image.py b/src/plot_image/plot_image.py index 0262cfd..4854eea 100755 --- a/src/plot_image/plot_image.py +++ b/src/plot_image/plot_image.py @@ -10,7 +10,20 @@ Step 2: pipe data into python script:: ./gen_data | ./plot_image.py -s nx,ny -c nc -t 'image title' -Data should be one ASCII float per line, +Data should be one ASCII float per line, in the following order:: + + z[x1,y1] + z[x2,y1] + ... + z[nN,y1] + z[x1,y2] + ... + z[xN,y2] + ... + z[xN,yN] + +where `x` increases from `x1` to `xN` and `y` increases from `y1` +through `yN`. For usage info, run::