aboutsummaryrefslogtreecommitdiff
path: root/docs/plot/greyscale.sh
diff options
context:
space:
mode:
authorHoward Butler <howard@hobu.co>2016-09-08 14:13:35 -0500
committerGitHub <noreply@github.com>2016-09-08 14:13:35 -0500
commit34aef4f6fa0743d683ce370574d7436163fa9f98 (patch)
treefa9eae04aa34b58eb8929d6bebca079d198cae3f /docs/plot/greyscale.sh
parent3880c10dab0ec61d5826309edd87a249a689cd82 (diff)
parentaf3a645ea55ebb3ec558f75531ee366bc3654087 (diff)
downloadPROJ-34aef4f6fa0743d683ce370574d7436163fa9f98.tar.gz
PROJ-34aef4f6fa0743d683ce370574d7436163fa9f98.zip
Merge pull request #413 from OSGeo/doc-image-plotting
Implement Kristian's plot generation script
Diffstat (limited to 'docs/plot/greyscale.sh')
-rwxr-xr-xdocs/plot/greyscale.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/plot/greyscale.sh b/docs/plot/greyscale.sh
new file mode 100755
index 00000000..7a6e9b38
--- /dev/null
+++ b/docs/plot/greyscale.sh
@@ -0,0 +1,7 @@
+
+
+for f in $(ls *.png)
+do
+
+ convert $f -fx '(r+g+b)/3' -colorspace Gray $f
+done;