城市需求显示在地图上(附MATLAB程序)

我们显示很多城市信息时, 有时候需要把各地人口数量, 各地城市对某种货物的需求量呈现到地图上, 可以用以下代码实现:

程序结果:

% 画中国地图

clc;close all;clear all;

%%曲面拟合

warning off;%禁止显示警告信息

% load lonlatdata.mat;

lonlatdata=xlsread('工作簿1.xls','D2:F301');%载入xls的数据

x=lonlatdata(:,1);%载入经度

y=lonlatdata(:,2);%载入纬度

z=lonlatdata(:,3);%载入需求

%设置拟合参数

xmin=min(lonlatdata(:,1));

xmax=max(lonlatdata(:,1));

ymin=min(lonlatdata(:,2));

ymax=max(lonlatdata(:,2));

xstep=(xmax-xmin)/100;

ystep=(ymax-ymin)/100;

gx=xmin:xstep:xmax;

gy=ymin:ystep:ymax;

g=gridfit(x,y,z,gx,gy);

%%----------------数据拟合开始--------------------

position01=-100000;%用于调整Z轴比例,绝对值越小,曲面越曲

%%----------------数据拟合结束--------------------

figure;

colormap(hot(256));

mesh(gx,gy,g);

camlight right;

lighting phong;

shading interp

hold on;

map_path = shaperead('bou2_4l.shp');% 省级行政区划

map_X = [map_path(:).X];

map_Y = [map_path(:).Y];

ax=length(map_X);

ay=length(map_Y);

map_Z=ones(ax,1)*(position01);

plot3(map_X,map_Y,map_Z);

hold on;

map_path = shaperead('diquJie_polyline.shp');% 地级行政区划

map_X = [map_path(:).X];

map_Y = [map_path(:).Y];

ax=length(map_X);

ay=length(map_Y);

map_Z=ones(ax,1)*(position01);

plot3(map_X,map_Y,map_Z);

hold on;

%%画城市点

x=lonlatdata(:,1);

y=lonlatdata(:,2);

acity=length(x);

z0=ones(acity,1)*(position01);

plot3(x,y,z0,'r.');

hold on;

%画城市线

for i=1:acity

plot3([x(i),x(i)],[y(i),y(i)],[z0(i),z(i)],'r:');

hold on;

end

xlabel('经度');

ylabel('纬度');

zlabel('需求(元)');

title('需求拟合');

完整代码见: https://download.csdn.net/download/corn1949/88774936

需要讨论可加Q1579325979

相关推荐
nlog3n2 分钟前
Java外观模式详解
java·开发语言·外观模式
方瑾瑜11 分钟前
Visual Basic语言的物联网
开发语言·后端·golang
无名之逆1 小时前
[特殊字符] Hyperlane 框架:高性能、灵活、易用的 Rust 微服务解决方案
运维·服务器·开发语言·数据库·后端·微服务·rust
Vitalia1 小时前
⭐算法OJ⭐寻找最短超串【动态规划 + 状态压缩】(C++ 实现)Find the Shortest Superstring
开发语言·c++·算法·动态规划·动态压缩
最后一个bug1 小时前
PCI与PCIe接口的通信架构是主从模式吗?
linux·开发语言·arm开发·stm32·嵌入式硬件
落落鱼20131 小时前
TP6图片操作 Image::open 调用->save()方法时候报错Type is not supported
开发语言
慕离桑2 小时前
SQL语言的物联网
开发语言·后端·golang
"_rainbow_"2 小时前
Qt添加资源文件
开发语言·qt
逸狼2 小时前
【JavaEE进阶】MyBatis(5)-MyBatis-plus
java·开发语言
欧宸雅2 小时前
Swift语言的游戏引擎
开发语言·后端·golang