- 积分
- 931
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-12-2
- 最后登录
- 1970-1-1
|
发表于 2017-8-30 14:22:47
|
显示全部楼层
本帖最后由 yqcxm 于 2017-8-30 14:45 编辑
14a和15b白化图:
数据文件格式是:
119.92 28.45 1.6 丽水
119.64 27.99 11.4 景宁
120.08 28.67 0.9 缙云
120.97 28.07 4.3 乐清
120.28 28.15 13 青田
120.68 28.15 18.2 永嘉
120.65 28.03 25.4 温州
121.27 28.08 2.2 玉环
119.7 27.55 11.1 泰顺
120.08 27.78 17.5 文成
120.57 27.67 18.3 平阳
120.65 27.78 4 瑞安
120.77 27.8 0.9 海安
120.38 27.5 63 苍南
120.48 27.17 12.8 霞关
.
.
.
clc;
[x,y,rain,station]=textread('e:\typhoon\temp\1703_prec.dat','%f %f %f %s');
[xx,yy,rr]=griddata(x,y,r,[min(x):0.1: max(x)]',[min(y):0.1: max(y)],'v4'); lon=[min(x) max(x)];
lon=[min(x) max(x)];
lat=[min(y) max(y)];
contour(xx,yy,rr);
maskMap('e:\shp\we_dist.shp',true,'lon',lon,'lat',lat)
如果lon=[min(x) max(x)+1];lat=[min(y) max(y)+1];
contour(xx,yy,rr);
maskMap('e:\shp\we_dist.shp',true,'lon',lon,'lat',lat)
白化效果如图
:
上头空白太多
|
|