This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # convert wingscape PlantCam files | |
| # and moves the files into the desired file structure | |
| # for easy processing with the PhenoCam GUI or toolkit | |
| # | |
| # NOTE: requires a running version of linux/Mac or cygwin | |
| # with exif installed. | |
| # | |
| # USE: plant2phenocam.sh MYSITE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # MODIS Batch Download Tool Command Line (MBDTcl) | |
| # | |
| # Bash script to download all modis hdf files for a particular year | |
| # to the current directory. | |
| # | |
| # Beware this script will only download level 5 products | |
| # if other products are selected the script will fail. | |
| # | |
| # Coded by Koen Hufkens at Boston University 2010 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # batch convert pdf to tiff files | |
| # takes one argument, resolution in dpi | |
| # use: pdf2tiff.sh 150 | |
| # will convert all pdfs in the current | |
| # directory to tiff files at 150dpi | |
| files=`ls *.pdf` | |
| for i in $files;do |
NewerOlder