作业帮 > 综合 > 作业

求在matlab中画中国地图的数据和语句

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/05/17 23:40:32
求在matlab中画中国地图的数据和语句
请问哪位网友有在matlab中画中国地图的数据
要整理好的,不需要再整理的数据.
我找了很长时间了都没找到(找到一些需要自己整理的,超麻烦).
请有这种资料的网友分享一下,
% 绘制地球仪,并标出我们的位置
cla reset;
load topo;
[x y z] = sphere(45);
s = surface(x,y,z,'FaceColor','texturemap','CData',topo);
colormap(topomap1);
% Brighten the colormap for better annotation visibility:brighten(.6)
% Create and arrange the camera and lighting for better visibility:
campos([1.3239 -14.4250 9.4954]);
camlight;
lighting gouraud;
axis off vis3d;
% Set the x- and y-coordinates of the textarrow object:
x = [0.7698 0.5851];
y = [0.3593 0.5492];
% Create the textarrow object:
txtar = annotation('textarrow',x,y,'String','We are here.','FontSize',14);