发现GRD是一个“网格化数据集文件”,但无法使用cat
查看其内容。我认为它是二进制格式,因此必须以不同的方式阅读。问题是:只在Fortran,R,MATLAB中找到了示例...我必须将下面的shell脚本转换为PHP(这只是部分代码):
if test -s /path/${datemax}00tx.grd
then
# creating ctl file
echo DSET /path/${datamax}00tx.grd >> $DIR/new-$customer.ctl
echo UNDEF 777.7 >> $DIR/new-$customer.ctl
echo TITLE CTL to view interpolated files >> $DIR/new-$customer.ctl
echo XDEF 176 LINEAR -76 .25 >> $DIR/new-$customer.ctl
echo YDEF 160 LINEAR -34 .25 >> $DIR/new-$customer.ctl
echo ZDEF 1 LINEAR 1 1 >> $DIR/new-$customer.ctl
echo TDEF 1 LINEAR 00Z01apr$yearmax 24HR >> $DIR/new-$customer.ctl
echo VARS 1 >> $DIR/new-$customer.ctl
echo maxval 0 99 Maximum Value>> $DIR/new-$customer.ctl
echo ENDVARS >> $DIR/new-$customer.ctl
echo MAXVAL
cat << eof | grads -bpc "$DIR/getvalues.gs"
maxval
$customer
eof
fi
rm -f $DIR/new-$customer.ctl
甚至可以使用PHP,Java(我的首选)或Python等其他语言来实现这一点吗?这个丑陋的剧本让我想起了大会。